comparison matroskaenc.c @ 4241:c507e877c0ee libavformat

Cosmetics: indent
author conrad
date Sat, 17 Jan 2009 04:31:42 +0000
parents dff232a64d7c
children 3f5d00cb1f61
comparison
equal deleted inserted replaced
4240:dff232a64d7c 4241:c507e877c0ee
559 put_ebml_string(pb, MATROSKA_ID_TRACKLANGUAGE, st->language); 559 put_ebml_string(pb, MATROSKA_ID_TRACKLANGUAGE, st->language);
560 else 560 else
561 put_ebml_string(pb, MATROSKA_ID_TRACKLANGUAGE, "und"); 561 put_ebml_string(pb, MATROSKA_ID_TRACKLANGUAGE, "und");
562 562
563 if (st->disposition) 563 if (st->disposition)
564 put_ebml_uint(pb, MATROSKA_ID_TRACKFLAGDEFAULT, !!(st->disposition & AV_DISPOSITION_DEFAULT)); 564 put_ebml_uint(pb, MATROSKA_ID_TRACKFLAGDEFAULT, !!(st->disposition & AV_DISPOSITION_DEFAULT));
565 565
566 // look for a codec ID string specific to mkv to use, 566 // look for a codec ID string specific to mkv to use,
567 // if none are found, use AVI codes 567 // if none are found, use AVI codes
568 for (j = 0; ff_mkv_codec_tags[j].id != CODEC_ID_NONE; j++) { 568 for (j = 0; ff_mkv_codec_tags[j].id != CODEC_ID_NONE; j++) {
569 if (ff_mkv_codec_tags[j].id == codec->codec_id) { 569 if (ff_mkv_codec_tags[j].id == codec->codec_id) {