[FFmpeg-cvslog] r21624 - trunk/libavformat/iff.c
pross
subversion
Wed Feb 3 10:58:14 CET 2010
Author: pross
Date: Wed Feb 3 10:58:14 2010
New Revision: 21624
Log:
Indentation cleanup
Modified:
trunk/libavformat/iff.c
Modified: trunk/libavformat/iff.c
==============================================================================
--- trunk/libavformat/iff.c Wed Feb 3 10:57:21 2010 (r21623)
+++ trunk/libavformat/iff.c Wed Feb 3 10:58:14 2010 (r21624)
@@ -256,14 +256,14 @@ static int iff_read_packet(AVFormatConte
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;
}
More information about the ffmpeg-cvslog
mailing list