1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

make two functions static

Originally committed as revision 6970 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2006-11-11 19:46:53 +00:00
parent 9a626982f9
commit c328f313d8

View File

@ -66,7 +66,7 @@ encode_nals(uint8_t *buf, int size, x264_nal_t *nals, int nnal)
return p - buf;
}
extern int
static int
X264_frame(AVCodecContext *ctx, uint8_t *buf, int bufsize, void *data)
{
X264Context *x4 = ctx->priv_data;
@ -130,7 +130,7 @@ X264_close(AVCodecContext *avctx)
return 0;
}
extern int
static int
X264_init(AVCodecContext *avctx)
{
X264Context *x4 = avctx->priv_data;