1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-27 07:40:36 +02:00

lavc/utils: move avcodec_init() higher in the file.

Fixes build on next major bump.
This commit is contained in:
Anton Khirnov 2011-09-01 16:59:35 +02:00
parent e5b29c1f6b
commit 9ecfbb3e57

View File

@ -85,6 +85,20 @@ AVCodec *av_codec_next(AVCodec *c){
else return first_avcodec;
}
#if !FF_API_AVCODEC_INIT
static
#endif
void avcodec_init(void)
{
static int initialized = 0;
if (initialized != 0)
return;
initialized = 1;
dsputil_static_init();
}
void avcodec_register(AVCodec *codec)
{
AVCodec **p;
@ -1065,20 +1079,6 @@ const char *avcodec_license(void)
return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
}
#if !FF_API_AVCODEC_INIT
static
#endif
void avcodec_init(void)
{
static int initialized = 0;
if (initialized != 0)
return;
initialized = 1;
dsputil_static_init();
}
void avcodec_flush_buffers(AVCodecContext *avctx)
{
if(HAVE_PTHREADS && avctx->active_thread_type&FF_THREAD_FRAME)