Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Sebastian Dröge
gst-plugins-good
Commits
ab8100e6
Commit
ab8100e6
authored
Jan 09, 2019
by
Sebastian Dröge
🍵
Committed by
Sebastian Dröge
Jan 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flvdemux: Handle the encoder metadata the same as metadatacreator
And store it in our ENCODER tag.
parent
c28a9d5d
Pipeline
#14793
passed with stages
in 17 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
gst/flv/gstflvdemux.c
gst/flv/gstflvdemux.c
+2
-1
No files found.
gst/flv/gstflvdemux.c
View file @
ab8100e6
...
...
@@ -422,7 +422,8 @@ gst_flv_demux_parse_metadata_item (GstFlvDemux * demux, GstByteReader * reader,
}
else
if
(
!
strcmp
(
tag_name
,
"title"
))
{
gst_tag_list_add
(
demux
->
taglist
,
GST_TAG_MERGE_REPLACE
,
GST_TAG_TITLE
,
s
,
NULL
);
}
else
if
(
!
strcmp
(
tag_name
,
"metadatacreator"
))
{
}
else
if
(
!
strcmp
(
tag_name
,
"metadatacreator"
)
||
!
strcmp
(
tag_name
,
"encoder"
))
{
gst_tag_list_add
(
demux
->
taglist
,
GST_TAG_MERGE_REPLACE
,
GST_TAG_ENCODER
,
s
,
NULL
);
}
else
{
...
...
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