]> git.sesse.net Git - ffmpeg/blob - libavcodec/yuv4enc.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / yuv4enc.c
1 /*
2  * libquicktime yuv4 encoder
3  *
4  * Copyright (c) 2011 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
25 static av_cold int yuv4_encode_init(AVCodecContext *avctx)
26 {
27     avctx->coded_frame = avcodec_alloc_frame();
28
29     if (!avctx->coded_frame) {
30         av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
31         return AVERROR(ENOMEM);
32     }
33
34     return 0;
35 }
36
37 static int yuv4_encode_frame(AVCodecContext *avctx, uint8_t *buf,
38                              int buf_size, void *data)
39 {
40     AVFrame *pic = data;
41     uint8_t *dst = buf;
42     uint8_t *y, *u, *v;
43     int i, j;
44     int output_size = 0;
45
46     if (buf_size < 6 * (avctx->width + 1 >> 1) * (avctx->height + 1 >> 1)) {
47         av_log(avctx, AV_LOG_ERROR, "Out buffer is too small.\n");
48         return AVERROR(ENOMEM);
49     }
50
51     avctx->coded_frame->reference = 0;
52     avctx->coded_frame->key_frame = 1;
53     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
54
55     y = pic->data[0];
56     u = pic->data[1];
57     v = pic->data[2];
58
59     for (i = 0; i < avctx->height + 1 >> 1; i++) {
60         for (j = 0; j < avctx->width + 1 >> 1; j++) {
61             *dst++ = u[j] ^ 0x80;
62             *dst++ = v[j] ^ 0x80;
63             *dst++ = y[                   2 * j    ];
64             *dst++ = y[                   2 * j + 1];
65             *dst++ = y[pic->linesize[0] + 2 * j    ];
66             *dst++ = y[pic->linesize[0] + 2 * j + 1];
67             output_size += 6;
68         }
69         y += 2 * pic->linesize[0];
70         u +=     pic->linesize[1];
71         v +=     pic->linesize[2];
72     }
73
74     return output_size;
75 }
76
77 static av_cold int yuv4_encode_close(AVCodecContext *avctx)
78 {
79     av_freep(&avctx->coded_frame);
80
81     return 0;
82 }
83
84 AVCodec ff_yuv4_encoder = {
85     .name         = "yuv4",
86     .type         = AVMEDIA_TYPE_VIDEO,
87     .id           = CODEC_ID_YUV4,
88     .init         = yuv4_encode_init,
89     .encode       = yuv4_encode_frame,
90     .close        = yuv4_encode_close,
91     .pix_fmts     = (const enum PixelFormat[]){ PIX_FMT_YUV420P, PIX_FMT_NONE },
92     .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed packed 4:2:0"),
93 };