Skip to content
Snippets Groups Projects
Commit 59bd0fef authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

vf_lut: set minimum and maximum alpha value for yuva420p

parent 2b550beb
Branches
Tags
No related merge requests found
......@@ -229,6 +229,7 @@ static int config_props(AVFilterLink *inlink)
min[Y] = min[U] = min[V] = 16;
max[Y] = 235;
max[U] = max[V] = 240;
min[A] = 0; max[A] = 255;
break;
default:
min[0] = min[1] = min[2] = min[3] = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment