]> git.sesse.net Git - ffmpeg/blob - libavcodec/v408enc.c
Merge commit 'aaf937ee3557bfb99c2ad298591b22a7f22ecbf7'
[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 #include "internal.h"
26
27 static av_cold int v408_encode_init(AVCodecContext *avctx)
28 {
29
30     return 0;
31 }
32
33 static int v408_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
34                              const AVFrame *pic, int *got_packet)
35 {
36     uint8_t *dst;
37     uint8_t *y, *u, *v, *a;
38     int i, j, ret;
39
40     if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width * avctx->height * 4, 0)) < 0)
41         return ret;
42     dst = pkt->data;
43
44     avctx->coded_frame->key_frame = 1;
45     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
46
47     y = pic->data[0];
48     u = pic->data[1];
49     v = pic->data[2];
50     a = pic->data[3];
51
52     for (i = 0; i < avctx->height; i++) {
53         for (j = 0; j < avctx->width; j++) {
54            if (avctx->codec_id==AV_CODEC_ID_AYUV) {
55                 *dst++ = v[j];
56                 *dst++ = u[j];
57                 *dst++ = y[j];
58                 *dst++ = a[j];
59             } else {
60                 *dst++ = u[j];
61                 *dst++ = y[j];
62                 *dst++ = v[j];
63                 *dst++ = a[j];
64             }
65         }
66         y += pic->linesize[0];
67         u += pic->linesize[1];
68         v += pic->linesize[2];
69         a += pic->linesize[3];
70     }
71
72     pkt->flags |= AV_PKT_FLAG_KEY;
73     *got_packet = 1;
74     return 0;
75 }
76
77 static av_cold int v408_encode_close(AVCodecContext *avctx)
78 {
79     return 0;
80 }
81
82 #if CONFIG_AYUV_ENCODER
83 AVCodec ff_ayuv_encoder = {
84     .name         = "ayuv",
85     .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed packed MS 4:4:4:4"),
86     .type         = AVMEDIA_TYPE_VIDEO,
87     .id           = AV_CODEC_ID_AYUV,
88     .init         = v408_encode_init,
89     .encode2      = v408_encode_frame,
90     .close        = v408_encode_close,
91     .pix_fmts     = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE },
92 };
93 #endif
94 #if CONFIG_V408_ENCODER
95 AVCodec ff_v408_encoder = {
96     .name         = "v408",
97     .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed packed QT 4:4:4:4"),
98     .type         = AVMEDIA_TYPE_VIDEO,
99     .id           = AV_CODEC_ID_V408,
100     .init         = v408_encode_init,
101     .encode2      = v408_encode_frame,
102     .close        = v408_encode_close,
103     .pix_fmts     = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE },
104 };
105 #endif