mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/dpx: check packing
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
23f105a830
commit
a927276fcc
@ -129,6 +129,11 @@ static int decode_frame(AVCodecContext *avctx,
|
||||
packing = read16(&buf, endian);
|
||||
encoding = read16(&buf, endian);
|
||||
|
||||
if (packing > 1) {
|
||||
avpriv_report_missing_feature(avctx,
|
||||
"Unsupported packing %d\n", packing);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
if (encoding) {
|
||||
avpriv_report_missing_feature(avctx,
|
||||
"Unsupported encoding %d\n", encoding);
|
||||
|
Loading…
Reference in New Issue
Block a user