Commit 1ae5a644 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavfi/frei0r: Fix a union member type and remove an unneeded cast.

parent a42e761b
......@@ -93,7 +93,7 @@ static int set_param(AVFilterContext *ctx, f0r_param_info_t info, int index, cha
double d;
f0r_param_color_t col;
f0r_param_position_t pos;
f0r_param_string *str;
f0r_param_string str;
} val;
char *tail;
uint8_t rgba[4];
......@@ -127,7 +127,7 @@ static int set_param(AVFilterContext *ctx, f0r_param_info_t info, int index, cha
break;
case F0R_PARAM_STRING:
val.str = (f0r_param_string *)param;
val.str = param;
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