mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
reverse order
Original commit message from CVS: reverse order
This commit is contained in:
parent
153eaabd1a
commit
6a2a562f58
1 changed files with 9 additions and 8 deletions
|
@ -191,9 +191,10 @@ gst_play_pipeline_setup (GstPlay * play, GError ** error)
|
||||||
GST_PLAY_MAKE_OR_ERROR (identity, "identity", "identity", error);
|
GST_PLAY_MAKE_OR_ERROR (identity, "identity", "identity", error);
|
||||||
g_hash_table_insert (play->priv->elements, "identity", identity);
|
g_hash_table_insert (play->priv->elements, "identity", identity);
|
||||||
|
|
||||||
identity_cs = gst_element_factory_make ("ffmpegcolorspace", "identity_cs");
|
|
||||||
if (!GST_IS_ELEMENT (identity_cs)) {
|
|
||||||
identity_cs = gst_element_factory_make ("ffcolorspace", "identity_cs");
|
identity_cs = gst_element_factory_make ("ffcolorspace", "identity_cs");
|
||||||
|
if (!GST_IS_ELEMENT (identity_cs)) {
|
||||||
|
identity_cs =
|
||||||
|
gst_element_factory_make ("ffmpegcolorspace", "identity_cs");
|
||||||
if (!GST_IS_ELEMENT (identity_cs)) {
|
if (!GST_IS_ELEMENT (identity_cs)) {
|
||||||
identity_cs = gst_element_factory_make ("colorspace", "identity_cs");
|
identity_cs = gst_element_factory_make ("colorspace", "identity_cs");
|
||||||
if (!GST_IS_ELEMENT (identity_cs)) {
|
if (!GST_IS_ELEMENT (identity_cs)) {
|
||||||
|
@ -227,9 +228,9 @@ gst_play_pipeline_setup (GstPlay * play, GError ** error)
|
||||||
g_hash_table_insert (play->priv->elements, "vis_element", vis_element);
|
g_hash_table_insert (play->priv->elements, "vis_element", vis_element);
|
||||||
|
|
||||||
/* Colorspace conversion */
|
/* Colorspace conversion */
|
||||||
vis_cs = gst_element_factory_make ("ffmpegcolorspace", "vis_cs");
|
|
||||||
if (!GST_IS_ELEMENT (vis_cs)) {
|
|
||||||
vis_cs = gst_element_factory_make ("ffcolorspace", "vis_cs");
|
vis_cs = gst_element_factory_make ("ffcolorspace", "vis_cs");
|
||||||
|
if (!GST_IS_ELEMENT (vis_cs)) {
|
||||||
|
vis_cs = gst_element_factory_make ("ffmpegcolorspace", "vis_cs");
|
||||||
if (!GST_IS_ELEMENT (vis_cs)) {
|
if (!GST_IS_ELEMENT (vis_cs)) {
|
||||||
vis_cs = gst_element_factory_make ("colorspace", "vis_cs");
|
vis_cs = gst_element_factory_make ("colorspace", "vis_cs");
|
||||||
if (!GST_IS_ELEMENT (vis_cs)) {
|
if (!GST_IS_ELEMENT (vis_cs)) {
|
||||||
|
@ -262,9 +263,9 @@ gst_play_pipeline_setup (GstPlay * play, GError ** error)
|
||||||
g_hash_table_insert (play->priv->elements, "video_switch", video_switch);
|
g_hash_table_insert (play->priv->elements, "video_switch", video_switch);
|
||||||
|
|
||||||
/* Colorspace conversion */
|
/* Colorspace conversion */
|
||||||
video_cs = gst_element_factory_make ("ffmpegcolorspace", "video_cs");
|
|
||||||
if (!GST_IS_ELEMENT (video_cs)) {
|
|
||||||
video_cs = gst_element_factory_make ("ffcolorspace", "video_cs");
|
video_cs = gst_element_factory_make ("ffcolorspace", "video_cs");
|
||||||
|
if (!GST_IS_ELEMENT (video_cs)) {
|
||||||
|
video_cs = gst_element_factory_make ("ffmpegcolorspace", "video_cs");
|
||||||
if (!GST_IS_ELEMENT (video_cs)) {
|
if (!GST_IS_ELEMENT (video_cs)) {
|
||||||
video_cs = gst_element_factory_make ("colorspace", "video_cs");
|
video_cs = gst_element_factory_make ("colorspace", "video_cs");
|
||||||
if (!GST_IS_ELEMENT (video_cs)) {
|
if (!GST_IS_ELEMENT (video_cs)) {
|
||||||
|
@ -281,9 +282,9 @@ gst_play_pipeline_setup (GstPlay * play, GError ** error)
|
||||||
g_hash_table_insert (play->priv->elements, "video_balance", video_balance);
|
g_hash_table_insert (play->priv->elements, "video_balance", video_balance);
|
||||||
|
|
||||||
/* Colorspace conversion */
|
/* Colorspace conversion */
|
||||||
balance_cs = gst_element_factory_make ("ffmpegcolorspace", "balance_cs");
|
|
||||||
if (!GST_IS_ELEMENT (balance_cs)) {
|
|
||||||
balance_cs = gst_element_factory_make ("ffcolorspace", "balance_cs");
|
balance_cs = gst_element_factory_make ("ffcolorspace", "balance_cs");
|
||||||
|
if (!GST_IS_ELEMENT (balance_cs)) {
|
||||||
|
balance_cs = gst_element_factory_make ("ffmpegcolorspace", "balance_cs");
|
||||||
if (!GST_IS_ELEMENT (balance_cs)) {
|
if (!GST_IS_ELEMENT (balance_cs)) {
|
||||||
balance_cs = gst_element_factory_make ("colorspace", "balance_cs");
|
balance_cs = gst_element_factory_make ("colorspace", "balance_cs");
|
||||||
if (!GST_IS_ELEMENT (balance_cs)) {
|
if (!GST_IS_ELEMENT (balance_cs)) {
|
||||||
|
|
Loading…
Reference in a new issue