]> git.sesse.net Git - ffmpeg/blob - libavcodec/v408enc.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / v408enc.c
1 /*
2  * v408 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 "libavutil/intreadwrite.h"
24 #include "avcodec.h"
25
26 static av_cold int v408_encode_init(AVCodecContext *avctx)
27 {
28     avctx->coded_frame = avcodec_alloc_frame();
29
30     if (!avctx->coded_frame) {
31         av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
32         return AVERROR(ENOMEM);
33     }
34
35     return 0;
36 }
37
38 static int v408_encode_frame(AVCodecContext *avctx, uint8_t *buf,
39                              int buf_size, void *data)
40 {
41     AVFrame *pic = data;
42     uint8_t *dst = buf;
43     uint8_t *y, *u, *v, *a;
44     int i, j;
45     int output_size = 0;
46
47     if (buf_size < avctx->width * avctx->height * 4) {
48         av_log(avctx, AV_LOG_ERROR, "Out buffer is too small.\n");
49         return AVERROR(ENOMEM);
50     }
51
52     avctx->coded_frame->reference = 0;
53     avctx->coded_frame->key_frame = 1;
54     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
55
56     y = pic->data[0];
57     u = pic->data[1];
58     v = pic->data[2];
59     a = pic->data[3];
60
61     for (i = 0; i < avctx->height; i++) {
62         for (j = 0; j < avctx->width; j++) {
63            if (avctx->codec_id==CODEC_ID_AYUV) {
64                 *dst++ = v[j];
65                 *dst++ = u[j];
66                 *dst++ = y[j];
67                 *dst++ = a[j];
68             } else {
69                 *dst++ = u[j];
70                 *dst++ = y[j];
71                 *dst++ = v[j];
72                 *dst++ = a[j];
73             }
74             output_size += 4;
75         }
76         y += pic->linesize[0];
77         u += pic->linesize[1];
78         v += pic->linesize[2];
79         a += pic->linesize[3];
80     }
81
82     return output_size;
83 }
84
85 static av_cold int v408_encode_close(AVCodecContext *avctx)
86 {
87     av_freep(&avctx->coded_frame);
88
89     return 0;
90 }
91
92 #if CONFIG_AYUV_ENCODER
93 AVCodec ff_ayuv_encoder = {
94     .name         = "ayuv",
95     .type         = AVMEDIA_TYPE_VIDEO,
96     .id           = CODEC_ID_AYUV,
97     .init         = v408_encode_init,
98     .encode       = v408_encode_frame,
99     .close        = v408_encode_close,
100     .pix_fmts     = (const enum PixelFormat[]){ PIX_FMT_YUVA444P, PIX_FMT_NONE },
101     .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed packed MS 4:4:4:4"),
102 };
103 #endif
104 #if CONFIG_V408_ENCODER
105 AVCodec ff_v408_encoder = {
106     .name         = "v408",
107     .type         = AVMEDIA_TYPE_VIDEO,
108     .id           = CODEC_ID_V408,
109     .init         = v408_encode_init,
110     .encode       = v408_encode_frame,
111     .close        = v408_encode_close,
112     .pix_fmts     = (const enum PixelFormat[]){ PIX_FMT_YUVA444P, PIX_FMT_NONE },
113     .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed packed QT 4:4:4:4"),
114 };
115 #endif