Mercurial > libavcodec.hg
annotate vcr1.c @ 8624:b1663f732e67 libavcodec
Fix 10L in r16670 (broke deblocking code)
| author | darkshikari |
|---|---|
| date | Sun, 18 Jan 2009 07:20:12 +0000 |
| parents | 7a463923ecd1 |
| children | e9d9d946f213 |
| 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 | |
|
7784
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
33 /* Disable the encoder. */ |
|
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
34 #undef CONFIG_VCR1_ENCODER |
| 8590 | 35 #define CONFIG_VCR1_ENCODER 0 |
|
7784
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
36 |
| 1374 | 37 typedef struct VCR1Context{ |
| 38 AVCodecContext *avctx; | |
| 39 AVFrame picture; | |
| 40 int delta[16]; | |
| 41 int offset[4]; | |
| 42 } VCR1Context; | |
| 43 | |
| 2967 | 44 static int decode_frame(AVCodecContext *avctx, |
| 1374 | 45 void *data, int *data_size, |
| 6289 | 46 const uint8_t *buf, int buf_size) |
| 1374 | 47 { |
| 48 VCR1Context * const a = avctx->priv_data; | |
| 49 AVFrame *picture = data; | |
| 50 AVFrame * const p= (AVFrame*)&a->picture; | |
| 6289 | 51 const uint8_t *bytestream= buf; |
| 1374 | 52 int i, x, y; |
| 53 | |
| 54 if(p->data[0]) | |
| 55 avctx->release_buffer(avctx, p); | |
| 56 | |
| 57 p->reference= 0; | |
| 58 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
|
59 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |
| 1374 | 60 return -1; |
| 61 } | |
| 6450 | 62 p->pict_type= FF_I_TYPE; |
| 1374 | 63 p->key_frame= 1; |
| 64 | |
| 65 for(i=0; i<16; i++){ | |
| 66 a->delta[i]= *(bytestream++); | |
| 67 bytestream++; | |
| 68 } | |
| 2967 | 69 |
| 1374 | 70 for(y=0; y<avctx->height; y++){ |
| 71 int offset; | |
| 72 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; | |
| 73 | |
| 74 if((y&3) == 0){ | |
| 75 uint8_t *cb= &a->picture.data[1][ (y>>2)*a->picture.linesize[1] ]; | |
| 76 uint8_t *cr= &a->picture.data[2][ (y>>2)*a->picture.linesize[2] ]; | |
| 77 | |
| 78 for(i=0; i<4; i++) | |
| 79 a->offset[i]= *(bytestream++); | |
| 80 | |
| 1375 | 81 offset= a->offset[0] - a->delta[ bytestream[2]&0xF ]; |
| 1374 | 82 for(x=0; x<avctx->width; x+=4){ |
| 83 luma[0]=( offset += a->delta[ bytestream[2]&0xF ]); | |
| 84 luma[1]=( offset += a->delta[ bytestream[2]>>4 ]); | |
| 85 luma[2]=( offset += a->delta[ bytestream[0]&0xF ]); | |
| 86 luma[3]=( offset += a->delta[ bytestream[0]>>4 ]); | |
| 87 luma += 4; | |
| 2967 | 88 |
| 1375 | 89 *(cb++) = bytestream[3]; |
| 90 *(cr++) = bytestream[1]; | |
| 2967 | 91 |
| 1374 | 92 bytestream+= 4; |
| 93 } | |
| 94 }else{ | |
| 1375 | 95 offset= a->offset[y&3] - a->delta[ bytestream[2]&0xF ]; |
| 1374 | 96 |
| 97 for(x=0; x<avctx->width; x+=8){ | |
| 98 luma[0]=( offset += a->delta[ bytestream[2]&0xF ]); | |
| 99 luma[1]=( offset += a->delta[ bytestream[2]>>4 ]); | |
| 100 luma[2]=( offset += a->delta[ bytestream[3]&0xF ]); | |
| 101 luma[3]=( offset += a->delta[ bytestream[3]>>4 ]); | |
| 102 luma[4]=( offset += a->delta[ bytestream[0]&0xF ]); | |
| 103 luma[5]=( offset += a->delta[ bytestream[0]>>4 ]); | |
| 104 luma[6]=( offset += a->delta[ bytestream[1]&0xF ]); | |
| 105 luma[7]=( offset += a->delta[ bytestream[1]>>4 ]); | |
| 106 luma += 8; | |
| 107 bytestream+= 4; | |
| 108 } | |
| 109 } | |
| 110 } | |
| 111 | |
| 112 *picture= *(AVFrame*)&a->picture; | |
| 113 *data_size = sizeof(AVPicture); | |
| 114 | |
| 115 emms_c(); | |
| 2967 | 116 |
| 1374 | 117 return buf_size; |
| 118 } | |
| 119 | |
| 8590 | 120 #if CONFIG_VCR1_ENCODER |
| 1374 | 121 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){ |
| 122 VCR1Context * const a = avctx->priv_data; | |
| 123 AVFrame *pict = data; | |
| 124 AVFrame * const p= (AVFrame*)&a->picture; | |
| 125 int size; | |
| 126 int mb_x, mb_y; | |
| 127 | |
| 128 *p = *pict; | |
| 6450 | 129 p->pict_type= FF_I_TYPE; |
| 1374 | 130 p->key_frame= 1; |
| 131 | |
| 132 emms_c(); | |
| 2967 | 133 |
| 1374 | 134 align_put_bits(&a->pb); |
| 135 while(get_bit_count(&a->pb)&31) | |
| 136 put_bits(&a->pb, 8, 0); | |
| 2967 | 137 |
| 1374 | 138 size= get_bit_count(&a->pb)/32; |
| 2967 | 139 |
| 1374 | 140 return size*4; |
| 141 } | |
| 142 #endif | |
| 143 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
144 static av_cold void common_init(AVCodecContext *avctx){ |
| 1374 | 145 VCR1Context * const a = avctx->priv_data; |
| 146 | |
| 147 avctx->coded_frame= (AVFrame*)&a->picture; | |
| 148 a->avctx= avctx; | |
| 149 } | |
| 150 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
151 static av_cold int decode_init(AVCodecContext *avctx){ |
| 2967 | 152 |
| 1374 | 153 common_init(avctx); |
| 2967 | 154 |
| 1374 | 155 avctx->pix_fmt= PIX_FMT_YUV410P; |
| 156 | |
| 157 return 0; | |
| 158 } | |
| 159 | |
| 8590 | 160 #if CONFIG_VCR1_ENCODER |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6450
diff
changeset
|
161 static av_cold int encode_init(AVCodecContext *avctx){ |
| 2967 | 162 |
| 1374 | 163 common_init(avctx); |
| 2967 | 164 |
| 1374 | 165 return 0; |
| 166 } | |
|
2522
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2453
diff
changeset
|
167 #endif |
| 1374 | 168 |
| 169 AVCodec vcr1_decoder = { | |
| 170 "vcr1", | |
| 171 CODEC_TYPE_VIDEO, | |
| 172 CODEC_ID_VCR1, | |
| 173 sizeof(VCR1Context), | |
| 174 decode_init, | |
| 175 NULL, | |
| 1994 | 176 NULL, |
| 1374 | 177 decode_frame, |
| 178 CODEC_CAP_DR1, | |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
179 .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"), |
| 1374 | 180 }; |
|
7784
e3f2d90a2295
Disable encoders by undefining CONFIG_FOO_ENCODER once instead of littering
diego
parents:
7783
diff
changeset
|
181 |
| 8590 | 182 #if CONFIG_VCR1_ENCODER |
| 1374 | 183 AVCodec vcr1_encoder = { |
| 184 "vcr1", | |
| 185 CODEC_TYPE_VIDEO, | |
| 186 CODEC_ID_VCR1, | |
| 187 sizeof(VCR1Context), | |
| 188 encode_init, | |
| 189 encode_frame, | |
| 190 //encode_end, | |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6710
diff
changeset
|
191 .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"), |
| 1374 | 192 }; |
| 193 #endif |
