[FFmpeg-soc] [soc]: r1039 - dvbmuxer/mpeg_pes.h
realsun
subversion at mplayerhq.hu
Mon Aug 20 10:12:37 CEST 2007
Author: realsun
Date: Mon Aug 20 10:12:37 2007
New Revision: 1039
Log:
merge changes to TS muxer
Modified:
dvbmuxer/mpeg_pes.h
Modified: dvbmuxer/mpeg_pes.h
==============================================================================
--- dvbmuxer/mpeg_pes.h (original)
+++ dvbmuxer/mpeg_pes.h Mon Aug 20 10:12:37 2007
@@ -131,6 +131,7 @@ int ff_get_nb_frames(AVFormatContext *ct
* Mux streams into a PES packet.
* @param [in] ctx the AVFormatContext which contains streams
* @param [in] stream_index the stream index to write
+ * @param [in] pes_buffer PES payload data
* @param [in] pts packet presentation timestamp
* @param [in] dts packet decoding timestamp
* @param [in] id stream ID
@@ -141,7 +142,7 @@ int ff_get_nb_frames(AVFormatContext *ct
* @param [in] stuffing_size packet stuffing size
* @return bytes written to PES stream.
*/
-int ff_pes_muxer_write(AVFormatContext *ctx, int stream_index,
+int ff_pes_muxer_write(AVFormatContext *ctx, int stream_index, uint8_t *pes_buffer,
int64_t pts,int64_t dts, int id, int startcode,
uint8_t* pes_content, int pes_content_len,
int header_len, int packet_size, int payload_size, int stuffing_size);
More information about the FFmpeg-soc
mailing list