mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/nutenc: replace conditional by assert
Its implied by sp_count==0 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6d1aba6a29
commit
78a79a2ceb
@ -1166,7 +1166,8 @@ static int nut_write_trailer(AVFormatContext *s)
|
||||
write_headers(s, bc);
|
||||
|
||||
ret = avio_open_dyn_buf(&dyn_bc);
|
||||
if (ret >= 0 && nut->sp_count && nut->write_index) {
|
||||
if (ret >= 0 && nut->sp_count) {
|
||||
av_assert1(nut->write_index);
|
||||
write_index(nut, dyn_bc);
|
||||
put_packet(nut, bc, dyn_bc, 1, INDEX_STARTCODE);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user