Make sws_setColorspaceDetails() return -1 if the destination format is
not supported. Originally committed as revision 29187 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
2d26fa2822
commit
0c067dc34b
@ -2294,7 +2294,7 @@ int sws_setColorspaceDetails(SwsContext *c, const int inv_table[4], int srcRange
|
|||||||
c->saturation= saturation;
|
c->saturation= saturation;
|
||||||
c->srcRange = srcRange;
|
c->srcRange = srcRange;
|
||||||
c->dstRange = dstRange;
|
c->dstRange = dstRange;
|
||||||
if (isYUV(c->dstFormat) || isGray(c->dstFormat)) return 0;
|
if (isYUV(c->dstFormat) || isGray(c->dstFormat)) return -1;
|
||||||
|
|
||||||
c->uOffset= 0x0400040004000400LL;
|
c->uOffset= 0x0400040004000400LL;
|
||||||
c->vOffset= 0x0400040004000400LL;
|
c->vOffset= 0x0400040004000400LL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user