diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-01-04 13:00:47 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-04 13:00:47 +0000 |
commit | 0fd36362b805099917d0e8d56f9a00b393b20131 (patch) | |
tree | ac99a6a615053aaf7669b5cb15d30743f233f8fe /libavformat/rmdec.c | |
parent | 116d15ccf19813bedf5f1bb1f47a74e247963502 (diff) | |
download | ffmpeg-0fd36362b805099917d0e8d56f9a00b393b20131.tar.gz |
Make three rm demuxer functions non static.
Patch by Ronald S. Bultje rsbultje gmail com
Original thread: [FFmpeg-devel] [PATCH] Realmedia / RTSP (RDT)
Date: 12/28/2007 10:19 PM
Originally committed as revision 11392 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rmdec.c')
-rw-r--r-- | libavformat/rmdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 959419ec23..970f5a3524 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -188,7 +188,7 @@ static int rm_read_audio_stream_info(AVFormatContext *s, AVStream *st, return 0; } -static int +int ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVStream *st) { ByteIOContext *pb = s->pb; @@ -546,7 +546,7 @@ rm_ac3_swap_bytes (AVStream *st, AVPacket *pkt) } } -static int +int ff_rm_parse_packet (AVFormatContext *s, AVStream *st, int len, AVPacket *pkt, int *seq, int *flags, int64_t *timestamp) { @@ -644,7 +644,7 @@ ff_rm_parse_packet (AVFormatContext *s, AVStream *st, int len, AVPacket *pkt, return 0; } -static void +void ff_rm_retrieve_cache (AVFormatContext *s, AVStream *st, AVPacket *pkt) { ByteIOContext *pb = s->pb; |