diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 15:13:01 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 15:13:01 +0000 |
commit | 5ce73e2352e3b367a7d03fa606c3ff2933a330de (patch) | |
tree | 179de8a6a2d80907e2a3a626b4f3196673f54e18 | |
parent | 87718654b18491c740a928d8aee4255d2af4cd8b (diff) | |
download | ffmpeg-5ce73e2352e3b367a7d03fa606c3ff2933a330de.tar.gz |
Remove nonsensical assignment from asf_read_seek() found by CSA.
Originally committed as revision 18565 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/asfdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index cc1ce97b88..805087f174 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -1045,7 +1045,6 @@ static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int /* find the position */ pos = st->index_entries[index].pos; - pts = st->index_entries[index].timestamp; // various attempts to find key frame have failed so far // asf_reset_header(s); |