summaryrefslogtreecommitdiff
path: root/libavformat/segment.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2014-07-17 16:36:11 +0200
committerStefano Sabatini <stefasab@gmail.com>2014-07-17 16:51:51 +0200
commit3d38c9904121b39eff41e8150fdd1ec523f290c7 (patch)
treeb2e392432df780453ddbf7638ca45cb54b02aef1 /libavformat/segment.c
parentb6a8c5245f5c70f4a45a9070aca8d9f4a5989508 (diff)
lavf/segment: fix weird indent
Diffstat (limited to 'libavformat/segment.c')
-rw-r--r--libavformat/segment.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c
index f1147a76c0..c25a2951c4 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -708,10 +708,10 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
}
av_dlog(s, "packet stream:%d pts:%s pts_time:%s duration_time:%s is_key:%d frame:%d\n",
- pkt->stream_index, av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
- av_ts2timestr(pkt->duration, &st->time_base),
- pkt->flags & AV_PKT_FLAG_KEY,
- pkt->stream_index == seg->reference_stream_index ? seg->frame_count : -1);
+ pkt->stream_index, av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &st->time_base),
+ av_ts2timestr(pkt->duration, &st->time_base),
+ pkt->flags & AV_PKT_FLAG_KEY,
+ pkt->stream_index == seg->reference_stream_index ? seg->frame_count : -1);
if (pkt->stream_index == seg->reference_stream_index &&
pkt->flags & AV_PKT_FLAG_KEY &&