Home
last modified time | relevance | path

Searched refs:cprof (Results 1 – 4 of 4) sorted by relevance

/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dprofile.c620 GstEncodingContainerProfile *cprof; in GST_START_TEST() local
625 cprof = gst_encoding_container_profile_new ("myprofile", NULL, ogg, NULL); in GST_START_TEST()
629 (GST_ENCODING_PROFILE (cprof)), "ogg"); in GST_START_TEST()
632 gst_encoding_container_profile_add_profile (cprof, in GST_START_TEST()
638 (GST_ENCODING_PROFILE (cprof)), "spx"); in GST_START_TEST()
641 gst_encoding_container_profile_add_profile (cprof, in GST_START_TEST()
647 (GST_ENCODING_PROFILE (cprof)), "ogg"); in GST_START_TEST()
650 gst_encoding_container_profile_add_profile (cprof, in GST_START_TEST()
656 (GST_ENCODING_PROFILE (cprof)), "ogv"); in GST_START_TEST()
658 gst_encoding_profile_unref (cprof); in GST_START_TEST()
[all …]
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dqtmux.c803 GstEncodingContainerProfile *cprof; in create_qtmux_profile() local
813 cprof = gst_encoding_container_profile_new ("Name", "blah", caps, NULL); in create_qtmux_profile()
819 gst_encoding_container_profile_add_profile (cprof, in create_qtmux_profile()
824 return cprof; in create_qtmux_profile()
829 GstEncodingContainerProfile *cprof; in GST_START_TEST() local
838 cprof = create_qtmux_profile ("apple"); in GST_START_TEST()
839 g_object_set (enc, "profile", cprof, NULL); in GST_START_TEST()
840 gst_encoding_profile_unref (cprof); in GST_START_TEST()
850 cprof = create_qtmux_profile (NULL); in GST_START_TEST()
851 g_object_set (enc, "profile", cprof, NULL); in GST_START_TEST()
[all …]
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Dencodebin.c47 GstEncodingContainerProfile *cprof; in create_ogg_vorbis_profile() local
51 cprof = in create_ogg_vorbis_profile()
57 fail_unless (gst_encoding_container_profile_add_profile (cprof, in create_ogg_vorbis_profile()
62 return (GstEncodingProfile *) cprof; in create_ogg_vorbis_profile()
978 GstEncodingContainerProfile *cprof; in GST_START_TEST() local
985 cprof = in GST_START_TEST()
995 fail_unless (gst_encoding_container_profile_add_profile (cprof, vorbisprof)); in GST_START_TEST()
1003 fail_unless (gst_encoding_container_profile_add_profile (cprof, theoraprof)); in GST_START_TEST()
1009 g_object_set (ebin, "profile", cprof, NULL); in GST_START_TEST()
1011 gst_encoding_profile_unref (cprof); in GST_START_TEST()
/third_party/gstreamer/gstplugins_base/tests/examples/encoding/
Dencoding.c142 GstEncodingContainerProfile *cprof = NULL; in create_profile() local
144 cprof = in create_profile()
149 gst_encoding_container_profile_add_profile (cprof, in create_profile()
153 gst_encoding_container_profile_add_profile (cprof, (GstEncodingProfile *) in create_profile()
180 return (GstEncodingProfile *) cprof; in create_profile()