]> git.sesse.net Git - ffmpeg/blob - libavcodec/cyuv.c
Merge commit 'ad01ba6ceaea7d71c4b9887795523438689b5a96'
[ffmpeg] / libavcodec / cyuv.c
1 /*
2  * Creative YUV (CYUV) Video Decoder
3  *   by Mike Melanson (melanson@pcisys.net)
4  * based on "Creative YUV (CYUV) stream format for AVI":
5  *   http://www.csse.monash.edu.au/~timf/videocodec/cyuv.txt
6  *
7  * Copyright (C) 2003 the ffmpeg project
8  *
9  * This file is part of FFmpeg.
10  *
11  * FFmpeg is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * FFmpeg is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with FFmpeg; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24  */
25
26 /**
27  * @file
28  * Creative YUV (CYUV) Video Decoder.
29  */
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 #include "avcodec.h"
36 #include "dsputil.h"
37 #include "libavutil/internal.h"
38
39
40 typedef struct CyuvDecodeContext {
41     AVCodecContext *avctx;
42     int width, height;
43     AVFrame frame;
44 } CyuvDecodeContext;
45
46 static av_cold int cyuv_decode_init(AVCodecContext *avctx)
47 {
48     CyuvDecodeContext *s = avctx->priv_data;
49
50     s->avctx = avctx;
51     s->width = avctx->width;
52     /* width needs to be divisible by 4 for this codec to work */
53     if (s->width & 0x3)
54         return -1;
55     s->height = avctx->height;
56     avcodec_get_frame_defaults(&s->frame);
57
58     return 0;
59 }
60
61 static int cyuv_decode_frame(AVCodecContext *avctx,
62                              void *data, int *data_size,
63                              AVPacket *avpkt)
64 {
65     const uint8_t *buf = avpkt->data;
66     int buf_size = avpkt->size;
67     CyuvDecodeContext *s=avctx->priv_data;
68
69     unsigned char *y_plane;
70     unsigned char *u_plane;
71     unsigned char *v_plane;
72     int y_ptr;
73     int u_ptr;
74     int v_ptr;
75
76     /* prediction error tables (make it clear that they are signed values) */
77     const signed char *y_table = (const signed char*)buf +  0;
78     const signed char *u_table = (const signed char*)buf + 16;
79     const signed char *v_table = (const signed char*)buf + 32;
80
81     unsigned char y_pred, u_pred, v_pred;
82     int stream_ptr;
83     unsigned char cur_byte;
84     int pixel_groups;
85     int rawsize = s->height * FFALIGN(s->width,2) * 2;
86
87     if (avctx->codec_id == AV_CODEC_ID_AURA) {
88         y_table = u_table;
89         u_table = v_table;
90     }
91     /* sanity check the buffer size: A buffer has 3x16-bytes tables
92      * followed by (height) lines each with 3 bytes to represent groups
93      * of 4 pixels. Thus, the total size of the buffer ought to be:
94      *    (3 * 16) + height * (width * 3 / 4) */
95     if (buf_size == 48 + s->height * (s->width * 3 / 4)) {
96         avctx->pix_fmt = AV_PIX_FMT_YUV411P;
97     } else if(buf_size == rawsize ) {
98         avctx->pix_fmt = AV_PIX_FMT_UYVY422;
99     } else {
100         av_log(avctx, AV_LOG_ERROR, "got a buffer with %d bytes when %d were expected\n",
101                buf_size, 48 + s->height * (s->width * 3 / 4));
102         return -1;
103     }
104
105     /* pixel data starts 48 bytes in, after 3x16-byte tables */
106     stream_ptr = 48;
107
108     if (s->frame.data[0])
109         avctx->release_buffer(avctx, &s->frame);
110
111     s->frame.buffer_hints = FF_BUFFER_HINTS_VALID;
112     s->frame.reference = 0;
113     if (avctx->get_buffer(avctx, &s->frame) < 0) {
114         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
115         return -1;
116     }
117
118     y_plane = s->frame.data[0];
119     u_plane = s->frame.data[1];
120     v_plane = s->frame.data[2];
121
122     if (buf_size == rawsize) {
123         int linesize = FFALIGN(s->width,2) * 2;
124         y_plane += s->frame.linesize[0] * s->height;
125         for (stream_ptr = 0; stream_ptr < rawsize; stream_ptr += linesize) {
126             y_plane -= s->frame.linesize[0];
127             memcpy(y_plane, buf+stream_ptr, linesize);
128         }
129     } else {
130
131     /* iterate through each line in the height */
132     for (y_ptr = 0, u_ptr = 0, v_ptr = 0;
133          y_ptr < (s->height * s->frame.linesize[0]);
134          y_ptr += s->frame.linesize[0] - s->width,
135          u_ptr += s->frame.linesize[1] - s->width / 4,
136          v_ptr += s->frame.linesize[2] - s->width / 4) {
137
138         /* reset predictors */
139         cur_byte = buf[stream_ptr++];
140         u_plane[u_ptr++] = u_pred = cur_byte & 0xF0;
141         y_plane[y_ptr++] = y_pred = (cur_byte & 0x0F) << 4;
142
143         cur_byte = buf[stream_ptr++];
144         v_plane[v_ptr++] = v_pred = cur_byte & 0xF0;
145         y_pred += y_table[cur_byte & 0x0F];
146         y_plane[y_ptr++] = y_pred;
147
148         cur_byte = buf[stream_ptr++];
149         y_pred += y_table[cur_byte & 0x0F];
150         y_plane[y_ptr++] = y_pred;
151         y_pred += y_table[(cur_byte & 0xF0) >> 4];
152         y_plane[y_ptr++] = y_pred;
153
154         /* iterate through the remaining pixel groups (4 pixels/group) */
155         pixel_groups = s->width / 4 - 1;
156         while (pixel_groups--) {
157
158             cur_byte = buf[stream_ptr++];
159             u_pred += u_table[(cur_byte & 0xF0) >> 4];
160             u_plane[u_ptr++] = u_pred;
161             y_pred += y_table[cur_byte & 0x0F];
162             y_plane[y_ptr++] = y_pred;
163
164             cur_byte = buf[stream_ptr++];
165             v_pred += v_table[(cur_byte & 0xF0) >> 4];
166             v_plane[v_ptr++] = v_pred;
167             y_pred += y_table[cur_byte & 0x0F];
168             y_plane[y_ptr++] = y_pred;
169
170             cur_byte = buf[stream_ptr++];
171             y_pred += y_table[cur_byte & 0x0F];
172             y_plane[y_ptr++] = y_pred;
173             y_pred += y_table[(cur_byte & 0xF0) >> 4];
174             y_plane[y_ptr++] = y_pred;
175
176         }
177     }
178     }
179
180     *data_size=sizeof(AVFrame);
181     *(AVFrame*)data= s->frame;
182
183     return buf_size;
184 }
185
186 static av_cold int cyuv_decode_end(AVCodecContext *avctx)
187 {
188     CyuvDecodeContext *s = avctx->priv_data;
189
190     if (s->frame.data[0])
191         avctx->release_buffer(avctx, &s->frame);
192
193     return 0;
194 }
195
196 #if CONFIG_AURA_DECODER
197 AVCodec ff_aura_decoder = {
198     .name           = "aura",
199     .type           = AVMEDIA_TYPE_VIDEO,
200     .id             = AV_CODEC_ID_AURA,
201     .priv_data_size = sizeof(CyuvDecodeContext),
202     .init           = cyuv_decode_init,
203     .close          = cyuv_decode_end,
204     .decode         = cyuv_decode_frame,
205     .capabilities   = CODEC_CAP_DR1,
206     .long_name      = NULL_IF_CONFIG_SMALL("Auravision AURA"),
207 };
208 #endif
209
210 #if CONFIG_CYUV_DECODER
211 AVCodec ff_cyuv_decoder = {
212     .name           = "cyuv",
213     .type           = AVMEDIA_TYPE_VIDEO,
214     .id             = AV_CODEC_ID_CYUV,
215     .priv_data_size = sizeof(CyuvDecodeContext),
216     .init           = cyuv_decode_init,
217     .close          = cyuv_decode_end,
218     .decode         = cyuv_decode_frame,
219     .capabilities   = CODEC_CAP_DR1,
220     .long_name      = NULL_IF_CONFIG_SMALL("Creative YUV (CYUV)"),
221 };
222 #endif