forked from FFmpeg/FFmpeg
lavf: remove FF_API_GUESS_FORMAT cruft
This commit is contained in:
parent
dcd4a7b62f
commit
61573bf1ba
3 changed files with 0 additions and 44 deletions
|
@ -862,18 +862,6 @@ attribute_deprecated enum CodecID av_guess_image2_codec(const char *filename);
|
||||||
/* utils.c */
|
/* utils.c */
|
||||||
void av_register_input_format(AVInputFormat *format);
|
void av_register_input_format(AVInputFormat *format);
|
||||||
void av_register_output_format(AVOutputFormat *format);
|
void av_register_output_format(AVOutputFormat *format);
|
||||||
#if FF_API_GUESS_FORMAT
|
|
||||||
attribute_deprecated AVOutputFormat *guess_stream_format(const char *short_name,
|
|
||||||
const char *filename,
|
|
||||||
const char *mime_type);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated Use av_guess_format() instead.
|
|
||||||
*/
|
|
||||||
attribute_deprecated AVOutputFormat *guess_format(const char *short_name,
|
|
||||||
const char *filename,
|
|
||||||
const char *mime_type);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the output format in the list of registered output formats
|
* Return the output format in the list of registered output formats
|
||||||
|
|
|
@ -200,14 +200,6 @@ static int match_format(const char *name, const char *names)
|
||||||
return !strcasecmp(name, names);
|
return !strcasecmp(name, names);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if FF_API_GUESS_FORMAT
|
|
||||||
AVOutputFormat *guess_format(const char *short_name, const char *filename,
|
|
||||||
const char *mime_type)
|
|
||||||
{
|
|
||||||
return av_guess_format(short_name, filename, mime_type);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
AVOutputFormat *av_guess_format(const char *short_name, const char *filename,
|
AVOutputFormat *av_guess_format(const char *short_name, const char *filename,
|
||||||
const char *mime_type)
|
const char *mime_type)
|
||||||
{
|
{
|
||||||
|
@ -243,27 +235,6 @@ AVOutputFormat *av_guess_format(const char *short_name, const char *filename,
|
||||||
return fmt_found;
|
return fmt_found;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if FF_API_GUESS_FORMAT
|
|
||||||
AVOutputFormat *guess_stream_format(const char *short_name, const char *filename,
|
|
||||||
const char *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 = av_guess_format(stream_format_name, NULL, NULL);
|
|
||||||
|
|
||||||
if (stream_fmt)
|
|
||||||
fmt = stream_fmt;
|
|
||||||
}
|
|
||||||
|
|
||||||
return fmt;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
|
enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
|
||||||
const char *filename, const char *mime_type, enum AVMediaType type){
|
const char *filename, const char *mime_type, enum AVMediaType type){
|
||||||
if(type == AVMEDIA_TYPE_VIDEO){
|
if(type == AVMEDIA_TYPE_VIDEO){
|
||||||
|
|
|
@ -47,9 +47,6 @@
|
||||||
#ifndef FF_API_URL_CLASS
|
#ifndef FF_API_URL_CLASS
|
||||||
#define FF_API_URL_CLASS (LIBAVFORMAT_VERSION_MAJOR >= 53)
|
#define FF_API_URL_CLASS (LIBAVFORMAT_VERSION_MAJOR >= 53)
|
||||||
#endif
|
#endif
|
||||||
#ifndef FF_API_GUESS_FORMAT
|
|
||||||
#define FF_API_GUESS_FORMAT (LIBAVFORMAT_VERSION_MAJOR < 53)
|
|
||||||
#endif
|
|
||||||
#ifndef FF_API_UDP_GET_FILE
|
#ifndef FF_API_UDP_GET_FILE
|
||||||
#define FF_API_UDP_GET_FILE (LIBAVFORMAT_VERSION_MAJOR < 53)
|
#define FF_API_UDP_GET_FILE (LIBAVFORMAT_VERSION_MAJOR < 53)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue