]> git.sesse.net Git - ffmpeg/commitdiff
ffmpeg: Remove hw_device_ctx output filter reinit hack
authorMark Thompson <sw@jkqxz.net>
Wed, 22 Mar 2017 21:19:11 +0000 (21:19 +0000)
committerMark Thompson <sw@jkqxz.net>
Sun, 26 Mar 2017 19:38:44 +0000 (20:38 +0100)
This was skipped in c17563c5d3c974a69709ebae0171534763b3051c because
it depended on the filter setup merge, but was forgotten after that
actually happened.

Fixes hwaccel fate for stream size change tests.

ffmpeg_filter.c

index 5cc640d75dbc0c757ec17ae1c3c1d2dd4ee40d31..219e473f692bebbe76678600b86cb55d09c0d218 100644 (file)
@@ -460,7 +460,7 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter,
     if (ret < 0)
         return ret;
 
-    if (!hw_device_ctx && (ofilter->width || ofilter->height)) {
+    if (ofilter->width || ofilter->height) {
         char args[255];
         AVFilterContext *filter;
         AVDictionaryEntry *e = NULL;