diff options
author | Peter Ross <pross@xvid.org> | 2014-04-13 14:45:10 +1000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-13 14:48:36 +0200 |
commit | e311b7446a8c4443c5d17f743ef2d3aae8204386 (patch) | |
tree | e052a85776cf7691fc906047f424ad75e5fabe57 | |
parent | d95c9679f7278fbd954fd8284d29668b77778968 (diff) | |
download | ffmpeg-e311b7446a8c4443c5d17f743ef2d3aae8204386.tar.gz |
avformat/iff: indent
Signed-off-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/iff.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c index 3190a57e92..702a55136e 100644 --- a/libavformat/iff.c +++ b/libavformat/iff.c @@ -373,21 +373,21 @@ static int iff_read_header(AVFormatContext *s) return AVERROR_PATCHWELCOME; } } else { - switch (iff->svx8_compression) { - case COMP_NONE: - st->codec->codec_id = AV_CODEC_ID_PCM_S8_PLANAR; - break; - case COMP_FIB: - st->codec->codec_id = AV_CODEC_ID_8SVX_FIB; - break; - case COMP_EXP: - st->codec->codec_id = AV_CODEC_ID_8SVX_EXP; - break; - default: - av_log(s, AV_LOG_ERROR, - "Unknown SVX8 compression method '%d'\n", iff->svx8_compression); - return -1; - } + switch (iff->svx8_compression) { + case COMP_NONE: + st->codec->codec_id = AV_CODEC_ID_PCM_S8_PLANAR; + break; + case COMP_FIB: + st->codec->codec_id = AV_CODEC_ID_8SVX_FIB; + break; + case COMP_EXP: + st->codec->codec_id = AV_CODEC_ID_8SVX_EXP; + break; + default: + av_log(s, AV_LOG_ERROR, + "Unknown SVX8 compression method '%d'\n", iff->svx8_compression); + return -1; + } } st->codec->bits_per_coded_sample = av_get_bits_per_sample(st->codec->codec_id); |