Commit ad934bc3 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_drawtext: remove dead initialization

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent ce26a016
......@@ -854,7 +854,7 @@ static int draw_text(AVFilterContext *ctx, AVFrame *frame,
int x = 0, y = 0, i = 0, ret;
int max_text_line_w = 0, len;
int box_w, box_h;
char *text = s->text;
char *text;
uint8_t *p;
int y_min = 32000, y_max = -32000;
int x_min = 32000, x_max = -32000;
......
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