]> git.sesse.net Git - ffmpeg/blob - libavcodec/r210dec.c
aacenc: Fix bug in writing libavcodec_ident.
[ffmpeg] / libavcodec / r210dec.c
1 /*
2  * R210 decoder
3  *
4  * Copyright (c) 2009 Reimar Doeffinger <Reimar.Doeffinger@gmx.de>
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 #include "libavutil/bswap.h"
25
26 static av_cold int decode_init(AVCodecContext *avctx)
27 {
28     avctx->pix_fmt             = PIX_FMT_RGB48;
29     avctx->bits_per_raw_sample = 10;
30
31     avctx->coded_frame         = avcodec_alloc_frame();
32
33     return 0;
34 }
35
36 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
37                         AVPacket *avpkt)
38 {
39     int h, w;
40     AVFrame *pic = avctx->coded_frame;
41     const uint32_t *src = (const uint32_t *)avpkt->data;
42     int aligned_width = FFALIGN(avctx->width, 64);
43     uint8_t *dst_line;
44
45     if (pic->data[0])
46         avctx->release_buffer(avctx, pic);
47
48     if (avpkt->size < 4 * aligned_width * avctx->height) {
49         av_log(avctx, AV_LOG_ERROR, "packet too small\n");
50         return -1;
51     }
52
53     pic->reference = 0;
54     if (avctx->get_buffer(avctx, pic) < 0)
55         return -1;
56
57     pic->pict_type = AV_PICTURE_TYPE_I;
58     pic->key_frame = 1;
59     dst_line = pic->data[0];
60
61     for (h = 0; h < avctx->height; h++) {
62         uint16_t *dst = (uint16_t *)dst_line;
63         for (w = 0; w < avctx->width; w++) {
64             uint32_t pixel;
65             uint16_t r, g, b;
66             if (avctx->codec_id==CODEC_ID_AVRP) {
67                 pixel = av_le2ne32(*src++);
68             } else {
69                 pixel = av_be2ne32(*src++);
70             }
71             if (avctx->codec_id==CODEC_ID_R210) {
72                 b =  pixel <<  6;
73                 g = (pixel >>  4) & 0xffc0;
74                 r = (pixel >> 14) & 0xffc0;
75             } else {
76                 b =  pixel <<  4;
77                 g = (pixel >>  6) & 0xffc0;
78                 r = (pixel >> 16) & 0xffc0;
79             }
80             *dst++ = r | (r >> 10);
81             *dst++ = g | (g >> 10);
82             *dst++ = b | (b >> 10);
83         }
84         src += aligned_width - avctx->width;
85         dst_line += pic->linesize[0];
86     }
87
88     *data_size = sizeof(AVFrame);
89     *(AVFrame*)data = *avctx->coded_frame;
90
91     return avpkt->size;
92 }
93
94 static av_cold int decode_close(AVCodecContext *avctx)
95 {
96     AVFrame *pic = avctx->coded_frame;
97     if (pic->data[0])
98         avctx->release_buffer(avctx, pic);
99     av_freep(&avctx->coded_frame);
100
101     return 0;
102 }
103
104 #if CONFIG_R210_DECODER
105 AVCodec ff_r210_decoder = {
106     .name           = "r210",
107     .type           = AVMEDIA_TYPE_VIDEO,
108     .id             = CODEC_ID_R210,
109     .init           = decode_init,
110     .close          = decode_close,
111     .decode         = decode_frame,
112     .capabilities   = CODEC_CAP_DR1,
113     .long_name = NULL_IF_CONFIG_SMALL("Uncompressed RGB 10-bit"),
114 };
115 #endif
116 #if CONFIG_R10K_DECODER
117 AVCodec ff_r10k_decoder = {
118     .name           = "r10k",
119     .type           = AVMEDIA_TYPE_VIDEO,
120     .id             = CODEC_ID_R10K,
121     .init           = decode_init,
122     .close          = decode_close,
123     .decode         = decode_frame,
124     .capabilities   = CODEC_CAP_DR1,
125     .long_name = NULL_IF_CONFIG_SMALL("AJA Kona 10-bit RGB Codec"),
126 };
127 #endif
128 #if CONFIG_AVRP_DECODER
129 AVCodec ff_avrp_decoder = {
130     .name           = "avrp",
131     .type           = AVMEDIA_TYPE_VIDEO,
132     .id             = CODEC_ID_AVRP,
133     .init           = decode_init,
134     .close          = decode_close,
135     .decode         = decode_frame,
136     .capabilities   = CODEC_CAP_DR1,
137     .long_name = NULL_IF_CONFIG_SMALL("Avid 1:1 10-bit RGB Packer"),
138 };
139 #endif