From 5e53486545726987ab4482321d4dcf7e23e7652f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 13 Feb 2008 09:26:10 +0000 Subject: typo fix: inited --> initialized Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/qdm2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/qdm2.c') diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c index 01a4940a47..55ddbef45d 100644 --- a/libavcodec/qdm2.c +++ b/libavcodec/qdm2.c @@ -1692,11 +1692,11 @@ static void qdm2_synthesis_filter (QDM2Context *q, int index) * @param q context */ static void qdm2_init(QDM2Context *q) { - static int inited = 0; + static int initialized = 0; - if (inited != 0) + if (initialized != 0) return; - inited = 1; + initialized = 1; qdm2_init_vlc(); ff_mpa_synth_init(mpa_window); -- cgit v1.2.3