[FFmpeg-cvslog] r11905 - trunk/libavformat/mov.c

bcoudurier subversion
Mon Feb 11 15:10:52 CET 2008


Author: bcoudurier
Date: Mon Feb 11 15:10:52 2008
New Revision: 11905

Log:
indentation

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Mon Feb 11 15:10:52 2008
@@ -1539,13 +1539,13 @@ static int mov_read_packet(AVFormatConte
                sc->ffindex, sample->pos);
         return -1;
     }
-        av_get_packet(s->pb, pkt, sample->size);
+    av_get_packet(s->pb, pkt, sample->size);
 #ifdef CONFIG_DV_DEMUXER
-        if (mov->dv_demux && sc->dv_audio_container) {
-            dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
-            av_free(pkt->data);
-            dv_get_packet(mov->dv_demux, pkt);
-        }
+    if (mov->dv_demux && sc->dv_audio_container) {
+        dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
+        av_free(pkt->data);
+        dv_get_packet(mov->dv_demux, pkt);
+    }
 #endif
     pkt->stream_index = sc->ffindex;
     pkt->dts = sample->timestamp;




More information about the ffmpeg-cvslog mailing list