aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-07-09 19:52:06 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-07-09 19:52:06 +0200
commit6253f511e053de20eb01013e93c1084f19df9ef6 (patch)
tree19d822413eb7772d716b4da8eca514dbe2d71ede /libavformat
parentda46370e94aa9a9225532ac63c5fc7c1259ca837 (diff)
downloadffmpeg-6253f511e053de20eb01013e93c1084f19df9ef6.tar.gz
Cosmetics: Reindent after last commit.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/matroskaenc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index 713cb33cc4..2d0d5f6bb1 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -1793,11 +1793,11 @@ static int mkv_write_packet_internal(AVFormatContext *s, AVPacket *pkt, int add_
}
if (s->pb->seekable) {
- ret = mkv_add_cuepoint(mkv->cues, pkt->stream_index, dash_tracknum, ts,
- mkv->cluster_pos, relative_packet_pos, duration);
- if (ret < 0)
- return ret;
- }
+ ret = mkv_add_cuepoint(mkv->cues, pkt->stream_index, dash_tracknum, ts,
+ mkv->cluster_pos, relative_packet_pos, duration);
+ if (ret < 0)
+ return ret;
+ }
}
mkv->duration = FFMAX(mkv->duration, ts + duration);