]> git.sesse.net Git - ffmpeg/blob - libavcodec/v308dec.c
Merge commit '0c00fd80ee4791bd70b634084307fc9f179e0412'
[ffmpeg] / libavcodec / v308dec.c
1 /*
2  * v308 decoder
3  * Copyright (c) 2011 Carl Eugen Hoyos
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "avcodec.h"
23
24 static av_cold int v308_decode_init(AVCodecContext *avctx)
25 {
26     avctx->pix_fmt = PIX_FMT_YUV444P;
27
28     if (avctx->width & 1)
29         av_log(avctx, AV_LOG_WARNING, "v308 requires width to be even.\n");
30
31     avctx->coded_frame = avcodec_alloc_frame();
32
33     if (!avctx->coded_frame) {
34         av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
35         return AVERROR(ENOMEM);
36     }
37
38     return 0;
39 }
40
41 static int v308_decode_frame(AVCodecContext *avctx, void *data,
42                              int *data_size, AVPacket *avpkt)
43 {
44     AVFrame *pic = avctx->coded_frame;
45     const uint8_t *src = avpkt->data;
46     uint8_t *y, *u, *v;
47     int i, j;
48
49     if (pic->data[0])
50         avctx->release_buffer(avctx, pic);
51
52     if (avpkt->size < 3 * avctx->height * avctx->width) {
53         av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
54         return AVERROR(EINVAL);
55     }
56
57     pic->reference = 0;
58
59     if (avctx->get_buffer(avctx, pic) < 0) {
60         av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
61         return AVERROR(ENOMEM);
62     }
63
64     pic->key_frame = 1;
65     pic->pict_type = AV_PICTURE_TYPE_I;
66
67     y = pic->data[0];
68     u = pic->data[1];
69     v = pic->data[2];
70
71     for (i = 0; i < avctx->height; i++) {
72         for (j = 0; j < avctx->width; j++) {
73             v[j] = *src++;
74             y[j] = *src++;
75             u[j] = *src++;
76         }
77
78         y += pic->linesize[0];
79         u += pic->linesize[1];
80         v += pic->linesize[2];
81     }
82
83     *data_size = sizeof(AVFrame);
84     *(AVFrame *)data = *pic;
85
86     return avpkt->size;
87 }
88
89 static av_cold int v308_decode_close(AVCodecContext *avctx)
90 {
91     if (avctx->coded_frame->data[0])
92         avctx->release_buffer(avctx, avctx->coded_frame);
93
94     av_freep(&avctx->coded_frame);
95
96     return 0;
97 }
98
99 AVCodec ff_v308_decoder = {
100     .name         = "v308",
101     .type         = AVMEDIA_TYPE_VIDEO,
102     .id           = AV_CODEC_ID_V308,
103     .init         = v308_decode_init,
104     .decode       = v308_decode_frame,
105     .close        = v308_decode_close,
106     .capabilities = CODEC_CAP_DR1,
107     .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed packed 4:4:4"),
108 };