diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-25 17:30:05 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-29 10:23:54 +0200 |
commit | 1909f6b1b6da2db371c179bed5a19aaf979b7557 (patch) | |
tree | 4479ce905b7ae5655e5e460d40c6d7999507ea11 /libswscale/utils.c | |
parent | 4e0799a4d04404abfa8fbc072640be76465158cf (diff) | |
download | ffmpeg-1909f6b1b6da2db371c179bed5a19aaf979b7557.tar.gz |
swscale: cosmetics: Drop silly camelCase from swScale function pointer name
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |