summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2017-01-14 06:07:06 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2017-01-14 06:07:06 +0100
commit935404923dcd8319b6cc740dd1ec171881f6d889 (patch)
tree5b1b43d11bb94079fbc44c5d9ea01950f482615a /libavformat
parentc723108e25551cfdb0b1e7e52df6d084ea0348b9 (diff)
Cosmetics: Reindent after last commit.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/matroskaenc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index 4760fb0df8..4e4afc17db 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -1120,13 +1120,13 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
// look for a codec ID string specific to mkv to use,
// if none are found, use AVI codes
if (par->codec_id != AV_CODEC_ID_RAWVIDEO || par->codec_tag) {
- for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
- if (ff_mkv_codec_tags[j].id == par->codec_id) {
- put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
- native_id = 1;
- break;
+ for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
+ if (ff_mkv_codec_tags[j].id == par->codec_id) {
+ put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
+ native_id = 1;
+ break;
+ }
}
- }
} else {
if (mkv->allow_raw_vfw) {
native_id = 0;