swscale/utils: fill xyz tables only when they will be used
makes the first call to sws_getContext() 1ms faster Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 4d18060e56aac9d7248854ba75d5fc19f5cd3db8) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e779595dca
commit
08808084f6
@ -975,8 +975,6 @@ int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4],
|
||||
c->srcRange = srcRange;
|
||||
c->dstRange = dstRange;
|
||||
|
||||
fill_xyztables(c);
|
||||
|
||||
if ((isYUV(c->dstFormat) || isGray(c->dstFormat)) && (isYUV(c->srcFormat) || isGray(c->srcFormat)))
|
||||
return -1;
|
||||
|
||||
@ -1067,6 +1065,8 @@ static void handle_formats(SwsContext *c)
|
||||
c->dst0Alpha |= handle_0alpha(&c->dstFormat);
|
||||
c->srcXYZ |= handle_xyz(&c->srcFormat);
|
||||
c->dstXYZ |= handle_xyz(&c->dstFormat);
|
||||
if (c->srcXYZ || c->dstXYZ)
|
||||
fill_xyztables(c);
|
||||
}
|
||||
|
||||
SwsContext *sws_alloc_context(void)
|
||||
|
Loading…
x
Reference in New Issue
Block a user