git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6cd650d
)
nutenc: only write an index if there are syncpoints
author
Michael Niedermayer
<michaelni@gmx.at>
Mon, 18 Feb 2013 19:51:54 +0000
(20:51 +0100)
committer
Michael Niedermayer
<michaelni@gmx.at>
Mon, 18 Feb 2013 19:51:54 +0000
(20:51 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/nutenc.c
patch
|
blob
|
history
diff --git
a/libavformat/nutenc.c
b/libavformat/nutenc.c
index
4671152
..
2d8d265
100644
(file)
--- a/
libavformat/nutenc.c
+++ b/
libavformat/nutenc.c
@@
-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);
}