diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-15 13:06:36 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-15 13:06:36 +0100 |
commit | 53cb0de25b0e2ad91109470c179ecf37752a6cdf (patch) | |
tree | d85ad26a3f9f2c246a2447621331f07392b668a1 /libavformat/asfdec.c | |
parent | 7ea396381743c300f8450baa3054b62b1f3e68d0 (diff) | |
download | ffmpeg-53cb0de25b0e2ad91109470c179ecf37752a6cdf.tar.gz |
asfdec: mark only ts1 as av_unused
Idea-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 3ccc9b834c..54d87bf8ab 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -812,7 +812,7 @@ static int asf_read_frame_header(AVFormatContext *s, AVIOContext *pb){ ASFContext *asf = s->priv_data; int rsize = 1; int num = avio_r8(pb); - av_unused int64_t ts0, ts1; + int64_t ts0, ts1 av_unused; asf->packet_segments--; asf->packet_key_frame = num >> 7; |