Browse Source

avcodec/pthread_frame: fix setting hwaccel with threads and get_format()

Fixes assertion failure with vdpau and vlc
Fixes Ticket3742

Tested-by: oromit
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
e36916a63f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/pthread_frame.c

+ 1
- 1
libavcodec/pthread_frame.c View File

@@ -376,7 +376,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
p->result = ff_get_buffer(p->avctx, p->requested_frame, p->requested_flags);
break;
case STATE_GET_FORMAT:
p->result_format = p->avctx->get_format(p->avctx, p->available_formats);
p->result_format = ff_get_format(p->avctx, p->available_formats);
break;
default:
call_done = 0;


Loading…
Cancel
Save