comparison utils.c @ 6350:8e63d869a904 libavcodec

typo fix: inited --> initialized
author diego
date Wed, 13 Feb 2008 09:26:10 +0000
parents 11a44fc273a5
children e961197141c0
comparison
equal deleted inserted replaced
6349:aed237dd11d8 6350:8e63d869a904
1252 return LIBAVCODEC_BUILD; 1252 return LIBAVCODEC_BUILD;
1253 } 1253 }
1254 1254
1255 void avcodec_init(void) 1255 void avcodec_init(void)
1256 { 1256 {
1257 static int inited = 0; 1257 static int initialized = 0;
1258 1258
1259 if (inited != 0) 1259 if (initialized != 0)
1260 return; 1260 return;
1261 inited = 1; 1261 initialized = 1;
1262 1262
1263 dsputil_static_init(); 1263 dsputil_static_init();
1264 } 1264 }
1265 1265
1266 void avcodec_flush_buffers(AVCodecContext *avctx) 1266 void avcodec_flush_buffers(AVCodecContext *avctx)