summaryrefslogtreecommitdiff
path: root/libavformat/omadec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-18 01:51:41 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-23 11:24:00 +0100
commit81a86c7e1ecf70ae63565ff86699959686753a2d (patch)
tree8c6b6d87fa2a288dce32151b193aa3ca04697594 /libavformat/omadec.c
parentcccb7cf44ec718653bc977372adf69210c7e4ad6 (diff)
avformat/oma: Deduplicate codec tags list
Also saves a relocation. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/omadec.c')
-rw-r--r--libavformat/omadec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c
index 5675d86e75..0b36d4e867 100644
--- a/libavformat/omadec.c
+++ b/libavformat/omadec.c
@@ -621,5 +621,5 @@ AVInputFormat ff_oma_demuxer = {
.read_close = oma_read_close,
.flags = AVFMT_GENERIC_INDEX,
.extensions = "oma,omg,aa3",
- .codec_tag = (const AVCodecTag* const []){ff_oma_codec_tags, 0},
+ .codec_tag = ff_oma_codec_tags_list,
};