Commit 393b81f0 authored by Tomas Härdin's avatar Tomas Härdin Committed by Michael Niedermayer

mxfdec: Only parse next partition pack if parsing forward

This fixes ticket #1099.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4ed47d33
...@@ -1877,6 +1877,9 @@ static int mxf_read_header(AVFormatContext *s) ...@@ -1877,6 +1877,9 @@ static int mxf_read_header(AVFormatContext *s)
/* next partition pack - keep going, seek to previous partition or stop */ /* next partition pack - keep going, seek to previous partition or stop */
if(mxf_parse_handle_partition_or_eof(mxf) <= 0) if(mxf_parse_handle_partition_or_eof(mxf) <= 0)
break; break;
else if (mxf->parsing_backward)
continue;
/* we're still parsing forward. proceed to parsing this partition pack */
} }
for (metadata = mxf_metadata_read_table; metadata->read; metadata++) { for (metadata = mxf_metadata_read_table; metadata->read; metadata++) {
......
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