mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Merge commit '1909f6b1b6'
* commit '1909f6b1b6':
swscale: cosmetics: Drop silly camelCase from swScale function pointer name
Conflicts:
libswscale/swscale_unscaled.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
01cac26f68
6 changed files with 37 additions and 37 deletions
|
|
@ -1292,7 +1292,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",
|
||||
|
|
@ -1606,7 +1606,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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue