[FFmpeg-cvslog] r18962 - trunk/libavformat/mpegts.c

bcoudurier subversion
Wed May 27 02:48:39 CEST 2009


Author: bcoudurier
Date: Wed May 27 02:48:39 2009
New Revision: 18962

Log:
10l, forgot ';', fix compilation

Modified:
   trunk/libavformat/mpegts.c

Modified: trunk/libavformat/mpegts.c
==============================================================================
--- trunk/libavformat/mpegts.c	Wed May 27 02:46:20 2009	(r18961)
+++ trunk/libavformat/mpegts.c	Wed May 27 02:48:39 2009	(r18962)
@@ -893,7 +893,7 @@ static void mpegts_push_data(MpegTSFilte
         case MPEGTS_PESHEADER_FILL:
             len = pes->pes_header_size - pes->data_index;
             if (len < 0)
-                return
+                return;
             if (len > buf_size)
                 len = buf_size;
             memcpy(pes->header + pes->data_index, p, len);



More information about the ffmpeg-cvslog mailing list