diff --git a/libavformat/iff.c b/libavformat/iff.c
index e415f75..f2c456e 100644
|
a
|
b
|
static int iff_read_header(AVFormatContext *s)
|
| 226 | 226 | avio_skip(pb, 1); // padding |
| 227 | 227 | transparency = avio_rb16(pb); |
| 228 | 228 | } |
| 229 | | if (data_size >= 16) { |
| 230 | | st->sample_aspect_ratio.num = avio_r8(pb); |
| 231 | | st->sample_aspect_ratio.den = avio_r8(pb); |
| 232 | | } |
| | 229 | // if (data_size >= 16) { |
| | 230 | // st->sample_aspect_ratio.num = avio_r8(pb); |
| | 231 | // st->sample_aspect_ratio.den = avio_r8(pb); |
| | 232 | // } |
| 233 | 233 | break; |
| 234 | 234 | |
| 235 | 235 | case ID_DPEL: |