Mercurial > libavcodec.hg
annotate vcr1.c @ 7426:c4766376a3cf libavcodec
Remove st1 and st2 temporary buffers in backward_filter() and use instead
RA288Context.pr{1,2}. Note that the pr{1,2} buffers are one unity smaller
than the st{1,2} buffers. My guess is that the original coder decided to
add one to the array sizes "just to be sure".
author | vitor |
---|---|
date | Sun, 27 Jul 2008 20:55:27 +0000 |
parents | e943e1409077 |
children | 6efb15a24e91 |
rev | line source |
---|---|
1374 | 1 /* |
2 * ATI VCR1 codec | |
3 * Copyright (c) 2003 Michael Niedermayer | |
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 |
1374 | 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. |
1374 | 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, |
1374 | 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:
2967
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
1374 | 20 */ |
2967 | 21 |
1374 | 22 /** |
23 * @file vcr1.c | |
24 * ati vcr1 codec. | |
25 */ | |
2967 | 26 |
1374 | 27 #include "avcodec.h" |
6450 | 28 #include "dsputil.h" |
1374 | 29 |
30 //#undef NDEBUG | |
31 //#include <assert.h> | |
32 | |
33 typedef struct VCR1Context{ | |
34 AVCodecContext *avctx; | |
35 AVFrame picture; | |
36 int delta[16]; | |
37 int offset[4]; | |
38 } VCR1Context; | |
39 | |
2967 | 40 static int decode_frame(AVCodecContext *avctx, |
1374 | 41 void *data, int *data_size, |
6289 | 42 const uint8_t *buf, int buf_size) |
1374 | 43 { |
44 VCR1Context * const a = avctx->priv_data; | |
45 AVFrame *picture = data; | |
46 AVFrame * const p= (AVFrame*)&a->picture; | |
6289 | 47 const uint8_t *bytestream= buf; |
1374 | 48 int i, x, y; |
49 | |
50 if(p->data[0]) | |
51 avctx->release_buffer(avctx, p); | |
52 | |
53 p->reference= 0; | |
54 if(avctx->get_buffer(avctx, p) < 0){ | |
1598
932d306bf1dc
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
1419
diff
changeset
|
55 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
1374 | 56 return -1; |
57 } | |
6450 | 58 p->pict_type= FF_I_TYPE; |
1374 | 59 p->key_frame= 1; |
60 | |
61 for(i=0; i<16; i++){ | |
62 a->delta[i]= *(bytestream++); | |
63 bytestream++; | |
64 } | |
2967 | 65 |
1374 | 66 for(y=0; y<avctx->height; y++){ |
67 int offset; | |
68 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; | |
69 | |
70 if((y&3) == 0){ | |
71 uint8_t *cb= &a->picture.data[1][ (y>>2)*a->picture.linesize[1] ]; | |
72 uint8_t *cr= &a->picture.data[2][ (y>>2)*a->picture.linesize[2] ]; | |
73 | |
74 for(i=0; i<4; i++) | |
75 a->offset[i]= *(bytestream++); | |
76 | |
1375 | 77 offset= a->offset[0] - a->delta[ bytestream[2]&0xF ]; |
1374 | 78 for(x=0; x<avctx->width; x+=4){ |
79 luma[0]=( offset += a->delta[ bytestream[2]&0xF ]); | |
80 luma[1]=( offset += a->delta[ bytestream[2]>>4 ]); | |
81 luma[2]=( offset += a->delta[ bytestream[0]&0xF ]); | |
82 luma[3]=( offset += a->delta[ bytestream[0]>>4 ]); | |
83 luma += 4; | |
2967 | 84 |
1375 | 85 *(cb++) = bytestream[3]; |
86 *(cr++) = bytestream[1]; | |
2967 | 87 |
1374 | 88 bytestream+= 4; |
89 } | |
90 }else{ | |
1375 | 91 offset= a->offset[y&3] - a->delta[ bytestream[2]&0xF ]; |
1374 | 92 |
93 for(x=0; x<avctx->width; x+=8){ | |
94 luma[0]=( offset += a->delta[ bytestream[2]&0xF ]); | |
95 luma[1]=( offset += a->delta[ bytestream[2]>>4 ]); | |
96 luma[2]=( offset += a->delta[ bytestream[3]&0xF ]); | |
97 luma[3]=( offset += a->delta[ bytestream[3]>>4 ]); | |
98 luma[4]=( offset += a->delta[ bytestream[0]&0xF ]); | |
99 luma[5]=( offset += a->delta[ bytestream[0]>>4 ]); | |
100 luma[6]=( offset += a->delta[ bytestream[1]&0xF ]); | |
101 luma[7]=( offset += a->delta[ bytestream[1]>>4 ]); | |
102 luma += 8; | |
103 bytestream+= 4; | |
104 } | |
105 } | |
106 } | |
107 | |
108 *picture= *(AVFrame*)&a->picture; | |
109 *data_size = sizeof(AVPicture); | |
110 | |
111 emms_c(); | |
2967 | 112 |
1374 | 113 return buf_size; |
114 } | |
115 | |
116 #if 0 | |
117 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ | |
118 VCR1Context * const a = avctx->priv_data; | |
119 AVFrame *pict = data; | |
120 AVFrame * const p= (AVFrame*)&a->picture; | |
121 int size; | |
122 int mb_x, mb_y; | |
123 | |
124 *p = *pict; | |
6450 | 125 p->pict_type= FF_I_TYPE; |
1374 | 126 p->key_frame= 1; |
127 | |
128 emms_c(); | |
2967 | 129 |
1374 | 130 align_put_bits(&a->pb); |
131 while(get_bit_count(&a->pb)&31) | |
132 put_bits(&a->pb, 8, 0); | |
2967 | 133 |
1374 | 134 size= get_bit_count(&a->pb)/32; |
2967 | 135 |
1374 | 136 return size*4; |
137 } | |
138 #endif | |
139 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
140 static av_cold void common_init(AVCodecContext *avctx){ |
1374 | 141 VCR1Context * const a = avctx->priv_data; |
142 | |
143 avctx->coded_frame= (AVFrame*)&a->picture; | |
144 a->avctx= avctx; | |
145 } | |
146 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
147 static av_cold int decode_init(AVCodecContext *avctx){ |
2967 | 148 |
1374 | 149 common_init(avctx); |
2967 | 150 |
1374 | 151 avctx->pix_fmt= PIX_FMT_YUV410P; |
152 | |
153 return 0; | |
154 } | |
155 | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
156 #if 0 |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
157 static av_cold int encode_init(AVCodecContext *avctx){ |
2967 | 158 |
1374 | 159 common_init(avctx); |
2967 | 160 |
1374 | 161 return 0; |
162 } | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
163 #endif |
1374 | 164 |
165 AVCodec vcr1_decoder = { | |
166 "vcr1", | |
167 CODEC_TYPE_VIDEO, | |
168 CODEC_ID_VCR1, | |
169 sizeof(VCR1Context), | |
170 decode_init, | |
171 NULL, | |
1994 | 172 NULL, |
1374 | 173 decode_frame, |
174 CODEC_CAP_DR1, | |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
175 .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"), |
1374 | 176 }; |
177 #if 0 | |
178 #ifdef CONFIG_ENCODERS | |
179 | |
180 AVCodec vcr1_encoder = { | |
181 "vcr1", | |
182 CODEC_TYPE_VIDEO, | |
183 CODEC_ID_VCR1, | |
184 sizeof(VCR1Context), | |
185 encode_init, | |
186 encode_frame, | |
187 //encode_end, | |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
188 .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"), |
1374 | 189 }; |
190 | |
191 #endif //CONFIG_ENCODERS | |
192 #endif |