summaryrefslogtreecommitdiffstats
path: root/libavcodec/imgconvert.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-02-13 09:26:10 +0000
committerDiego Biurrun <diego@biurrun.de>2008-02-13 09:26:10 +0000
commit5e53486545726987ab4482321d4dcf7e23e7652f (patch)
tree7d02e767f3f8c464df234413336a89304de40c63 /libavcodec/imgconvert.c
parentf1cc49a68e342b9990052b54af7f91525c982353 (diff)
downloadffmpeg-streaming-5e53486545726987ab4482321d4dcf7e23e7652f.zip
ffmpeg-streaming-5e53486545726987ab4482321d4dcf7e23e7652f.tar.gz
typo fix: inited --> initialized
Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgconvert.c')
-rw-r--r--libavcodec/imgconvert.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index 69bad50..14d4791 100644
--- a/libavcodec/imgconvert.c
+++ b/libavcodec/imgconvert.c
@@ -2350,7 +2350,7 @@ int img_convert(AVPicture *dst, int dst_pix_fmt,
const AVPicture *src, int src_pix_fmt,
int src_width, int src_height)
{
- static int inited;
+ static int initialized;
int i, ret, dst_width, dst_height, int_pix_fmt;
const PixFmtInfo *src_pix, *dst_pix;
const ConvertEntry *ce;
@@ -2362,8 +2362,8 @@ int img_convert(AVPicture *dst, int dst_pix_fmt,
if (src_width <= 0 || src_height <= 0)
return 0;
- if (!inited) {
- inited = 1;
+ if (!initialized) {
+ initialized = 1;
img_convert_init();
}
OpenPOWER on IntegriCloud