mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
mxfmux: Set KAG size to 1
We're not aligning our output in any way, and 0 is invalid.
This commit is contained in:
parent
8b15b609d2
commit
0b48144f07
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue