diff options
| author | Mark Thompson <[email protected]> | 2016-06-23 01:40:04 +0100 | 
|---|---|---|
| committer | Mark Thompson <[email protected]> | 2016-06-26 19:40:56 +0100 | 
| commit | bd31c61cf94d01dbe1051cf65874e7b2c0ac5454 (patch) | |
| tree | e23f278612ed6b2aa68ae8f6cedd7f0a2e719b63 | |
| parent | 4a081f224e12f4227ae966bcbdd5384f22121ecf (diff) | |
avconv: Remove hw_device_ctx output filter reinit hack
Not needed any more because we no longer have any useful case which
will reinitialise with hardware frames here.
| -rw-r--r-- | avconv_filter.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv_filter.c b/avconv_filter.c index 9c983c0e2b..f7ce76ff69 100644 --- a/avconv_filter.c +++ b/avconv_filter.c @@ -317,7 +317,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;  | 
