]> git.sesse.net Git - ffmpeg/blob - libavcodec/v210dec.c
Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat
[ffmpeg] / libavcodec / v210dec.c
1 /*
2  * V210 decoder
3  *
4  * Copyright (C) 2009 Michael Niedermayer <michaelni@gmx.at>
5  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
6  *
7  * This file is part of Libav.
8  *
9  * Libav is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * Libav is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with Libav; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #include "avcodec.h"
25 #include "libavutil/bswap.h"
26 #include "libavutil/internal.h"
27 #include "libavutil/mem.h"
28
29 static av_cold int decode_init(AVCodecContext *avctx)
30 {
31     if (avctx->width & 1) {
32         av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n");
33         return -1;
34     }
35     avctx->pix_fmt             = AV_PIX_FMT_YUV422P10;
36     avctx->bits_per_raw_sample = 10;
37
38     avctx->coded_frame         = avcodec_alloc_frame();
39     if (!avctx->coded_frame)
40         return AVERROR(ENOMEM);
41
42     return 0;
43 }
44
45 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
46                         AVPacket *avpkt)
47 {
48     int h, w;
49     AVFrame *pic = avctx->coded_frame;
50     const uint8_t *psrc = avpkt->data;
51     uint16_t *y, *u, *v;
52     int aligned_width = ((avctx->width + 47) / 48) * 48;
53     int stride = aligned_width * 8 / 3;
54
55     if (pic->data[0])
56         avctx->release_buffer(avctx, pic);
57
58     if (avpkt->size < stride * avctx->height) {
59         av_log(avctx, AV_LOG_ERROR, "packet too small\n");
60         return -1;
61     }
62
63     pic->reference = 0;
64     if (avctx->get_buffer(avctx, pic) < 0)
65         return -1;
66
67     y = (uint16_t*)pic->data[0];
68     u = (uint16_t*)pic->data[1];
69     v = (uint16_t*)pic->data[2];
70     pic->pict_type = AV_PICTURE_TYPE_I;
71     pic->key_frame = 1;
72
73 #define READ_PIXELS(a, b, c)         \
74     do {                             \
75         val  = av_le2ne32(*src++);   \
76         *a++ =  val & 0x3FF;         \
77         *b++ = (val >> 10) & 0x3FF;  \
78         *c++ = (val >> 20) & 0x3FF;  \
79     } while (0)
80
81     for (h = 0; h < avctx->height; h++) {
82         const uint32_t *src = (const uint32_t*)psrc;
83         uint32_t val;
84         for (w = 0; w < avctx->width - 5; w += 6) {
85             READ_PIXELS(u, y, v);
86             READ_PIXELS(y, u, y);
87             READ_PIXELS(v, y, u);
88             READ_PIXELS(y, v, y);
89         }
90         if (w < avctx->width - 1) {
91             READ_PIXELS(u, y, v);
92
93             val  = av_le2ne32(*src++);
94             *y++ =  val & 0x3FF;
95         }
96         if (w < avctx->width - 3) {
97             *u++ = (val >> 10) & 0x3FF;
98             *y++ = (val >> 20) & 0x3FF;
99
100             val  = av_le2ne32(*src++);
101             *v++ =  val & 0x3FF;
102             *y++ = (val >> 10) & 0x3FF;
103         }
104
105         psrc += stride;
106         y += pic->linesize[0] / 2 - avctx->width;
107         u += pic->linesize[1] / 2 - avctx->width / 2;
108         v += pic->linesize[2] / 2 - avctx->width / 2;
109     }
110
111     *data_size = sizeof(AVFrame);
112     *(AVFrame*)data = *avctx->coded_frame;
113
114     return avpkt->size;
115 }
116
117 static av_cold int decode_close(AVCodecContext *avctx)
118 {
119     AVFrame *pic = avctx->coded_frame;
120     if (pic->data[0])
121         avctx->release_buffer(avctx, pic);
122     av_freep(&avctx->coded_frame);
123
124     return 0;
125 }
126
127 AVCodec ff_v210_decoder = {
128     .name           = "v210",
129     .type           = AVMEDIA_TYPE_VIDEO,
130     .id             = AV_CODEC_ID_V210,
131     .init           = decode_init,
132     .close          = decode_close,
133     .decode         = decode_frame,
134     .capabilities   = CODEC_CAP_DR1,
135     .long_name      = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
136 };