comparison matroskaenc.c @ 2512:d66e476c9d24 libavformat

Indent
author conrad
date Wed, 05 Sep 2007 00:25:56 +0000
parents 0ca390638aa5
children c4413ad376b9
comparison
equal deleted inserted replaced
2511:0ca390638aa5 2512:d66e476c9d24
490 490
491 put_bmp_header(&dyn_cp, codec, codec_bmp_tags, 0); 491 put_bmp_header(&dyn_cp, codec, codec_bmp_tags, 0);
492 492
493 } else if (codec->codec_type == CODEC_TYPE_AUDIO) { 493 } else if (codec->codec_type == CODEC_TYPE_AUDIO) {
494 if (!codec->codec_tag) 494 if (!codec->codec_tag)
495 codec->codec_tag = codec_get_tag(codec_wav_tags, codec->codec_id); 495 codec->codec_tag = codec_get_tag(codec_wav_tags, codec->codec_id);
496 if (!codec->codec_tag) { 496 if (!codec->codec_tag) {
497 av_log(codec, AV_LOG_ERROR, "no wav codec id found"); 497 av_log(codec, AV_LOG_ERROR, "no wav codec id found");
498 ret = -1; 498 ret = -1;
499 } 499 }
500 500