projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b15b60
)
mxfmux: Set KAG size to 1
author
Sebastian Dröge
<sebastian@centricular.com>
Wed, 21 Oct 2015 16:00:41 +0000
(19:00 +0300)
committer
Sebastian Dröge
<sebastian@centricular.com>
Wed, 21 Oct 2015 16:54:15 +0000
(19:54 +0300)
We're not aligning our output in any way, and 0 is invalid.
gst/mxf/mxfmux.c
patch
|
blob
|
history
diff --git
a/gst/mxf/mxfmux.c
b/gst/mxf/mxfmux.c
index 9233edc249f2579578be2f2f21974d67379cead7..0b17e2c3b7eb3ea329dbcea1fc8b81741f8455dd 100644
(file)
--- a/
gst/mxf/mxfmux.c
+++ b/
gst/mxf/mxfmux.c
@@
-993,7
+993,7
@@
gst_mxf_mux_init_partition_pack (GstMXFMux * mux)
mux->partition.closed = mux->partition.complete = FALSE;
mux->partition.major_version = 0x0001;
mux->partition.minor_version = 0x0002;
- mux->partition.kag_size =
0
;
+ mux->partition.kag_size =
1
;
mux->partition.this_partition = 0;
mux->partition.prev_partition = 0;
mux->partition.footer_partition = 0;