summaryrefslogtreecommitdiff
path: root/libavformat/caf.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-18 01:31:18 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-23 10:14:26 +0100
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 };