Home
last modified time | relevance | path

Searched refs:vis_obj_seq (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/
Dcodec-utils.h102 const gchar * gst_codec_utils_mpeg4video_get_profile (const guint8 * vis_obj_seq, guint len);
105 const gchar * gst_codec_utils_mpeg4video_get_level (const guint8 * vis_obj_seq, guint len);
109 const guint8 * vis_obj_seq,
Dcodec-utils.c1560 gst_codec_utils_mpeg4video_get_profile (const guint8 * vis_obj_seq, guint len) in gst_codec_utils_mpeg4video_get_profile() argument
1575 g_return_val_if_fail (vis_obj_seq != NULL, NULL); in gst_codec_utils_mpeg4video_get_profile()
1580 GST_MEMDUMP ("VOS", vis_obj_seq, len); in gst_codec_utils_mpeg4video_get_profile()
1582 profile_id = vis_obj_seq[0] >> 4; in gst_codec_utils_mpeg4video_get_profile()
1583 level_id = vis_obj_seq[0] & 0xf; in gst_codec_utils_mpeg4video_get_profile()
1633 gst_codec_utils_mpeg4video_get_level (const guint8 * vis_obj_seq, guint len) in gst_codec_utils_mpeg4video_get_level() argument
1649 g_return_val_if_fail (vis_obj_seq != NULL, NULL); in gst_codec_utils_mpeg4video_get_level()
1654 GST_MEMDUMP ("VOS", vis_obj_seq, len); in gst_codec_utils_mpeg4video_get_level()
1656 profile_id = vis_obj_seq[0] >> 4; in gst_codec_utils_mpeg4video_get_level()
1657 level_id = vis_obj_seq[0] & 0xf; in gst_codec_utils_mpeg4video_get_level()
[all …]