diff mbox series

[FFmpeg-devel,2/2] avformat/movenc: Make some AVCodecTag tables static

Message ID 20200930165925.1244016-2-andreas.rheinhardt@gmail.com
State Accepted
Commit e6cdd23bc706d6ff0e213ffbf537e92c81637769
Headers show
Series [FFmpeg-devel,1/2] avformat/movenc: Fix segfault when remuxing rtp hint stream | expand

Checks

Context Check Description
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Andreas Rheinhardt Sept. 30, 2020, 4:59 p.m. UTC
They are not used anywhere else.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavformat/movenc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 7d89cd579a..6c10500149 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -7113,7 +7113,7 @@  static const AVCodecTag codec_3gp_tags[] = {
     { AV_CODEC_ID_NONE, 0 },
 };
 
-const AVCodecTag codec_mp4_tags[] = {
+static const AVCodecTag codec_mp4_tags[] = {
     { AV_CODEC_ID_MPEG4,           MKTAG('m', 'p', '4', 'v') },
     { AV_CODEC_ID_H264,            MKTAG('a', 'v', 'c', '1') },
     { AV_CODEC_ID_H264,            MKTAG('a', 'v', 'c', '3') },
@@ -7149,7 +7149,7 @@  const AVCodecTag codec_mp4_tags[] = {
     { AV_CODEC_ID_NONE,               0 },
 };
 
-const AVCodecTag codec_ism_tags[] = {
+static const AVCodecTag codec_ism_tags[] = {
     { AV_CODEC_ID_WMAPRO      , MKTAG('w', 'm', 'a', ' ') },
     { AV_CODEC_ID_NONE        ,    0 },
 };