Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-18 03:31:18 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-23 12:14:26 +0300
commitef3224c911cca43700f1df7fbee3741a320afe28 (patch)
tree6b0ab346af7cedeb161432cfb2028307ac648497 /libavformat/caf.c
parentc50c85911ef7a6496953afe9975115139e49b187 (diff)
avformat/caf: Deduplicate codec tags list
Also saves a relocation. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/caf.c')
-rw-r--r--libavformat/caf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/caf.c b/libavformat/caf.c
index fe242ff032..a700e4055b 100644
--- a/libavformat/caf.c
+++ b/libavformat/caf.c
@@ -78,3 +78,4 @@ const AVCodecTag ff_codec_caf_tags[] = {
{ AV_CODEC_ID_NONE, 0 },
};
+const AVCodecTag *const ff_caf_codec_tags_list[] = { ff_codec_caf_tags, NULL };