diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-24 13:23:52 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-24 13:23:52 +0100 |
commit | 1436769c57cc6e5209609073e5fd60776a293669 (patch) | |
tree | 60ecb0824d2effde26c4d5b2186713eb0b557aee /libavformat/ipmovie.c | |
parent | bb9fdd9f616fa71f11fe40413a8a7bac178c057e (diff) | |
parent | ca1e5eea0c7b72a6e30aa6488cfeced3a4853521 (diff) | |
download | ffmpeg-1436769c57cc6e5209609073e5fd60776a293669.tar.gz |
Merge commit 'ca1e5eea0c7b72a6e30aa6488cfeced3a4853521'
* commit 'ca1e5eea0c7b72a6e30aa6488cfeced3a4853521':
Remove some pointless TRACE level debug code
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavformat/ipmovie.c')
-rw-r--r-- | libavformat/ipmovie.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/ipmovie.c b/libavformat/ipmovie.c index f9ab3e0d57..a83909f148 100644 --- a/libavformat/ipmovie.c +++ b/libavformat/ipmovie.c @@ -358,9 +358,6 @@ static int process_ipmovie_chunk(IPMVEContext *s, AVIOContext *pb, break; } s->frame_pts_inc = ((uint64_t)AV_RL32(&scratch[0])) * AV_RL16(&scratch[4]); - av_log(s->avf, AV_LOG_TRACE, " %.2f frames/second (timer div = %d, subdiv = %d)\n", - 1000000.0 / s->frame_pts_inc, AV_RL32(&scratch[0]), - AV_RL16(&scratch[4])); break; case OPCODE_INIT_AUDIO_BUFFERS: |