mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-12 18:10:13 +01:00
typo fix: inited --> initialized
Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -1254,11 +1254,11 @@ unsigned avcodec_build( void )
|
||||
|
||||
void avcodec_init(void)
|
||||
{
|
||||
static int inited = 0;
|
||||
static int initialized = 0;
|
||||
|
||||
if (inited != 0)
|
||||
if (initialized != 0)
|
||||
return;
|
||||
inited = 1;
|
||||
initialized = 1;
|
||||
|
||||
dsputil_static_init();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user