Use av_guess_format() in place of the deprecated guess_format().
Originally committed as revision 20994 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -201,7 +201,7 @@ AVOutputFormat *av_guess_format(const char *short_name, const char *filename,
|
||||
if (!short_name && filename &&
|
||||
av_filename_number_test(filename) &&
|
||||
av_guess_image2_codec(filename) != CODEC_ID_NONE) {
|
||||
return guess_format("image2", NULL, NULL);
|
||||
return av_guess_format("image2", NULL, NULL);
|
||||
}
|
||||
#endif
|
||||
/* Find the proper file type. */
|
||||
@@ -231,14 +231,14 @@ AVOutputFormat *av_guess_format(const char *short_name, const char *filename,
|
||||
AVOutputFormat *guess_stream_format(const char *short_name, const char *filename,
|
||||
const char *mime_type)
|
||||
{
|
||||
AVOutputFormat *fmt = guess_format(short_name, filename, mime_type);
|
||||
AVOutputFormat *fmt = av_guess_format(short_name, filename, mime_type);
|
||||
|
||||
if (fmt) {
|
||||
AVOutputFormat *stream_fmt;
|
||||
char stream_format_name[64];
|
||||
|
||||
snprintf(stream_format_name, sizeof(stream_format_name), "%s_stream", fmt->name);
|
||||
stream_fmt = guess_format(stream_format_name, NULL, NULL);
|
||||
stream_fmt = av_guess_format(stream_format_name, NULL, NULL);
|
||||
|
||||
if (stream_fmt)
|
||||
fmt = stream_fmt;
|
||||
|
Reference in New Issue
Block a user