diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-05 13:13:53 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-08 16:44:29 +0200 |
commit | a9bf9d8e5349114d37cc3baf0b1e7d95197c5ef8 (patch) | |
tree | 3ef40cf17dcad4d59b54ceeacadc1621a67e0eb6 /libavformat/utils.c | |
parent | 5593f031489f54ad184dd2d2744e31006c8627a5 (diff) | |
download | ffmpeg-a9bf9d8e5349114d37cc3baf0b1e7d95197c5ef8.tar.gz |
lavf: make av_guess_image2_codec internal
It doesn't look very useful as a public function.
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index ca582b34df..1d58682a66 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -218,7 +218,7 @@ AVOutputFormat *av_guess_format(const char *short_name, const char *filename, #if CONFIG_IMAGE2_MUXER if (!short_name && filename && av_filename_number_test(filename) && - av_guess_image2_codec(filename) != CODEC_ID_NONE) { + ff_guess_image2_codec(filename) != CODEC_ID_NONE) { return av_guess_format("image2", NULL, NULL); } #endif @@ -271,7 +271,7 @@ enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name, #if CONFIG_IMAGE2_MUXER if(!strcmp(fmt->name, "image2") || !strcmp(fmt->name, "image2pipe")){ - codec_id= av_guess_image2_codec(filename); + codec_id= ff_guess_image2_codec(filename); } #endif if(codec_id == CODEC_ID_NONE) |