diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-18 01:51:41 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-23 11:24:00 +0100 |
commit | 81a86c7e1ecf70ae63565ff86699959686753a2d (patch) | |
tree | 8c6b6d87fa2a288dce32151b193aa3ca04697594 | |
parent | cccb7cf44ec718653bc977372adf69210c7e4ad6 (diff) | |
download | ffmpeg-81a86c7e1ecf70ae63565ff86699959686753a2d.tar.gz |
avformat/oma: Deduplicate codec tags list
Also saves a relocation.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavformat/oma.c | 3 | ||||
-rw-r--r-- | libavformat/oma.h | 1 | ||||
-rw-r--r-- | libavformat/omadec.c | 2 | ||||
-rw-r--r-- | libavformat/omaenc.c | 2 |
4 files changed, 6 insertions, 2 deletions
diff --git a/libavformat/oma.c b/libavformat/oma.c index f7ae3c9948..e7bf8553f0 100644 --- a/libavformat/oma.c +++ b/libavformat/oma.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stddef.h> #include "internal.h" #include "oma.h" #include "libavcodec/avcodec.h" @@ -35,6 +36,8 @@ const AVCodecTag ff_oma_codec_tags[] = { { 0 }, }; +const AVCodecTag *const ff_oma_codec_tags_list[] = { ff_oma_codec_tags, NULL }; + /** map ATRAC-X channel id to internal channel layout */ const uint64_t ff_oma_chid_to_native_layout[7] = { AV_CH_LAYOUT_MONO, diff --git a/libavformat/oma.h b/libavformat/oma.h index 36fd0125e4..5df50c8eb4 100644 --- a/libavformat/oma.h +++ b/libavformat/oma.h @@ -42,6 +42,7 @@ enum { extern const uint16_t ff_oma_srate_tab[8]; extern const AVCodecTag ff_oma_codec_tags[]; +extern const AVCodecTag *const ff_oma_codec_tags_list[]; extern const uint64_t ff_oma_chid_to_native_layout[7]; extern const int ff_oma_chid_to_num_channels[7]; 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, }; diff --git a/libavformat/omaenc.c b/libavformat/omaenc.c index 7952808bf8..d3c4f62027 100644 --- a/libavformat/omaenc.c +++ b/libavformat/omaenc.c @@ -102,6 +102,6 @@ AVOutputFormat ff_oma_muxer = { .audio_codec = AV_CODEC_ID_ATRAC3, .write_header = oma_write_header, .write_packet = ff_raw_write_packet, - .codec_tag = (const AVCodecTag* const []){ff_oma_codec_tags, 0}, + .codec_tag = ff_oma_codec_tags_list, .flags = AVFMT_NOTIMESTAMPS, }; |