diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-04 10:26:56 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-04 10:26:56 +0000 |
commit | 4c79b95c32ec9d44af48a5a52c7390b84c52928c (patch) | |
tree | 8e49f50e35eb1b8f934ab9ab462067d493846c35 /libavcodec/mpegvideo.c | |
parent | 675b8390f61e17ea076811324719f6b135c295ab (diff) | |
download | ffmpeg-4c79b95c32ec9d44af48a5a52c7390b84c52928c.tar.gz |
move ff_init_scantable() into dsputil
Originally committed as revision 12311 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 18b4a57dc2..1c2c385f04 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -70,29 +70,6 @@ static const uint8_t ff_default_chroma_qscale_table[32]={ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 }; -void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable){ - int i; - int end; - - st->scantable= src_scantable; - - for(i=0; i<64; i++){ - int j; - j = src_scantable[i]; - st->permutated[i] = permutation[j]; -#ifdef ARCH_POWERPC - st->inverse[j] = i; -#endif - } - - end=-1; - for(i=0; i<64; i++){ - int j; - j = st->permutated[i]; - if(j>end) end=j; - st->raster_end[i]= end; - } -} const uint8_t *ff_find_start_code(const uint8_t * restrict p, const uint8_t *end, uint32_t * restrict state){ int i; |