From b06ae06e6a5da3a9c6cd48e6f71656b94ea0e2d5 Mon Sep 17 00:00:00 2001 From: Timo Rothenpieler Date: Fri, 27 Mar 2020 21:31:52 +0100 Subject: avutil/hwcontext: correctly set extended_data on hwframe_get_buffer --- libavutil/hwcontext.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavutil/hwcontext.c') diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c index d09a15a249..b01612de05 100644 --- a/libavutil/hwcontext.c +++ b/libavutil/hwcontext.c @@ -557,6 +557,8 @@ int av_hwframe_get_buffer(AVBufferRef *hwframe_ref, AVFrame *frame, int flags) return ret; } + frame->extended_data = frame->data; + return 0; } -- cgit v1.2.3