avformat/oma: Deduplicate codec tags list

Also saves a relocation.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt
2021-02-18 01:51:41 +01:00
parent cccb7cf44e
commit 81a86c7e1e
4 changed files with 6 additions and 2 deletions

View File

@ -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,
};