From 1909f6b1b6da2db371c179bed5a19aaf979b7557 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 25 Aug 2013 17:30:05 +0200 Subject: swscale: cosmetics: Drop silly camelCase from swScale function pointer name --- libswscale/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libswscale/utils.c') diff --git a/libswscale/utils.c b/libswscale/utils.c index 740cdc0b9b..403c1381e8 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -1010,7 +1010,7 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, (c->srcRange == c->dstRange || isAnyRGB(dstFormat))) { ff_get_unscaled_swscale(c); - if (c->swScale) { + if (c->swscale) { if (flags & SWS_PRINT_INFO) av_log(c, AV_LOG_INFO, "using unscaled %s -> %s special converter\n", @@ -1297,7 +1297,7 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, c->chrXInc, c->chrYInc); } - c->swScale = ff_getSwsFunc(c); + c->swscale = ff_getSwsFunc(c); return 0; fail: // FIXME replace things by appropriate error codes return -1; -- cgit v1.2.3