summaryrefslogtreecommitdiff
path: root/libavformat/segment.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-12-17 10:43:32 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-12-18 15:14:58 +0100
commit8937af7b6fca19ab9be4d2371a04e25df2fa8d1e (patch)
tree5b9f74a68fe1530f057880794a3960122dac049f /libavformat/segment.c
parentb8f8f7c7fe37222e2569d73b80ba57982a069451 (diff)
lavf/segment: increase logging level for message with segment start information
Help debugging.
Diffstat (limited to 'libavformat/segment.c')
-rw-r--r--libavformat/segment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c
index f07f464f71..91c143272b 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -701,7 +701,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
}
if (seg->is_first_pkt) {
- av_log(s, AV_LOG_DEBUG, "segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d\n",
+ av_log(s, AV_LOG_VERBOSE, "segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d\n",
seg->avf->filename, pkt->stream_index,
av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base), seg->frame_count);
seg->is_first_pkt = 0;