diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 14:16:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 14:16:37 +0000 |
commit | 236580b478fa7ae242dcc3fc5b9cfceb6f67d9a1 (patch) | |
tree | 188d946839c2b26a83a75bee3e348cf73e97ffc2 /libavformat/asfdec.c | |
parent | c994dae1e23c2fd307dffc2bee24bfb1e7593e34 (diff) | |
download | ffmpeg-236580b478fa7ae242dcc3fc5b9cfceb6f67d9a1.tar.gz |
Remove unused variable from asf_read_header() found by CSA.
Originally committed as revision 18555 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index b295e55c01..cc1ce97b88 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -443,8 +443,6 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) } else if (!guidcmp(&g, &ff_asf_ext_stream_header)) { int ext_len, payload_ext_ct, stream_ct; uint32_t ext_d, leak_rate, stream_num; - int64_t pos_ex_st; - pos_ex_st = url_ftell(pb); get_le64(pb); // starttime get_le64(pb); // endtime |