Skip to content

Commit

Permalink
libhb: fixed a dead assignment in avfilter.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
galad87 committed Jan 10, 2018
1 parent d689024 commit 876adad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libhb/avfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ static AVFilterContext * append_filter( hb_filter_private_t * pv,

static int avfilter_init( hb_filter_object_t * filter, hb_filter_init_t * init )
{
hb_filter_private_t * pv = filter->private_data;
hb_filter_private_t * pv = NULL;
char * sws_flags;
AVFilterContext * avfilter;
char * filter_args;
Expand Down

0 comments on commit 876adad

Please sign in to comment.