mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-31 07:39:26 +00:00
document ff_audio_interleave
Originally committed as revision 17066 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0d20c3fdad
commit
94027d3bdd
@ -42,6 +42,15 @@ void ff_audio_interleave_close(AVFormatContext *s);
|
|||||||
int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt);
|
int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt);
|
||||||
int ff_interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt,
|
int ff_interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt,
|
||||||
int stream_index, int flush);
|
int stream_index, int flush);
|
||||||
|
/**
|
||||||
|
* Rechunk audio pcm packets per AudioInterleaveContext->samples_per_frame
|
||||||
|
* and interleave them correctly.
|
||||||
|
* AVStream->priv_data first element must be AudioInterleaveContext
|
||||||
|
* when using this function.
|
||||||
|
*
|
||||||
|
* @param get_packet function will output a packet when streams are correctly interleaved.
|
||||||
|
* @param compare_ts function will compare AVPackets and decide interleaving order.
|
||||||
|
*/
|
||||||
int ff_audio_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush,
|
int ff_audio_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush,
|
||||||
int (*get_packet)(AVFormatContext *, AVPacket *, AVPacket *, int),
|
int (*get_packet)(AVFormatContext *, AVPacket *, AVPacket *, int),
|
||||||
int (*compare_ts)(AVFormatContext *, AVPacket *, AVPacket *));
|
int (*compare_ts)(AVFormatContext *, AVPacket *, AVPacket *));
|
||||||
|
Loading…
Reference in New Issue
Block a user