gboolean gst_raw_parse_is_negotiated (GstRawParse * rp) { g_return_val_if_fail (GST_IS_RAW_PARSE (rp), FALSE); return rp->negotiated; }
void gst_raw_parse_set_framesize (GstRawParse * rp, int framesize) { g_return_if_fail (GST_IS_RAW_PARSE (rp)); g_return_if_fail (!rp->negotiated); rp->framesize = framesize; }
void gst_raw_parse_set_fps (GstRawParse * rp, int fps_n, int fps_d) { g_return_if_fail (GST_IS_RAW_PARSE (rp)); g_return_if_fail (!rp->negotiated); rp->fps_n = fps_n; rp->fps_d = fps_d; }
void gst_raw_parse_get_fps (GstRawParse * rp, int *fps_n, int *fps_d) { g_return_if_fail (GST_IS_RAW_PARSE (rp)); if (fps_n) *fps_n = rp->fps_n; if (fps_d) *fps_d = rp->fps_d; }