[FFmpeg-devel] [PATCH] ffplay: fix -vismv 1
Michael Niedermayer
michaelni at gmx.at
Sun Jun 17 20:56:30 CEST 2012
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
ffplay.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ffplay.c b/ffplay.c
index 0644115..80feaf3 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1699,7 +1699,7 @@ static int video_thread(void *arg)
frame->pts = pts_int;
frame->sample_aspect_ratio = av_guess_sample_aspect_ratio(is->ic, is->video_st, frame);
- if (is->use_dr1) {
+ if (is->use_dr1 && frame->opaque) {
FrameBuffer *buf = frame->opaque;
AVFilterBufferRef *fb = avfilter_get_video_buffer_ref_from_arrays(
frame->data, frame->linesize,
--
1.7.9.5
More information about the ffmpeg-devel
mailing list