From: Mathieu Duponchelle Date: Tue, 25 Nov 2014 23:28:35 +0000 (+0100) Subject: track: [API]: ges_track_update_restriction_caps. X-Git-Tag: 1.19.3~493^2~1295 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9544ce1d67da6990f0a1cae75774063ec37be9d;p=platform%2Fupstream%2Fgstreamer.git track: [API]: ges_track_update_restriction_caps. + And specify default restriction caps for audio and video tracks. + Add ges_track_set_restriction_caps to the sections, it was missing. https://bugzilla.gnome.org/show_bug.cgi?id=740726 --- diff --git a/ges/ges-video-track.c b/ges/ges-video-track.c index bb2be9c..1dcc11b 100644 --- a/ges/ges-video-track.c +++ b/ges/ges-video-track.c @@ -20,8 +20,26 @@ /** * SECTION: gesvideotrack * @short_description: A standard GESTrack for raw video + * + * Sane default properties to specify and fixate the output stream are + * set as restriction-caps. + * It is advised, to modify these properties, to use + * #ges_track_update_restriction_caps, setting them directly is + * possible through #ges_track_set_restriction_caps, but not specifying + * one of them can lead to negotiation issues, only use that function + * if you actually know what you're doing :) + * + * The default properties are: + * - width: 1280 + * - height: 720 + * - framerate: 25/1 + * - max-framerate: 25/1 + * - views: 1 (related to stereoscopy) */ +#define DEFAULT_RESTRICTION_CAPS "video/x-raw, width=1280, height=720, " \ + "framerate=25/1, max-framerate=25/1, views=1, interlace-mode=progressive" + #include "ges-video-track.h" #include "ges-smart-video-mixer.h" @@ -143,6 +161,8 @@ ges_video_track_new (void) ret = g_object_new (GES_TYPE_VIDEO_TRACK, "track-type", GES_TRACK_TYPE_VIDEO, "caps", caps, NULL); + ges_track_set_restriction_caps (GES_TRACK (ret), + gst_caps_from_string (DEFAULT_RESTRICTION_CAPS)); ges_track_set_create_element_for_gap_func (GES_TRACK (ret), create_element_for_raw_video_gap);