mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avformat/mxfenc: Do not crash if there is no packet in the first stream
Fixes: Ticket4914 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
780c4223a5
commit
b51e7554e7
1 changed files with 4 additions and 0 deletions
|
|
@ -2469,6 +2469,10 @@ static int mxf_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||
}
|
||||
mxf->edit_units_count++;
|
||||
} else if (!mxf->edit_unit_byte_count && st->index == 1) {
|
||||
if (!mxf->edit_units_count) {
|
||||
av_log(s, AV_LOG_ERROR, "No packets in first stream\n");
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
mxf->index_entries[mxf->edit_units_count-1].slice_offset =
|
||||
mxf->body_offset - mxf->index_entries[mxf->edit_units_count-1].offset;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue