diff options
author | Clément Bœsch | 2017-03-24 13:23:52 +0100 |
---|---|---|
committer | Clément Bœsch | 2017-03-24 13:23:52 +0100 |
commit | 1436769c57cc6e5209609073e5fd60776a293669 (patch) | |
tree | 60ecb0824d2effde26c4d5b2186713eb0b557aee /libavformat/avidec.c | |
parent | bb9fdd9f616fa71f11fe40413a8a7bac178c057e (diff) | |
parent | ca1e5eea0c7b72a6e30aa6488cfeced3a4853521 (diff) |
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/avidec.c')
-rw-r--r-- | libavformat/avidec.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index a7e9ab15f5..788a3abf3b 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -1479,17 +1479,6 @@ resync: // pkt->dts += ast->start; if (ast->sample_size) pkt->dts /= ast->sample_size; - av_log(s, AV_LOG_TRACE, - "dts:%"PRId64" offset:%"PRId64" %d/%d smpl_siz:%d " - "base:%d st:%d size:%d\n", - pkt->dts, - ast->frame_offset, - ast->scale, - ast->rate, - ast->sample_size, - AV_TIME_BASE, - avi->stream_index, - size); pkt->stream_index = avi->stream_index; if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->index_entries) { @@ -1760,13 +1749,6 @@ static int avi_load_index(AVFormatContext *s) break; next = avio_tell(pb) + size + (size & 1); - av_log(s, AV_LOG_TRACE, "tag=%c%c%c%c size=0x%x\n", - tag & 0xff, - (tag >> 8) & 0xff, - (tag >> 16) & 0xff, - (tag >> 24) & 0xff, - size); - if (tag == MKTAG('i', 'd', 'x', '1') && avi_read_idx1(s, size) >= 0) { avi->index_loaded=2; |