diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-18 01:46:05 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-23 11:24:00 +0100 |
commit | cccb7cf44ec718653bc977372adf69210c7e4ad6 (patch) | |
tree | 6b7df785fd24a6f8a9606ae86f677e4b3f413cd1 /libavformat/rso.c | |
parent | e772e253cbaa9cbbc55b8fd62e1e7534c4fab8d8 (diff) | |
download | ffmpeg-cccb7cf44ec718653bc977372adf69210c7e4ad6.tar.gz |
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.c | 2 |
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 }; |