typo fix: inited --> initialized

Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-02-13 09:26:10 +00:00
parent f1cc49a68e
commit 5e53486545
15 changed files with 47 additions and 47 deletions

View file

@ -53,11 +53,11 @@
*/
void avcodec_register_all(void)
{
static int inited;
static int initialized;
if (inited)
if (initialized)
return;
inited = 1;
initialized = 1;
/* video codecs */
REGISTER_DECODER (AASC, aasc);