annotate cljr.c @ 1385:a16990d50fce libavcodec

CLJR decoding support
author al3x
date Sun, 27 Jul 2003 20:20:31 +0000
parents
children 5cabff29411e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1385
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
1 /*
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
2 * Cirrus Logic AccuPak (CLJR) codec
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
3 * Copyright (c) 2003 Alex Beregszaszi
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
4 *
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
5 * This library is free software; you can redistribute it and/or
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
6 * modify it under the terms of the GNU Lesser General Public
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
7 * License as published by the Free Software Foundation; either
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
8 * version 2 of the License, or (at your option) any later version.
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
9 *
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
10 * This library is distributed in the hope that it will be useful,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
13 * Lesser General Public License for more details.
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
14 *
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
15 * You should have received a copy of the GNU Lesser General Public
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
16 * License along with this library; if not, write to the Free Software
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
18 *
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
19 */
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
20
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
21 /**
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
22 * @file cljr.c
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
23 * Cirrus Logic AccuPak codec.
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
24 */
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
25
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
26 #include "avcodec.h"
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
27 #include "mpegvideo.h"
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
28
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
29 typedef struct CLJRContext{
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
30 AVCodecContext *avctx;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
31 AVFrame picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
32 int delta[16];
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
33 int offset[4];
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
34 GetBitContext gb;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
35 } CLJRContext;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
36
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
37 static int decode_frame(AVCodecContext *avctx,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
38 void *data, int *data_size,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
39 uint8_t *buf, int buf_size)
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
40 {
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
41 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
42 AVFrame *picture = data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
43 AVFrame * const p= (AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
44 uint8_t *bytestream= buf;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
45 int i, x, y;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
46
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
47 *data_size = 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
48
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
49 /* special case for last picture */
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
50 if (buf_size == 0) {
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
51 return 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
52 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
53
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
54 if(p->data[0])
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
55 avctx->release_buffer(avctx, p);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
56
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
57 p->reference= 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
58 if(avctx->get_buffer(avctx, p) < 0){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
59 fprintf(stderr, "get_buffer() failed\n");
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
60 return -1;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
61 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
62 p->pict_type= I_TYPE;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
63 p->key_frame= 1;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
64
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
65 init_get_bits(&a->gb, buf, buf_size);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
66
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
67 for(y=0; y<avctx->height; y++){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
68 int offset;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
69 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
70 uint8_t *cb= &a->picture.data[1][ (y>>2)*a->picture.linesize[1] ];
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
71 uint8_t *cr= &a->picture.data[2][ (y>>2)*a->picture.linesize[2] ];
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
72
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
73 for(x=0; x<avctx->width; x+=4){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
74 luma[3] = get_bits(&a->gb, 5) << 3;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
75 luma[2] = get_bits(&a->gb, 5) << 3;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
76 luma[1] = get_bits(&a->gb, 5) << 3;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
77 luma[0] = get_bits(&a->gb, 5) << 3;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
78 luma+= 4;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
79 *(cb++) = get_bits(&a->gb, 6) << 2;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
80 *(cr++) = get_bits(&a->gb, 6) << 2;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
81 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
82 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
83
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
84 *picture= *(AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
85 *data_size = sizeof(AVPicture);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
86
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
87 emms_c();
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
88
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
89 return buf_size;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
90 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
91
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
92 #if 0
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
93 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
94 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
95 AVFrame *pict = data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
96 AVFrame * const p= (AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
97 int size;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
98 int mb_x, mb_y;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
99
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
100 *p = *pict;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
101 p->pict_type= I_TYPE;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
102 p->key_frame= 1;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
103
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
104 emms_c();
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
105
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
106 align_put_bits(&a->pb);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
107 while(get_bit_count(&a->pb)&31)
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
108 put_bits(&a->pb, 8, 0);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
109
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
110 size= get_bit_count(&a->pb)/32;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
111
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
112 return size*4;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
113 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
114 #endif
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
115
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
116 static void common_init(AVCodecContext *avctx){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
117 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
118
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
119 avctx->coded_frame= (AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
120 a->avctx= avctx;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
121 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
122
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
123 static int decode_init(AVCodecContext *avctx){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
124 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
125 AVFrame *p= (AVFrame*)&a->picture;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
126 int i;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
127
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
128 common_init(avctx);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
129
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
130 avctx->pix_fmt= PIX_FMT_YUV410P;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
131
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
132 return 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
133 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
134
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
135 static int encode_init(AVCodecContext *avctx){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
136 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
137 int i;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
138
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
139 common_init(avctx);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
140
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
141 return 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
142 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
143
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
144 static int decode_end(AVCodecContext *avctx){
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
145 CLJRContext * const a = avctx->priv_data;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
146
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
147 avcodec_default_free_buffers(avctx);
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
148
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
149 return 0;
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
150 }
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
151
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
152 AVCodec cljr_decoder = {
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
153 "cljr",
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
154 CODEC_TYPE_VIDEO,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
155 CODEC_ID_CLJR,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
156 sizeof(CLJRContext),
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
157 decode_init,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
158 NULL,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
159 decode_end,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
160 decode_frame,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
161 CODEC_CAP_DR1,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
162 };
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
163 #if 0
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
164 #ifdef CONFIG_ENCODERS
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
165
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
166 AVCodec cljr_encoder = {
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
167 "cljr",
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
168 CODEC_TYPE_VIDEO,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
169 CODEC_ID_cljr,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
170 sizeof(CLJRContext),
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
171 encode_init,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
172 encode_frame,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
173 //encode_end,
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
174 };
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
175
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
176 #endif //CONFIG_ENCODERS
a16990d50fce CLJR decoding support
al3x
parents:
diff changeset
177 #endif