mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-04-19 00:50:23 +00:00
avcodec/decode: don't try to apply LCEVC enhancements if some other kind of post processing is active
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
d6a22cda38
commit
d069ba22ff
1 changed files with 1 additions and 1 deletions
|
|
@ -1711,7 +1711,7 @@ static int attach_post_process_data(AVCodecContext *avctx, AVFrame *frame)
|
|||
FFLCEVCFrame *frame_ctx;
|
||||
int ret;
|
||||
|
||||
if (!dc->lcevc.width || !dc->lcevc.height) {
|
||||
if (fdd->post_process || !dc->lcevc.width || !dc->lcevc.height) {
|
||||
dc->lcevc.frame = 0;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue