]> git.sesse.net Git - ffmpeg/blob - libavcodec/avuienc.c
Merge commit 'd6006dd9f0d4d01023359230212f1f9fa4800e5b'
[ffmpeg] / libavcodec / avuienc.c
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 "internal.h"
25 #include "libavutil/intreadwrite.h"
26
27 static av_cold int avui_encode_init(AVCodecContext *avctx)
28 {
29     if (avctx->width != 720 || avctx->height != 486 && avctx->height != 576) {
30         av_log(avctx, AV_LOG_ERROR, "Only 720x486 and 720x576 are supported.\n");
31         return AVERROR(EINVAL);
32     }
33     if (!(avctx->extradata = av_mallocz(144 + FF_INPUT_BUFFER_PADDING_SIZE)))
34         return AVERROR(ENOMEM);
35     avctx->extradata_size = 144;
36     memcpy(avctx->extradata, "\0\0\0\x18""APRGAPRG0001", 16);
37     if (avctx->field_order > AV_FIELD_PROGRESSIVE) {
38         avctx->extradata[19] = 2;
39     } else {
40         avctx->extradata[19] = 1;
41     }
42     memcpy(avctx->extradata + 24, "\0\0\0\x78""ARESARES0001""\0\0\0\x98", 20);
43     AV_WB32(avctx->extradata + 44, avctx->width);
44     AV_WB32(avctx->extradata + 48, avctx->height);
45     memcpy(avctx->extradata + 52, "\0\0\0\x1\0\0\0\x20\0\0\0\x2", 12);
46
47     avctx->coded_frame = av_frame_alloc();
48     if (!avctx->coded_frame) {
49         av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
50         return AVERROR(ENOMEM);
51     }
52
53     return 0;
54 }
55
56 static int avui_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
57                              const AVFrame *pic, int *got_packet)
58 {
59     uint8_t *dst;
60     int i, j, skip, ret, size, interlaced;
61
62     interlaced = avctx->field_order > AV_FIELD_PROGRESSIVE;
63
64     if (avctx->height == 486) {
65         skip = 10;
66     } else {
67         skip = 16;
68     }
69     size = 2 * avctx->width * (avctx->height + skip) + 8 * interlaced;
70     if ((ret = ff_alloc_packet(pkt, size)) < 0)
71         return ret;
72     dst = pkt->data;
73     if (!interlaced) {
74         memset(dst, 0, avctx->width * skip);
75         dst += avctx->width * skip;
76     }
77
78     avctx->coded_frame->key_frame = 1;
79     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
80
81     for (i = 0; i <= interlaced; i++) {
82         uint8_t *src;
83         if (interlaced && avctx->height == 486) {
84             src = pic->data[0] + (1 - i) * pic->linesize[0];
85         } else {
86             src = pic->data[0] + i * pic->linesize[0];
87         }
88         memset(dst, 0, avctx->width * skip + 4 * i);
89         dst += avctx->width * skip + 4 * i;
90         for (j = 0; j < avctx->height; j += interlaced + 1) {
91             memcpy(dst, src, avctx->width * 2);
92             src += (interlaced + 1) * pic->linesize[0];
93             dst += avctx->width * 2;
94         }
95     }
96
97     pkt->flags |= AV_PKT_FLAG_KEY;
98     *got_packet = 1;
99     return 0;
100 }
101
102 static av_cold int avui_encode_close(AVCodecContext *avctx)
103 {
104     av_frame_free(&avctx->coded_frame);
105
106     return 0;
107 }
108
109 AVCodec ff_avui_encoder = {
110     .name         = "avui",
111     .long_name    = NULL_IF_CONFIG_SMALL("Avid Meridien Uncompressed"),
112     .type         = AVMEDIA_TYPE_VIDEO,
113     .id           = AV_CODEC_ID_AVUI,
114     .init         = avui_encode_init,
115     .encode2      = avui_encode_frame,
116     .close        = avui_encode_close,
117     .capabilities = CODEC_CAP_EXPERIMENTAL,
118     .pix_fmts     = (const enum AVPixelFormat[]){ AV_PIX_FMT_UYVY422, AV_PIX_FMT_NONE },
119 };