diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-08-11 18:19:37 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-08-11 18:19:37 +0000 |
commit | 069720565ce0f2cc94fa2474f30d155b2755e350 (patch) | |
tree | 698c1af640613775fa246d8cfb822922aeaac085 /libavcodec/vorbis.c | |
parent | 49a0122c99dcbdf2960ea36e10ded5d608d2e287 (diff) | |
download | ffmpeg-069720565ce0f2cc94fa2474f30d155b2755e350.tar.gz |
vorbis simd tweaks
Originally committed as revision 5983 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis.c')
-rw-r--r-- | libavcodec/vorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis.c b/libavcodec/vorbis.c index 1cf2f93382..3bf22bca11 100644 --- a/libavcodec/vorbis.c +++ b/libavcodec/vorbis.c @@ -762,7 +762,7 @@ static void create_map( vorbis_context * vc, uint_fast8_t floor_number ) for (blockflag=0;blockflag<2;++blockflag) { - n=(blockflag ? vc->blocksize[1] : vc->blocksize[0]) / 2; + n=vc->blocksize[blockflag]/2; floors[floor_number].data.t0.map[blockflag]= av_malloc((n+1) * sizeof(int_fast32_t)); // n+sentinel |