summaryrefslogtreecommitdiff
path: root/libavformat/rso.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-18 01:46:05 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-23 11:24:00 +0100
commitcccb7cf44ec718653bc977372adf69210c7e4ad6 (patch)
tree6b7df785fd24a6f8a9606ae86f677e4b3f413cd1 /libavformat/rso.c
parente772e253cbaa9cbbc55b8fd62e1e7534c4fab8d8 (diff)
avformat/rso: Deduplicate codec tags list
Also saves a relocation. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/rso.c')
-rw-r--r--libavformat/rso.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/rso.c b/libavformat/rso.c
index 7d88f0f5bc..765c0d0d66 100644
--- a/libavformat/rso.c
+++ b/libavformat/rso.c
@@ -28,3 +28,5 @@ const AVCodecTag ff_codec_rso_tags[] = {
{ AV_CODEC_ID_ADPCM_IMA_WAV, 0x0101 },
{ AV_CODEC_ID_NONE, 0 },
};
+
+const AVCodecTag *const ff_rso_codec_tags_list[] = { ff_codec_rso_tags, NULL };