summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-08-11 21:21:51 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-08-11 21:21:51 +0000
commitf21c0b4c433aea33578a2f959820594c2b27ef01 (patch)
tree495f9d8ba363e47b3d6a48a669bee306f35adb7f /libavformat/utils.c
parent069720565ce0f2cc94fa2474f30d155b2755e350 (diff)
export av_interleave_packet_per_dts
Originally committed as revision 5984 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 5e00bb33dd..001c812bbf 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2418,7 +2418,7 @@ int av_write_frame(AVFormatContext *s, AVPacket *pkt)
* packets with pkt->destruct == av_destruct_packet will be freed inside this function.
* so they cannot be used after it, note calling av_free_packet() on them is still safe
*/
-static int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush){
+int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush){
AVPacketList *pktl, **next_point, *this_pktl;
int stream_count=0;
int streams[MAX_STREAMS];