lavc: deprecate av_get_codec_tag_string()
This commit is contained in:
parent
bfdcdd6d82
commit
f156d35321
@ -5667,6 +5667,7 @@ attribute_deprecated
|
|||||||
void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
|
void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if FF_API_TAG_STRING
|
||||||
/**
|
/**
|
||||||
* Put a string representing the codec tag codec_tag in buf.
|
* Put a string representing the codec tag codec_tag in buf.
|
||||||
*
|
*
|
||||||
@ -5675,8 +5676,12 @@ void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
|
|||||||
* @param codec_tag codec tag to assign
|
* @param codec_tag codec tag to assign
|
||||||
* @return the length of the string that would have been generated if
|
* @return the length of the string that would have been generated if
|
||||||
* enough space had been available, excluding the trailing null
|
* enough space had been available, excluding the trailing null
|
||||||
|
*
|
||||||
|
* @deprecated see av_fourcc_make_string() and av_fourcc2str().
|
||||||
*/
|
*/
|
||||||
|
attribute_deprecated
|
||||||
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag);
|
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag);
|
||||||
|
#endif
|
||||||
|
|
||||||
void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
|
void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode);
|
||||||
|
|
||||||
|
@ -235,6 +235,9 @@
|
|||||||
#ifndef FF_API_MERGE_SD_API
|
#ifndef FF_API_MERGE_SD_API
|
||||||
#define FF_API_MERGE_SD_API (LIBAVCODEC_VERSION_MAJOR < 59)
|
#define FF_API_MERGE_SD_API (LIBAVCODEC_VERSION_MAJOR < 59)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef FF_API_TAG_STRING
|
||||||
|
#define FF_API_TAG_STRING (LIBAVCODEC_VERSION_MAJOR < 59)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#endif /* AVCODEC_VERSION_H */
|
#endif /* AVCODEC_VERSION_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user