Commit 86643a02 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

i420: Flag a parameter as unused.

parent 31fef8bd
...@@ -111,6 +111,7 @@ VIDEO_FILTER_WRAPPER( I420_YMGA ) ...@@ -111,6 +111,7 @@ VIDEO_FILTER_WRAPPER( I420_YMGA )
static void I420_YMGA( filter_t *p_filter, picture_t *p_source, static void I420_YMGA( filter_t *p_filter, picture_t *p_source,
picture_t *p_dest ) picture_t *p_dest )
{ {
VLC_UNUSED(p_filter);
uint8_t *p_uv = p_dest->U_PIXELS; uint8_t *p_uv = p_dest->U_PIXELS;
uint8_t *p_u = p_source->U_PIXELS; uint8_t *p_u = p_source->U_PIXELS;
uint8_t *p_v = p_source->V_PIXELS; uint8_t *p_v = p_source->V_PIXELS;
......
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