diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2021-07-19 16:23:34 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2021-07-20 11:20:04 +0530 |
commit | cd7043131f4e2ecf9e5a88c53d3f1a67e2402928 (patch) | |
tree | 72aceb4955aa297a12c7dafda8847c198fb49a2d | |
parent | 05c9f6f4ef818cf1e7fdef8e118c9497e58326af (diff) | |
download | ffmpeg-cd7043131f4e2ecf9e5a88c53d3f1a67e2402928.tar.gz |
avformat/gifdec: log loop count
-rw-r--r-- | libavformat/gifdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/gifdec.c b/libavformat/gifdec.c index c20bde1781..1977f46e3a 100644 --- a/libavformat/gifdec.c +++ b/libavformat/gifdec.c @@ -247,6 +247,7 @@ static int gif_read_ext(AVFormatContext *s) if (sb_size == 3 && data[0] == 1) { gdc->total_iter = AV_RL16(data+1); + av_log(s, AV_LOG_DEBUG, "Loop count is %d\n", gdc->total_iter); if (gdc->total_iter == 0) gdc->total_iter = -1; |