diff options
author | John Stebbins <[email protected]> | 2019-11-11 09:55:30 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-11-11 09:56:41 -0800 |
commit | 47d84339f912bd2ef31748a31c061eb4c4b99f01 (patch) | |
tree | 44d5797a381be6a460766132659d5296ce723602 /libhb | |
parent | 78010469ed0e1de6fbf4634ce2bfd942311188fd (diff) |
rotate: fix rotation by 180
fixes https://github.com/HandBrake/HandBrake/issues/2406
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/rotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/rotate.c b/libhb/rotate.c index c21c4d802..eba9bf6fa 100644 --- a/libhb/rotate.c +++ b/libhb/rotate.c @@ -131,7 +131,7 @@ static int rotate_init(hb_filter_object_t * filter, hb_filter_init_t * init) hb_dict_set(avfilter, "hflip", hb_value_null()); hb_value_array_append(avfilters, avfilter); } - pv->avfilters = avfilter; + pv->avfilters = avfilters; } else { |