Commit 9f2ccd38 authored by Aaron Plattner's avatar Aaron Plattner
Browse files

Trace VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE

I forgot to include this change in commit
1290f7c1.
parent 1290f7c1
......@@ -400,6 +400,9 @@ static void _vdp_cap_dump_video_mixer_attribute_value(
case VDP_VIDEO_MIXER_ATTRIBUTE_LUMA_KEY_MAX_LUMA:
fprintf(_vdp_cap_data.fp, "%f", *(float const *)value);
break;
case VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE:
fprintf(_vdp_cap_data.fp, "%u", *(uint8_t const *)value);
break;
default:
fputs("???", _vdp_cap_data.fp);
break;
......
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