Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-good
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
dbcb99ac
Commit
dbcb99ac
authored
Jun 27, 2017
by
Mark Nauwelaerts
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qtmux: initialize mdhd language code as undefined
parent
bbe0053f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
gst/isomp4/atoms.c
gst/isomp4/atoms.c
+5
-1
No files found.
gst/isomp4/atoms.c
View file @
dbcb99ac
...
...
@@ -1112,7 +1112,11 @@ atom_mdhd_init (AtomMDHD * mdhd)
atom_full_init
(
&
mdhd
->
header
,
FOURCC_mdhd
,
0
,
0
,
0
,
flags
);
common_time_info_init
(
&
mdhd
->
time_info
);
mdhd
->
language_code
=
0
;
/* tempting as it may be to simply 0-initialize,
* that will have the demuxer (correctly) come up with 'eng' as language
* so explicitly specify undefined instead */
mdhd
->
language_code
=
(
'u'
-
0x60
)
*
0x400
+
(
'n'
-
0x60
)
*
0x20
+
(
'd'
-
0x60
);
mdhd
->
quality
=
0
;
}
...
...
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