changeset 5626:b3d4ef7e53ad libavformat

Indentation cleanup
author pross
date Wed, 03 Feb 2010 09:58:14 +0000
parents c76c1e0c50a5
children 93c777b5ada3
files iff.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/iff.c	Wed Feb 03 09:57:21 2010 +0000
+++ b/iff.c	Wed Feb 03 09:58:14 2010 +0000
@@ -256,14 +256,14 @@
         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;
 }