aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/nutenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-12-14 21:52:09 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2019-01-15 00:57:27 +0100
commit9925adcd68471459aa60d6a3e2895cec5f2be85b (patch)
tree543dc36601e0682c7c804416187e548a9812b32d /libavformat/nutenc.c
parent418f13261ffe9390a23271365978730512f1cbe5 (diff)
downloadffmpeg-9925adcd68471459aa60d6a3e2895cec5f2be85b.tar.gz
avformat/nutenc: Document trailer index assert better
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 3a95b73abc868995b08ca2b4d8bbf2cda43184f8) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r--libavformat/nutenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c
index 9e422e1aa8..b4bd411535 100644
--- a/libavformat/nutenc.c
+++ b/libavformat/nutenc.c
@@ -1191,7 +1191,7 @@ static int nut_write_trailer(AVFormatContext *s)
ret = avio_open_dyn_buf(&dyn_bc);
if (ret >= 0 && nut->sp_count) {
- av_assert1(nut->write_index);
+ av_assert1(nut->write_index); // sp_count should be 0 if no index is going to be written
write_index(nut, dyn_bc);
put_packet(nut, bc, dyn_bc, 1, INDEX_STARTCODE);
}