Commit c1d8551f authored by Richard Hosking's avatar Richard Hosking

v4l2: Fixed Gamma.

parent 835785d9
...@@ -2527,7 +2527,7 @@ static int VideoControlCallback( vlc_object_t *p_this, ...@@ -2527,7 +2527,7 @@ static int VideoControlCallback( vlc_object_t *p_this,
{ {
p_sys->i_gamma = newval.i_int; p_sys->i_gamma = newval.i_int;
return VideoControl( p_demux, i_fd, return VideoControl( p_demux, i_fd,
"gamma", V4L2_CID_HUE, p_sys->i_gamma ); "gamma", V4L2_CID_GAMMA, p_sys->i_gamma );
} }
else if( !strcmp( psz_var, "videocontrol" ) ) else if( !strcmp( psz_var, "videocontrol" ) )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment