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:
Michael Niedermayer 2014-05-29 04:25:26 +02:00
parent 6d1aba6a29
commit 78a79a2ceb

View File

@ -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);
}