mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
encoding-profile: Fix syntax in Example: Creating a profile
https://bugzilla.gnome.org/show_bug.cgi?id=645437
This commit is contained in:
parent
75897c716f
commit
0af549ace0
1 changed files with 2 additions and 2 deletions
|
@ -68,12 +68,12 @@
|
||||||
* gst_caps_unref (caps);
|
* gst_caps_unref (caps);
|
||||||
*
|
*
|
||||||
* caps = gst_caps_from_string("video/x-theora");
|
* caps = gst_caps_from_string("video/x-theora");
|
||||||
* sprof = gst_encoding_container_profile_add_profile(
|
* gst_encoding_container_profile_add_profile(prof,
|
||||||
* (GstEncodingProfile*) gst_encoding_video_profile_new(caps, NULL, NULL, 0));
|
* (GstEncodingProfile*) gst_encoding_video_profile_new(caps, NULL, NULL, 0));
|
||||||
* gst_caps_unref (caps);
|
* gst_caps_unref (caps);
|
||||||
*
|
*
|
||||||
* caps = gst_caps_from_string("audio/x-vorbis");
|
* caps = gst_caps_from_string("audio/x-vorbis");
|
||||||
* sprof = gst_encoding_container_profile_add_profile(
|
* gst_encoding_container_profile_add_profile(prof,
|
||||||
* (GstEncodingProfile*) gst_encoding_audio_profile_new(caps, NULL, NULL, 0));
|
* (GstEncodingProfile*) gst_encoding_audio_profile_new(caps, NULL, NULL, 0));
|
||||||
* gst_caps_unref (caps);
|
* gst_caps_unref (caps);
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue