Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Camilo Celis Guzman
gst-plugins-good
Commits
c8b50148
Commit
c8b50148
authored
Apr 13, 2011
by
Tim-Philipp Müller
Browse files
qtmux: default to dts-method=reorder and presentation-time=true
https://bugzilla.gnome.org/show_bug.cgi?id=636699
parent
5f051fd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
gst/quicktime/gstqtmux.c
View file @
c8b50148
...
...
@@ -198,13 +198,13 @@ enum
#define DEFAULT_MOVIE_TIMESCALE 1000
#define DEFAULT_TRAK_TIMESCALE 0
#define DEFAULT_DO_CTTS
FALS
E
#define DEFAULT_DO_CTTS
TRU
E
#define DEFAULT_FAST_START FALSE
#define DEFAULT_FAST_START_TEMP_FILE NULL
#define DEFAULT_MOOV_RECOV_FILE NULL
#define DEFAULT_FRAGMENT_DURATION 0
#define DEFAULT_STREAMABLE FALSE
#define DEFAULT_DTS_METHOD DTS_METHOD_
DD
#define DEFAULT_DTS_METHOD DTS_METHOD_
REORDER
static
void
gst_qt_mux_finalize
(
GObject
*
object
);
...
...
@@ -306,8 +306,7 @@ gst_qt_mux_class_init (GstQTMuxClass * klass)
g_param_spec_boolean
(
"presentation-time"
,
"Include presentation-time info"
,
"Calculate and include presentation/composition time "
"(in addition to decoding time) (use with caution)"
,
DEFAULT_DO_CTTS
,
"(in addition to decoding time)"
,
DEFAULT_DO_CTTS
,
G_PARAM_READWRITE
|
G_PARAM_CONSTRUCT
|
G_PARAM_STATIC_STRINGS
));
g_object_class_install_property
(
gobject_class
,
PROP_DTS_METHOD
,
g_param_spec_enum
(
"dts-method"
,
"dts-method"
,
...
...
@@ -316,7 +315,7 @@ gst_qt_mux_class_init (GstQTMuxClass * klass)
G_PARAM_READWRITE
|
G_PARAM_CONSTRUCT
|
G_PARAM_STATIC_STRINGS
));
g_object_class_install_property
(
gobject_class
,
PROP_FAST_START
,
g_param_spec_boolean
(
"faststart"
,
"Format file to faststart"
,
"If the file should be formated for faststart (headers first)
.
"
,
"If the file should be format
t
ed for faststart (headers first)"
,
DEFAULT_FAST_START
,
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
g_object_class_install_property
(
gobject_class
,
PROP_FAST_START_TEMP_FILE
,
g_param_spec_string
(
"faststart-file"
,
"File to use for storing buffers"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment