Skip to content
Snippets Groups Projects
Commit c328f313 authored by Måns Rullgård's avatar Måns Rullgård
Browse files

make two functions static

Originally committed as revision 6970 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9a626982
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,7 @@ encode_nals(uint8_t *buf, int size, x264_nal_t *nals, int nnal) ...@@ -66,7 +66,7 @@ encode_nals(uint8_t *buf, int size, x264_nal_t *nals, int nnal)
return p - buf; return p - buf;
} }
extern int static int
X264_frame(AVCodecContext *ctx, uint8_t *buf, int bufsize, void *data) X264_frame(AVCodecContext *ctx, uint8_t *buf, int bufsize, void *data)
{ {
X264Context *x4 = ctx->priv_data; X264Context *x4 = ctx->priv_data;
...@@ -130,7 +130,7 @@ X264_close(AVCodecContext *avctx) ...@@ -130,7 +130,7 @@ X264_close(AVCodecContext *avctx)
return 0; return 0;
} }
extern int static int
X264_init(AVCodecContext *avctx) X264_init(AVCodecContext *avctx)
{ {
X264Context *x4 = avctx->priv_data; X264Context *x4 = avctx->priv_data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment