[FFmpeg-cvslog] avconv: formatting fixes in output_packet()

Anton Khirnov git at videolan.org
Thu Nov 24 03:38:33 CET 2011


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Nov 22 07:16:23 2011 +0100| [8b0268a85388d26c8e2e70e6d714c8ff54e50eae] | committer: Anton Khirnov

avconv: formatting fixes in output_packet()

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b0268a85388d26c8e2e70e6d714c8ff54e50eae
---

 avconv.c |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/avconv.c b/avconv.c
index c31aa45..dfdeba6 100644
--- a/avconv.c
+++ b/avconv.c
@@ -1843,11 +1843,10 @@ static int output_packet(InputStream *ist, int ist_index,
     int i;
     int got_output;
     int64_t pkt_pts = AV_NOPTS_VALUE;
-
     AVPacket avpkt;
 
-    if(ist->next_pts == AV_NOPTS_VALUE)
-        ist->next_pts= ist->pts;
+    if (ist->next_pts == AV_NOPTS_VALUE)
+        ist->next_pts = ist->pts;
 
     if (pkt == NULL) {
         /* EOF handling */
@@ -1868,12 +1867,14 @@ static int output_packet(InputStream *ist, int ist_index,
     while (ist->decoding_needed && (avpkt.size > 0 || (!pkt && got_output))) {
         int ret = 0;
     handle_eof:
-        ist->pts= ist->next_pts;
 
-        if(avpkt.size && avpkt.size != pkt->size)
+        ist->pts = ist->next_pts;
+
+        if (avpkt.size && avpkt.size != pkt->size) {
             av_log(NULL, ist->showed_multi_packet_warning ? AV_LOG_VERBOSE : AV_LOG_WARNING,
                    "Multiple frames in a packet from stream %d\n", pkt->stream_index);
-            ist->showed_multi_packet_warning=1;
+            ist->showed_multi_packet_warning = 1;
+        }
 
         switch(ist->st->codec->codec_type) {
         case AVMEDIA_TYPE_AUDIO:



More information about the ffmpeg-cvslog mailing list