FFmpeg
Loading...
Searching...
No Matches
avuienc.c
Go to the documentation of this file.
1/*
2 * AVID Meridien encoder
3 *
4 * Copyright (c) 2012 Carl Eugen Hoyos
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include "avcodec.h"
24#include "codec_internal.h"
25#include "encode.h"
27#include "libavutil/mem.h"
28
30{
31 if (avctx->width != 720 || avctx->height != 486 && avctx->height != 576) {
32 av_log(avctx, AV_LOG_ERROR, "Only 720x486 and 720x576 are supported.\n");
33 return AVERROR(EINVAL);
34 }
36 return AVERROR(ENOMEM);
37 avctx->extradata_size = 144;
38 memcpy(avctx->extradata, "\0\0\0\x18""APRGAPRG0001", 16);
39 if (avctx->field_order > AV_FIELD_PROGRESSIVE) {
40 avctx->extradata[19] = 2;
41 } else {
42 avctx->extradata[19] = 1;
43 }
44 memcpy(avctx->extradata + 24, "\0\0\0\x78""ARESARES0001""\0\0\0\x98", 20);
45 AV_WB32(avctx->extradata + 44, avctx->width);
46 AV_WB32(avctx->extradata + 48, avctx->height);
47 memcpy(avctx->extradata + 52, "\0\0\0\x1\0\0\0\x20\0\0\0\x2", 12);
48
49
50 return 0;
51}
52
54 const AVFrame *pic, int *got_packet)
55{
56 uint8_t *dst;
57 int i, j, skip, ret, size, interlaced;
58
60
61 if (avctx->height == 486) {
62 skip = 10;
63 } else {
64 skip = 16;
65 }
66 size = 2 * avctx->width * (avctx->height + skip) + 8 * interlaced;
67 if ((ret = ff_get_encode_buffer(avctx, pkt, size, 0)) < 0)
68 return ret;
69 dst = pkt->data;
70 if (!interlaced) {
71 memset(dst, 0, avctx->width * skip);
72 dst += avctx->width * skip;
73 }
74
75 for (i = 0; i <= interlaced; i++) {
76 const uint8_t *src;
77 if (interlaced && avctx->height == 486) {
78 src = pic->data[0] + (1 - i) * pic->linesize[0];
79 } else {
80 src = pic->data[0] + i * pic->linesize[0];
81 }
82 memset(dst, 0, avctx->width * skip + 4 * i);
83 dst += avctx->width * skip + 4 * i;
84 for (j = 0; j < avctx->height; j += interlaced + 1) {
85 memcpy(dst, src, avctx->width * 2);
86 src += (interlaced + 1) * pic->linesize[0];
87 dst += avctx->width * 2;
88 }
89 }
90
91 *got_packet = 1;
92 return 0;
93}
94
96 .p.name = "avui",
97 CODEC_LONG_NAME("Avid Meridien Uncompressed"),
98 .p.type = AVMEDIA_TYPE_VIDEO,
99 .p.id = AV_CODEC_ID_AVUI,
100 .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_EXPERIMENTAL |
103 .color_ranges = AVCOL_RANGE_MPEG,
104 .init = avui_encode_init,
106};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
const FFCodec ff_avui_encoder
Definition avuienc.c:95
Libavcodec external API header.
static int avui_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet)
Definition avuienc.c:53
static av_cold int avui_encode_init(AVCodecContext *avctx)
Definition avuienc.c:29
static void BS_FUNC skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define CODEC_PIXFMTS(...)
#define FF_CODEC_ENCODE_CB(func)
#define CODEC_LONG_NAME(str)
@ AV_FIELD_PROGRESSIVE
Definition defs.h:213
static AVPacket * pkt
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
Definition encode.c:106
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition codec.h:147
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_CODEC_CAP_EXPERIMENTAL
Codec is experimental and is thus avoided in favor of non experimental encoders.
Definition codec.h:90
@ AV_CODEC_ID_AVUI
Definition codec_id.h:252
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
Definition defs.h:40
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define AV_WB32(p, v)
#define av_cold
Definition attributes.h:117
Memory handling functions.
uint8_t interlaced
Definition mxfenc.c:2336
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
Definition pixfmt.h:766
@ AV_PIX_FMT_UYVY422
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
Definition pixfmt.h:88
main external API structure.
Definition avcodec.h:443
int width
picture width / height.
Definition avcodec.h:604
enum AVFieldOrder field_order
Field order.
Definition avcodec.h:694
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition avcodec.h:526
int extradata_size
Definition avcodec.h:527
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
This structure stores compressed data.
Definition packet.h:580
#define av_mallocz(s)
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
int size