diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-20 17:25:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-20 17:25:04 +0200 |
commit | e48a0a6c3fda652954b9951c563f3cc551541021 (patch) | |
tree | 536d3402deaa1a3873afbd21087d1c02da5e185e | |
parent | 84b95715fa266ff262820ed1086cdf4fb6ba33df (diff) | |
download | ffmpeg-e48a0a6c3fda652954b9951c563f3cc551541021.tar.gz |
avformat/mov: remove per packet timestamp print trace, theres generic code doing this in utils.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mov.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 7f4dd94f2e..1af8fb6495 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -4291,8 +4291,7 @@ static int mov_read_packet(AVFormatContext *s, AVPacket *pkt) goto retry; pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0; pkt->pos = sample->pos; - av_log(s, AV_LOG_TRACE, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n", - pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration); + return 0; } |