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
Alicia Boya García
gst-plugins-good
Commits
6cc44b93
Commit
6cc44b93
authored
Jul 18, 2004
by
Thomas Vander Stichele
Browse files
make log less verbose
Original commit message from CVS: make log less verbose
parent
74eafb85
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
6cc44b93
2004
-
07
-
18
Thomas
Vander
Stichele
<
thomas
at
apestaart
dot
org
>
*
gst
/
matroska
/
matroska
-
demux
.
c
:
(
gst_matroska_demux_handle_src_event
),
(
gst_matroska_demux_parse_blockgroup
):
*
gst
/
matroska
/
matroska
-
ids
.
h
:
add
BlockReference
tag
and
ignore
it
to
clear
out
log
.
ignore
NAVIGATION
events
to
clear
out
log
.
2004
-
07
-
18
Thomas
Vander
Stichele
<
thomas
at
apestaart
dot
org
>
*
gst
/
matroska
/
matroska
-
demux
.
c
:
(
gst_matroska_demux_class_init
),
...
...
gst/matroska/matroska-demux.c
View file @
6cc44b93
...
...
@@ -1063,6 +1063,10 @@ gst_matroska_demux_handle_src_event (GstPad * pad, GstEvent * event)
case
GST_EVENT_SEEK
:
return
gst_matroska_demux_send_event
(
GST_ELEMENT
(
demux
),
event
);
/* events we don't need to handle */
case
GST_EVENT_NAVIGATION
:
break
;
default:
GST_WARNING
(
"Unhandled event of type %d"
,
GST_EVENT_TYPE
(
event
));
res
=
FALSE
;
...
...
@@ -1927,6 +1931,18 @@ gst_matroska_demux_parse_blockgroup (GstMatroskaDemux * demux,
GST_WARNING
(
"FIXME: implement support for BlockDuration"
);
break
;
}
case
GST_MATROSKA_ID_REFERENCEBLOCK
:{
/* FIXME: this segfaults
gint64 num;
if (!gst_ebml_read_sint (ebml, &id, &num)) {
res = FALSE;
break;
}
GST_WARNING ("FIXME: implement support for ReferenceBlock");
*/
break
;
}
default:
GST_WARNING
(
"Unknown entry 0x%x in blockgroup data"
,
id
);
...
...
gst/matroska/matroska-ids.h
View file @
6cc44b93
...
...
@@ -116,6 +116,7 @@
/* IDs in the cluster master */
#define GST_MATROSKA_ID_CLUSTERTIMECODE 0xE7
#define GST_MATROSKA_ID_BLOCKGROUP 0xA0
#define GST_MATROSKA_ID_REFERENCEBLOCK 0xFB
/* IDs in the blockgroup master */
#define GST_MATROSKA_ID_BLOCK 0xA1
...
...
Write
Preview
Supports
Markdown
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