diff options
author | Peter Ross <pross@xvid.org> | 2023-11-14 17:38:38 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2024-12-11 07:52:22 +1100 |
commit | 983ec12a99f1db21c3dc9cc56ac3d127142cc448 (patch) | |
tree | 67ffdf99906fb3fb8eafba5eb216a67c255ef8c5 | |
parent | 2dc864eb4e05a2c24e592810324b8a73b2076757 (diff) | |
download | ffmpeg-983ec12a99f1db21c3dc9cc56ac3d127142cc448.tar.gz |
avcodec/leaddec: support format 0x6
Fixes ticket #10657.
-rw-r--r-- | libavcodec/leaddec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/leaddec.c b/libavcodec/leaddec.c index 2f5152c226..88387902ca 100644 --- a/libavcodec/leaddec.c +++ b/libavcodec/leaddec.c @@ -157,6 +157,7 @@ static int lead_decode_frame(AVCodecContext *avctx, AVFrame * frame, zero = 1; avctx->pix_fmt = AV_PIX_FMT_YUV420P; break; + case 0x6: case 0x8000: yuv20p_half = 1; // fall-through |