mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
matroskaparse: Comment out some unused functions used only from the commented out pull-mode code
This commit is contained in:
parent
fd55cb324d
commit
aafcbbb2fe
1 changed files with 4 additions and 1 deletions
|
@ -1108,6 +1108,7 @@ gst_matroska_parse_element_send_event (GstElement * element, GstEvent * event)
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
/* searches for a cluster start from @pos,
|
/* searches for a cluster start from @pos,
|
||||||
* return GST_FLOW_OK and cluster position in @pos if found */
|
* return GST_FLOW_OK and cluster position in @pos if found */
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
|
@ -1205,7 +1206,7 @@ gst_matroska_parse_search_cluster (GstMatroskaParse * parse, gint64 * pos)
|
||||||
*pos = newpos;
|
*pos = newpos;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_matroska_parse_handle_seek_event (GstMatroskaParse * parse,
|
gst_matroska_parse_handle_seek_event (GstMatroskaParse * parse,
|
||||||
|
@ -2232,6 +2233,7 @@ gst_matroska_parse_check_read_size (GstMatroskaParse * parse, guint64 bytes)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
/* returns TRUE if we truely are in error state, and should give up */
|
/* returns TRUE if we truely are in error state, and should give up */
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
gst_matroska_parse_check_parse_error (GstMatroskaParse * parse)
|
gst_matroska_parse_check_parse_error (GstMatroskaParse * parse)
|
||||||
|
@ -2252,6 +2254,7 @@ gst_matroska_parse_check_parse_error (GstMatroskaParse * parse)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* initializes @ebml with @bytes from input stream at current offset.
|
/* initializes @ebml with @bytes from input stream at current offset.
|
||||||
* Returns EOS if insufficient available,
|
* Returns EOS if insufficient available,
|
||||||
|
|
Loading…
Reference in a new issue