matroskaparse: Comment out some unused functions used only from the commented out pull-mode code

This commit is contained in:
Sebastian Dröge 2014-02-09 23:21:20 +01:00
parent fd55cb324d
commit aafcbbb2fe

View file

@ -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,