]> git.sesse.net Git - ffmpeg/commitdiff
h264dec: make ff_h264_decode_init() static
authorAnton Khirnov <anton@khirnov.net>
Tue, 27 Dec 2016 17:54:47 +0000 (18:54 +0100)
committerAnton Khirnov <anton@khirnov.net>
Mon, 9 Jan 2017 12:21:13 +0000 (13:21 +0100)
It is not called from outside h264dec.c anymore.

libavcodec/h264dec.c
libavcodec/h264dec.h

index 54ded03bd84e945aba0ddc8b14a9e014f77e8962..e111d40c3578764421f9891bca3412286c130dde 100644 (file)
@@ -361,7 +361,7 @@ static av_cold int h264_decode_end(AVCodecContext *avctx)
 
 static AVOnce h264_vlc_init = AV_ONCE_INIT;
 
-av_cold int ff_h264_decode_init(AVCodecContext *avctx)
+static av_cold int h264_decode_init(AVCodecContext *avctx)
 {
     H264Context *h = avctx->priv_data;
     int ret;
@@ -795,7 +795,7 @@ AVCodec ff_h264_decoder = {
     .type                  = AVMEDIA_TYPE_VIDEO,
     .id                    = AV_CODEC_ID_H264,
     .priv_data_size        = sizeof(H264Context),
-    .init                  = ff_h264_decode_init,
+    .init                  = h264_decode_init,
     .close                 = h264_decode_end,
     .decode                = h264_decode_frame,
     .capabilities          = /*AV_CODEC_CAP_DRAW_HORIZ_BAND |*/ AV_CODEC_CAP_DR1 |
index 2ffe4deda08bdbef53dc1d9533770ef5235e4e7d..5957e795e6bd0cc69720feb6be14365a7c378033 100644 (file)
@@ -553,7 +553,6 @@ int ff_h264_decode_ref_pic_marking(H264SliceContext *sl, GetBitContext *gb,
                                    const H2645NAL *nal, void *logctx);
 
 void ff_h264_hl_decode_mb(const H264Context *h, H264SliceContext *sl);
-int ff_h264_decode_init(AVCodecContext *avctx);
 void ff_h264_decode_init_vlc(void);
 
 /**