diff options
author | Peter Ross <pross@xvid.org> | 2010-02-03 09:58:14 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2010-02-03 09:58:14 +0000 |
commit | 451b353d877191d9c27fac707ad811598427409f (patch) | |
tree | b8e60abb6e8db4eb865ffb241696359f32ce7a10 /libavformat/iff.c | |
parent | 02c4f626a8f3d6ffb9e306e8f4193efe6592402c (diff) | |
download | ffmpeg-451b353d877191d9c27fac707ad811598427409f.tar.gz |
Indentation cleanup
Originally committed as revision 21624 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/iff.c')
-rw-r--r-- | libavformat/iff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c index 0778bf4921..b85ab3f90f 100644 --- a/libavformat/iff.c +++ b/libavformat/iff.c @@ -256,14 +256,14 @@ static int iff_read_packet(AVFormatContext *s, pkt->flags |= PKT_FLAG_KEY; if(s->streams[0]->codec->codec_type == CODEC_TYPE_AUDIO) { - iff->sent_bytes += PACKET_SIZE; + iff->sent_bytes += PACKET_SIZE; } else { iff->sent_bytes = iff->body_size; } pkt->stream_index = 0; if(s->streams[0]->codec->codec_type == CODEC_TYPE_AUDIO) { - pkt->pts = iff->audio_frame_count; - iff->audio_frame_count += ret / s->streams[0]->codec->channels; + pkt->pts = iff->audio_frame_count; + iff->audio_frame_count += ret / s->streams[0]->codec->channels; } return ret; } |