Browse Source

nutenc: only write an index if there are syncpoints

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Michael Niedermayer 13 years ago
parent
commit
e39821a65e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/nutenc.c

+ 1
- 1
libavformat/nutenc.c View File

@@ -990,7 +990,7 @@ static int nut_write_trailer(AVFormatContext *s)
write_headers(s, bc);

ret = avio_open_dyn_buf(&dyn_bc);
if (ret >= 0) {
if (ret >= 0 && nut->sp_count) {
write_index(nut, dyn_bc);
put_packet(nut, bc, dyn_bc, 1, INDEX_STARTCODE);
}


Loading…
Cancel
Save