diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 13:05:16 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 13:05:16 +0200 |
commit | 61a28d00e85c1a84138e3d8b4f52e453f8640249 (patch) | |
tree | 360bf0850188b896a10f34861dc340bbfd490415 | |
parent | 2ae5ac78d82049a98416221ab6969b975299c8c7 (diff) | |
download | ffmpeg-61a28d00e85c1a84138e3d8b4f52e453f8640249.tar.gz |
flvdec: silence unused warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/flvdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 1941c5ffee..e0b79bb754 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -524,7 +524,8 @@ static int amf_parse_object(AVFormatContext *s, AVStream *astream, static int flv_read_metabody(AVFormatContext *s, int64_t next_pos) { AMFDataType type; - AVStream *stream, *astream, *vstream, *dstream; + AVStream *stream, *astream, *vstream; + AVStream av_unused *dstream; AVIOContext *ioc; int i; // only needs to hold the string "onMetaData". |