[FFmpeg-cvslog] ffmpeg: fix width/height overrides for sub2video	processing
    Hendrik Leppkes 
    git at videolan.org
       
    Thu Nov  3 17:21:57 EET 2016
    
    
  
ffmpeg | branch: master | Hendrik Leppkes <h.leppkes at gmail.com> | Thu Nov  3 16:20:59 2016 +0100| [31d657130b02b151a2fe6739f782d9d504b2cfda] | committer: Hendrik Leppkes
ffmpeg: fix width/height overrides for sub2video processing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=31d657130b02b151a2fe6739f782d9d504b2cfda
---
 ffmpeg_filter.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c
index 38dfe5c..5a0e85e 100644
--- a/ffmpeg_filter.c
+++ b/ffmpeg_filter.c
@@ -692,8 +692,8 @@ static int sub2video_prepare(InputStream *ist, InputFilter *ifilter)
         }
         av_log(avf, AV_LOG_INFO, "sub2video: using %dx%d canvas\n", w, h);
     }
-    ist->sub2video.w = ist->resample_width  = w;
-    ist->sub2video.h = ist->resample_height = h;
+    ist->sub2video.w = ist->resample_width  = ifilter->width  = w;
+    ist->sub2video.h = ist->resample_height = ifilter->height = h;
 
     /* rectangles are AV_PIX_FMT_PAL8, but we have no guarantee that the
        palettes for all rectangles are identical or compatible */
    
    
More information about the ffmpeg-cvslog
mailing list