diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-14 22:24:58 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-14 22:24:58 +0000 |
commit | 127ed7b07bcbc91bbb21d39f77fb906a88733e19 (patch) | |
tree | f693fd064e999fd78f93ccf84a6c0c881fd929aa | |
parent | b965ff352f4171f0f2c31cf96ba215e4f92f16f6 (diff) | |
download | ffmpeg-127ed7b07bcbc91bbb21d39f77fb906a88733e19.tar.gz |
Reindent something that looks weird.
Originally committed as revision 16138 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rmdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 5c10f278f1..74199db4eb 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -116,7 +116,8 @@ static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb, rm->sub_packet_size = sub_packet_size = get_be16(pb); /* sub packet size */ get_be16(pb); /* ??? */ if (((version >> 16) & 0xff) == 5) { - get_be16(pb); get_be16(pb); get_be16(pb); } + get_be16(pb); get_be16(pb); get_be16(pb); + } st->codec->sample_rate = get_be16(pb); get_be32(pb); st->codec->channels = get_be16(pb); |