r1009: Move the dependencies to newer package names
[cinelerra_cv/mob.git] / quicktime / ffmpeg / libavcodec / cyuv.c
blob82bc21005ca845c474c7b32909cc9001b7b56329
1 /*
3 * Copyright (C) 2003 the ffmpeg project
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * Creative YUV (CYUV) Video Decoder
20 * by Mike Melanson (melanson@pcisys.net)
21 * based on "Creative YUV (CYUV) stream format for AVI":
22 * http://www.csse.monash.edu.au/~timf/videocodec/cyuv.txt
26 /**
27 * @file cyuv.c
28 * Creative YUV (CYUV) Video Decoder.
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
36 #include "common.h"
37 #include "avcodec.h"
38 #include "dsputil.h"
39 #include "mpegvideo.h"
42 typedef struct CyuvDecodeContext {
43 AVCodecContext *avctx;
44 int width, height;
45 AVFrame frame;
46 } CyuvDecodeContext;
48 static int cyuv_decode_init(AVCodecContext *avctx)
50 CyuvDecodeContext *s = avctx->priv_data;
52 s->avctx = avctx;
53 s->width = avctx->width;
54 s->height = avctx->height;
55 avctx->pix_fmt = PIX_FMT_YUV411P;
56 avctx->has_b_frames = 0;
58 return 0;
61 static int cyuv_decode_frame(AVCodecContext *avctx,
62 void *data, int *data_size,
63 uint8_t *buf, int buf_size)
65 CyuvDecodeContext *s=avctx->priv_data;
67 unsigned char *y_plane;
68 unsigned char *u_plane;
69 unsigned char *v_plane;
70 int y_ptr;
71 int u_ptr;
72 int v_ptr;
74 /* prediction error tables (make it clear that they are signed values) */
75 signed char *y_table = buf + 0;
76 signed char *u_table = buf + 16;
77 signed char *v_table = buf + 32;
79 unsigned char y_pred, u_pred, v_pred;
80 int stream_ptr;
81 unsigned char cur_byte;
82 int pixel_groups;
84 /* sanity check the buffer size: A buffer has 3x16-bytes tables
85 * followed by (height) lines each with 3 bytes to represent groups
86 * of 4 pixels. Thus, the total size of the buffer ought to be:
87 * (3 * 16) + height * (width * 3 / 4) */
88 if (buf_size != 48 + s->height * (s->width * 3 / 4)) {
89 av_log(avctx, AV_LOG_ERROR, "ffmpeg: cyuv: got a buffer with %d bytes when %d were expected\n",
90 buf_size,
91 48 + s->height * (s->width * 3 / 4));
92 return -1;
95 /* pixel data starts 48 bytes in, after 3x16-byte tables */
96 stream_ptr = 48;
98 if(s->frame.data[0])
99 avctx->release_buffer(avctx, &s->frame);
101 s->frame.buffer_hints = FF_BUFFER_HINTS_VALID;
102 s->frame.reference = 0;
103 if(avctx->get_buffer(avctx, &s->frame) < 0) {
104 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
105 return -1;
108 y_plane = s->frame.data[0];
109 u_plane = s->frame.data[1];
110 v_plane = s->frame.data[2];
112 /* iterate through each line in the height */
113 for (y_ptr = 0, u_ptr = 0, v_ptr = 0;
114 y_ptr < (s->height * s->frame.linesize[0]);
115 y_ptr += s->frame.linesize[0] - s->width,
116 u_ptr += s->frame.linesize[1] - s->width / 4,
117 v_ptr += s->frame.linesize[2] - s->width / 4) {
119 /* reset predictors */
120 cur_byte = buf[stream_ptr++];
121 u_plane[u_ptr++] = u_pred = cur_byte & 0xF0;
122 y_plane[y_ptr++] = y_pred = (cur_byte & 0x0F) << 4;
124 cur_byte = buf[stream_ptr++];
125 v_plane[v_ptr++] = v_pred = cur_byte & 0xF0;
126 y_pred += y_table[cur_byte & 0x0F];
127 y_plane[y_ptr++] = y_pred;
129 cur_byte = buf[stream_ptr++];
130 y_pred += y_table[cur_byte & 0x0F];
131 y_plane[y_ptr++] = y_pred;
132 y_pred += y_table[(cur_byte & 0xF0) >> 4];
133 y_plane[y_ptr++] = y_pred;
135 /* iterate through the remaining pixel groups (4 pixels/group) */
136 pixel_groups = s->width / 4 - 1;
137 while (pixel_groups--) {
139 cur_byte = buf[stream_ptr++];
140 u_pred += u_table[(cur_byte & 0xF0) >> 4];
141 u_plane[u_ptr++] = u_pred;
142 y_pred += y_table[cur_byte & 0x0F];
143 y_plane[y_ptr++] = y_pred;
145 cur_byte = buf[stream_ptr++];
146 v_pred += v_table[(cur_byte & 0xF0) >> 4];
147 v_plane[v_ptr++] = v_pred;
148 y_pred += y_table[cur_byte & 0x0F];
149 y_plane[y_ptr++] = y_pred;
151 cur_byte = buf[stream_ptr++];
152 y_pred += y_table[cur_byte & 0x0F];
153 y_plane[y_ptr++] = y_pred;
154 y_pred += y_table[(cur_byte & 0xF0) >> 4];
155 y_plane[y_ptr++] = y_pred;
160 *data_size=sizeof(AVFrame);
161 *(AVFrame*)data= s->frame;
163 return buf_size;
166 static int cyuv_decode_end(AVCodecContext *avctx)
168 /* CyuvDecodeContext *s = avctx->priv_data;*/
170 return 0;
173 AVCodec cyuv_decoder = {
174 "cyuv",
175 CODEC_TYPE_VIDEO,
176 CODEC_ID_CYUV,
177 sizeof(CyuvDecodeContext),
178 cyuv_decode_init,
179 NULL,
180 cyuv_decode_end,
181 cyuv_decode_frame,
182 CODEC_CAP_DR1,
183 NULL