mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-04 22:48:54 +00:00
tests: integration: set restriction_caps on the video encoding profile
We need this cause now videomixer renegotiates downstream.
This commit is contained in:
parent
0daf523dfd
commit
667b33cb96
1 changed files with 5 additions and 2 deletions
|
@ -99,7 +99,7 @@ create_profile (const char *container, const char *container_preset,
|
|||
{
|
||||
GstEncodingContainerProfile *cprof = NULL;
|
||||
GstEncodingProfile *prof = NULL;
|
||||
GstCaps *caps;
|
||||
GstCaps *caps, *restriction_caps;
|
||||
|
||||
/* If we have both audio and video, we must have container */
|
||||
if (audio && video && !container)
|
||||
|
@ -130,9 +130,12 @@ create_profile (const char *container, const char *container_preset,
|
|||
gst_caps_unref (caps);
|
||||
}
|
||||
if (video) {
|
||||
restriction_caps =
|
||||
gst_caps_new_simple ("video/x-raw", "framerate", GST_TYPE_FRACTION, 30,
|
||||
1, "format", G_TYPE_STRING, "I420", NULL);
|
||||
caps = gst_caps_from_string (video);
|
||||
prof = (GstEncodingProfile *) gst_encoding_video_profile_new (caps, NULL,
|
||||
NULL, 0);
|
||||
restriction_caps, 0);
|
||||
if (!prof)
|
||||
goto beach;
|
||||
if (video_preset)
|
||||
|
|
Loading…
Reference in a new issue