Commit 7494b497 authored by Paul B Mahol's avatar Paul B Mahol

avformat/iff: parse DPAN chunk

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent a5c5ae5e
......@@ -66,6 +66,7 @@
#define ID_ANIM MKTAG('A','N','I','M')
#define ID_ANHD MKTAG('A','N','H','D')
#define ID_DLTA MKTAG('D','L','T','A')
#define ID_DPAN MKTAG('D','P','A','N')
#define ID_FORM MKTAG('F','O','R','M')
#define ID_FRM8 MKTAG('F','R','M','8')
......@@ -556,6 +557,11 @@ static int iff_read_header(AVFormatContext *s)
case ID_ANHD:
break;
case ID_DPAN:
avio_skip(pb, 2);
st->duration = avio_rb16(pb);
break;
case ID_DPEL:
if (data_size < 4 || (data_size & 3))
return AVERROR_INVALIDDATA;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment