summaryrefslogtreecommitdiff
path: root/libavformat/cafdec.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/cafdec.c
parentc50c85911ef7a6496953afe9975115139e49b187 (diff)
downloadffmpeg-ef3224c911cca43700f1df7fbee3741a320afe28.tar.gz
avformat/caf: Deduplicate codec tags list
Also saves a relocation. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/cafdec.c')
-rw-r--r--libavformat/cafdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index b7a9711cc5..d56187f71f 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -460,5 +460,5 @@ AVInputFormat ff_caf_demuxer = {
.read_header = read_header,
.read_packet = read_packet,
.read_seek = read_seek,
- .codec_tag = (const AVCodecTag* const []){ ff_codec_caf_tags, 0 },
+ .codec_tag = ff_caf_codec_tags_list,
};