summaryrefslogtreecommitdiff
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
parentc50c85911ef7a6496953afe9975115139e49b187 (diff)
avformat/caf: Deduplicate codec tags list
Also saves a relocation. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r--libavformat/caf.c1
-rw-r--r--libavformat/caf.h1
-rw-r--r--libavformat/cafdec.c2
-rw-r--r--libavformat/cafenc.c2
4 files changed, 4 insertions, 2 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 };
diff --git a/libavformat/caf.h b/libavformat/caf.h
index 9c25f2c683..ed0392b1f1 100644
--- a/libavformat/caf.h
+++ b/libavformat/caf.h
@@ -30,5 +30,6 @@
#include "internal.h"
extern const AVCodecTag ff_codec_caf_tags[];
+extern const AVCodecTag *const ff_caf_codec_tags_list[];
#endif /* AVFORMAT_CAF_H */
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,
};
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index 98d4d9212f..7e44797a52 100644
--- a/libavformat/cafenc.c
+++ b/libavformat/cafenc.c
@@ -274,5 +274,5 @@ AVOutputFormat ff_caf_muxer = {
.write_header = caf_write_header,
.write_packet = caf_write_packet,
.write_trailer = caf_write_trailer,
- .codec_tag = (const AVCodecTag* const []){ff_codec_caf_tags, 0},
+ .codec_tag = ff_caf_codec_tags_list,
};