diff options
author | Roberto Togni <r_togni@tiscali.it> | 2007-11-19 00:02:03 +0000 |
---|---|---|
committer | Roberto Togni <r_togni@tiscali.it> | 2007-11-19 00:02:03 +0000 |
commit | 69434d2f73fd2418936f90276a0989ea9520ab05 (patch) | |
tree | fbfc49ea35688bbb758fc7e4c9f472f798e9363a | |
parent | 6887cb8bc54d75160f5cb67bb7914e64be3e7c59 (diff) | |
download | ffmpeg-69434d2f73fd2418936f90276a0989ea9520ab05.tar.gz |
No need to update pos, it's not used after that line
Originally committed as revision 11055 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rmdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 5c36aa55d6..69660eda78 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -503,7 +503,6 @@ static int rm_assemble_video_frame(AVFormatContext *s, RMContext *rm, AVPacket * } if(type == 2){ len = FFMIN(len, pos); - pos = len2 - pos; } if(++rm->cur_slice > rm->slices) |