diff options
author | Benoit Fouet <benoit.fouet@purplelabs.com> | 2007-04-03 22:16:21 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-03 22:16:21 +0000 |
commit | 8896cdd379dca6c84bcce2fd2a0b2a13ea0602f8 (patch) | |
tree | 6ff6e748ed5347da5d2d092c54aefe6ecb8e31a5 /libavcodec | |
parent | 636b69c5a4445a28d509e803ff528c753047ef9d (diff) | |
download | ffmpeg-8896cdd379dca6c84bcce2fd2a0b2a13ea0602f8.tar.gz |
Remove useless pointer shift.
patch by Benoit Fouet, benoit.fouet purplelabs com
Originally committed as revision 8621 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/amr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/amr.c b/libavcodec/amr.c index 4e1e69c03a..18c06c2d9a 100644 --- a/libavcodec/amr.c +++ b/libavcodec/amr.c @@ -309,7 +309,6 @@ static int amr_nb_decode_frame(AVCodecContext * avctx, //Each AMR-frame results in 160 16-bit samples *data_size+=160*2; - synth+=160; /* if not homed: check whether current frame is a homing frame */ if (s->reset_flag_old == 0) |