Mercurial > libavcodec.hg
annotate cljr.c @ 5310:9aa9197034d7 libavcodec
AC-3 decoder, soc revision 40, Aug 9 00:10:14 2006 UTC by cloud9
More code cleanup.
Window is now runtime generated.
Fixed the bugs in rematrixing routine and
in Decoding AC3 Bitstreams when coupling is in use.
Still struggling to find out what affects the quality of
the produced sound. Can anybody have a look at the
imdct routines do_imdct_256 and do_imdct_512 and tell me
whether it is the correctly implemented as described in
standard.
author | jbr |
---|---|
date | Sat, 14 Jul 2007 15:57:51 +0000 |
parents | 2b72f9bc4f06 |
children | 042a48b6de72 |
rev | line source |
---|---|
1385 | 1 /* |
2 * Cirrus Logic AccuPak (CLJR) codec | |
3 * Copyright (c) 2003 Alex Beregszaszi | |
4 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
1385 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
1385 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
1385 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
1385 | 20 */ |
2967 | 21 |
1385 | 22 /** |
23 * @file cljr.c | |
24 * Cirrus Logic AccuPak codec. | |
25 */ | |
2967 | 26 |
1385 | 27 #include "avcodec.h" |
28 #include "mpegvideo.h" | |
29 | |
30 typedef struct CLJRContext{ | |
31 AVCodecContext *avctx; | |
32 AVFrame picture; | |
33 int delta[16]; | |
34 int offset[4]; | |
35 GetBitContext gb; | |
36 } CLJRContext; | |
37 | |
2967 | 38 static int decode_frame(AVCodecContext *avctx, |
1385 | 39 void *data, int *data_size, |
40 uint8_t *buf, int buf_size) | |
41 { | |
42 CLJRContext * const a = avctx->priv_data; | |
43 AVFrame *picture = data; | |
44 AVFrame * const p= (AVFrame*)&a->picture; | |
1415 | 45 int x, y; |
1385 | 46 |
47 if(p->data[0]) | |
48 avctx->release_buffer(avctx, p); | |
49 | |
50 p->reference= 0; | |
51 if(avctx->get_buffer(avctx, p) < 0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1415
diff
changeset
|
52 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
1385 | 53 return -1; |
54 } | |
55 p->pict_type= I_TYPE; | |
56 p->key_frame= 1; | |
57 | |
58 init_get_bits(&a->gb, buf, buf_size); | |
59 | |
60 for(y=0; y<avctx->height; y++){ | |
61 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; | |
1386 | 62 uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ]; |
63 uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ]; | |
1385 | 64 for(x=0; x<avctx->width; x+=4){ |
2979 | 65 luma[3] = get_bits(&a->gb, 5) << 3; |
66 luma[2] = get_bits(&a->gb, 5) << 3; | |
67 luma[1] = get_bits(&a->gb, 5) << 3; | |
68 luma[0] = get_bits(&a->gb, 5) << 3; | |
69 luma+= 4; | |
70 *(cb++) = get_bits(&a->gb, 6) << 2; | |
71 *(cr++) = get_bits(&a->gb, 6) << 2; | |
1385 | 72 } |
73 } | |
74 | |
75 *picture= *(AVFrame*)&a->picture; | |
76 *data_size = sizeof(AVPicture); | |
77 | |
78 emms_c(); | |
2967 | 79 |
1385 | 80 return buf_size; |
81 } | |
82 | |
83 #if 0 | |
84 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ | |
85 CLJRContext * const a = avctx->priv_data; | |
86 AVFrame *pict = data; | |
87 AVFrame * const p= (AVFrame*)&a->picture; | |
88 int size; | |
89 int mb_x, mb_y; | |
90 | |
91 *p = *pict; | |
92 p->pict_type= I_TYPE; | |
93 p->key_frame= 1; | |
94 | |
95 emms_c(); | |
2967 | 96 |
1385 | 97 align_put_bits(&a->pb); |
98 while(get_bit_count(&a->pb)&31) | |
99 put_bits(&a->pb, 8, 0); | |
2967 | 100 |
1385 | 101 size= get_bit_count(&a->pb)/32; |
2967 | 102 |
1385 | 103 return size*4; |
104 } | |
105 #endif | |
106 | |
107 static void common_init(AVCodecContext *avctx){ | |
108 CLJRContext * const a = avctx->priv_data; | |
109 | |
110 avctx->coded_frame= (AVFrame*)&a->picture; | |
111 a->avctx= avctx; | |
112 } | |
113 | |
114 static int decode_init(AVCodecContext *avctx){ | |
1415 | 115 |
1385 | 116 common_init(avctx); |
2967 | 117 |
1386 | 118 avctx->pix_fmt= PIX_FMT_YUV411P; |
1385 | 119 |
120 return 0; | |
121 } | |
122 | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
123 #if 0 |
1385 | 124 static int encode_init(AVCodecContext *avctx){ |
1415 | 125 |
1385 | 126 common_init(avctx); |
2967 | 127 |
1385 | 128 return 0; |
129 } | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
130 #endif |
1385 | 131 |
132 AVCodec cljr_decoder = { | |
133 "cljr", | |
134 CODEC_TYPE_VIDEO, | |
135 CODEC_ID_CLJR, | |
136 sizeof(CLJRContext), | |
137 decode_init, | |
138 NULL, | |
1994 | 139 NULL, |
1385 | 140 decode_frame, |
141 CODEC_CAP_DR1, | |
142 }; | |
143 #if 0 | |
144 #ifdef CONFIG_ENCODERS | |
145 | |
146 AVCodec cljr_encoder = { | |
147 "cljr", | |
148 CODEC_TYPE_VIDEO, | |
149 CODEC_ID_cljr, | |
150 sizeof(CLJRContext), | |
151 encode_init, | |
152 encode_frame, | |
153 //encode_end, | |
154 }; | |
155 | |
156 #endif //CONFIG_ENCODERS | |
157 #endif |