diff options
author | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-07-27 02:52:52 +0000 |
---|---|---|
committer | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-07-27 02:52:52 +0000 |
commit | 36ada60ccbadeee510239db33e1064ffe14c1477 (patch) | |
tree | 7cad14573c3f9e9e1fb0274a0a5c33fbc90b9256 | |
parent | 8b3c13f9f18b75a953b6309c3b657d9813f40542 (diff) | |
download | ffmpeg-36ada60ccbadeee510239db33e1064ffe14c1477.tar.gz |
Add prototype of guess_stream_format
Originally committed as revision 816 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libav/avformat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libav/avformat.h b/libav/avformat.h index 7ab653f450..4a814e62a9 100644 --- a/libav/avformat.h +++ b/libav/avformat.h @@ -227,6 +227,8 @@ int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); void av_register_input_format(AVInputFormat *format); void av_register_output_format(AVOutputFormat *format); +AVOutputFormat *guess_stream_format(const char *short_name, + const char *filename, const char *mime_type); AVOutputFormat *guess_format(const char *short_name, const char *filename, const char *mime_type); |