git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
lavf/mkv: Only skip prores header if the packet is large enough.
[ffmpeg.git]
/
libavformat
/
matroskaenc.c
diff --git
a/libavformat/matroskaenc.c
b/libavformat/matroskaenc.c
index
7cbba0b
..
c4c58f4
100644
(file)
--- a/
libavformat/matroskaenc.c
+++ b/
libavformat/matroskaenc.c
@@
-1575,7
+1575,7
@@
static void mkv_write_block(AVFormatContext *s, AVIOContext *pb,
} else
data = pkt->data;
- if (codec->codec_id == AV_CODEC_ID_PRORES) {
+ if (codec->codec_id == AV_CODEC_ID_PRORES
&& size >= 8
) {
/* Matroska specification requires to remove the first QuickTime atom
*/
size -= 8;