Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2014-04-13 08:45:10 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-13 16:48:36 +0400
commite311b7446a8c4443c5d17f743ef2d3aae8204386 (patch)
treee052a85776cf7691fc906047f424ad75e5fabe57 /libavformat/iff.c
parentd95c9679f7278fbd954fd8284d29668b77778968 (diff)
avformat/iff: indent
Signed-off-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/iff.c')
-rw-r--r--libavformat/iff.c30
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);