]> git.sesse.net Git - ffmpeg/commitdiff
ffmpeg: Use actual frame dimensions in checks in sub2video_update()
authorMichael Niedermayer <michael@niedermayer.cc>
Sat, 15 Aug 2015 15:28:16 +0000 (17:28 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sat, 15 Aug 2015 15:41:48 +0000 (17:41 +0200)
Fixes Ticket4744 part2

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
ffmpeg.c

index 9143e7bd7d1d6a1aed2aa80158abe63644b4e271..fd59c3c6e3ca48f0fabad9126c877a910f8b5551 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -227,7 +227,6 @@ static void sub2video_push_ref(InputStream *ist, int64_t pts)
 
 static void sub2video_update(InputStream *ist, AVSubtitle *sub)
 {
-    int w = ist->sub2video.w, h = ist->sub2video.h;
     AVFrame *frame = ist->sub2video.frame;
     int8_t *dst;
     int     dst_linesize;
@@ -255,7 +254,7 @@ static void sub2video_update(InputStream *ist, AVSubtitle *sub)
     dst          = frame->data    [0];
     dst_linesize = frame->linesize[0];
     for (i = 0; i < num_rects; i++)
-        sub2video_copy_rect(dst, dst_linesize, w, h, sub->rects[i]);
+        sub2video_copy_rect(dst, dst_linesize, frame->width, frame->height, sub->rects[i]);
     sub2video_push_ref(ist, pts);
     ist->sub2video.end_pts = end_pts;
 }