[FFmpeg-cvslog] r21200 - trunk/libavformat/mpegtsenc.c

bcoudurier subversion
Wed Jan 13 22:40:38 CET 2010


Author: bcoudurier
Date: Wed Jan 13 22:40:37 2010
New Revision: 21200

Log:
update mpegts_write_pes documentation, patch by Mike Scheutzow, scheutzow at alcatel-lucent dot com

Modified:
   trunk/libavformat/mpegtsenc.c

Modified: trunk/libavformat/mpegtsenc.c
==============================================================================
--- trunk/libavformat/mpegtsenc.c	Wed Jan 13 21:44:56 2010	(r21199)
+++ trunk/libavformat/mpegtsenc.c	Wed Jan 13 22:40:37 2010	(r21200)
@@ -586,7 +586,11 @@ static void write_pts(uint8_t *q, int fo
     *q++ = val;
 }
 
-/* NOTE: pes_data contains all the PES packet */
+/* Add a pes header to the front of payload, and segment into an integer number of
+ * ts packets. The final ts packet is padded using an over-sized adaptation header
+ * to exactly fill the last ts packet.
+ * NOTE: 'payload' contains a complete PES payload.
+ */
 static void mpegts_write_pes(AVFormatContext *s, AVStream *st,
                              const uint8_t *payload, int payload_size,
                              int64_t pts, int64_t dts)



More information about the ffmpeg-cvslog mailing list