[FFmpeg-cvslog] Add debug output when skipping unknown swf tags.
Carl Eugen Hoyos
git at videolan.org
Tue Dec 4 15:53:32 CET 2012
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Dec 4 15:52:37 2012 +0100| [0877f64fea111c71ef316e78364fe7f67bf7552c] | committer: Carl Eugen Hoyos
Add debug output when skipping unknown swf tags.
Reviewed-by: Clément Bœsch
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0877f64fea111c71ef316e78364fe7f67bf7552c
---
libavformat/swfdec.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c
index 6918b01..b8100cb 100644
--- a/libavformat/swfdec.c
+++ b/libavformat/swfdec.c
@@ -437,6 +437,8 @@ bitmap_end_skip:
pkt->pos = pos;
pkt->stream_index = st->index;
return pkt->size;
+ } else {
+ av_log(s, AV_LOG_DEBUG, "Unknown tag: %d\n", tag);
}
skip:
avio_skip(pb, len);
More information about the ffmpeg-cvslog
mailing list