Browse Source

avcodec/utils: add missing FF_API_TAG_STRING check

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.4
James Almer 5 years ago
parent
commit
137a36bdfc
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/utils.c

+ 2
- 0
libavcodec/utils.c View File

@@ -1217,6 +1217,7 @@ const char *avcodec_get_name(enum AVCodecID id)
return "unknown_codec";
}

#if FF_API_TAG_STRING
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
{
int i, len, ret = 0;
@@ -1236,6 +1237,7 @@ size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_ta
}
return ret;
}
#endif

void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
{


Loading…
Cancel
Save