]> git.sesse.net Git - ffmpeg/blob - libavcodec/y41pdec.c
cavsdec: switch to av_assert
[ffmpeg] / libavcodec / y41pdec.c
1 /*
2  * y41p decoder
3  *
4  * Copyright (c) 2012 Paul B Mahol
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 y41p_decode_init(AVCodecContext *avctx)
26 {
27     avctx->pix_fmt             = PIX_FMT_YUV411P;
28     avctx->bits_per_raw_sample = 12;
29
30     if (avctx->width & 7) {
31         av_log(avctx, AV_LOG_WARNING, "y41p requires width to be divisible by 8.\n");
32     }
33
34     avctx->coded_frame = avcodec_alloc_frame();
35     if (!avctx->coded_frame) {
36         av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
37         return AVERROR(ENOMEM);
38     }
39
40     return 0;
41 }
42
43 static int y41p_decode_frame(AVCodecContext *avctx, void *data,
44                              int *data_size, AVPacket *avpkt)
45 {
46     AVFrame *pic = avctx->coded_frame;
47     uint8_t *src = avpkt->data;
48     uint8_t *y, *u, *v;
49     int i, j;
50
51     if (pic->data[0])
52         avctx->release_buffer(avctx, pic);
53
54     if (avpkt->size < 1.5 * avctx->height * avctx->width) {
55         av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
56         return AVERROR(EINVAL);
57     }
58
59     pic->reference = 0;
60
61     if (avctx->get_buffer(avctx, pic) < 0) {
62         av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
63         return AVERROR(ENOMEM);
64     }
65
66     pic->key_frame = 1;
67     pic->pict_type = AV_PICTURE_TYPE_I;
68
69     for (i = avctx->height - 1; i >= 0 ; i--) {
70         y = &pic->data[0][i * pic->linesize[0]];
71         u = &pic->data[1][i * pic->linesize[1]];
72         v = &pic->data[2][i * pic->linesize[2]];
73         for (j = 0; j < avctx->width; j += 8) {
74             *(u++) = *src++;
75             *(y++) = *src++;
76             *(v++) = *src++;
77             *(y++) = *src++;
78
79             *(u++) = *src++;
80             *(y++) = *src++;
81             *(v++) = *src++;
82             *(y++) = *src++;
83
84             *(y++) = *src++;
85             *(y++) = *src++;
86             *(y++) = *src++;
87             *(y++) = *src++;
88         }
89     }
90
91     *data_size = sizeof(AVFrame);
92     *(AVFrame *)data = *pic;
93
94     return avpkt->size;
95 }
96
97 static av_cold int y41p_decode_close(AVCodecContext *avctx)
98 {
99     if (avctx->coded_frame->data[0])
100         avctx->release_buffer(avctx, avctx->coded_frame);
101
102     av_freep(&avctx->coded_frame);
103
104     return 0;
105 }
106
107 AVCodec ff_y41p_decoder = {
108     .name         = "y41p",
109     .type         = AVMEDIA_TYPE_VIDEO,
110     .id           = CODEC_ID_Y41P,
111     .init         = y41p_decode_init,
112     .decode       = y41p_decode_frame,
113     .close        = y41p_decode_close,
114     .capabilities = CODEC_CAP_DR1,
115     .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"),
116 };