decklink: Add XLR and RCA audio connection enums

This commit is contained in:
Sebastian Dröge 2015-01-08 12:23:53 +01:00
parent a35d5ae9b9
commit 34de6ad73b
2 changed files with 7 additions and 1 deletions

View file

@ -119,6 +119,10 @@ gst_decklink_audio_connection_get_type (void)
"SDI/HDMI embedded audio"},
{GST_DECKLINK_AUDIO_CONNECTION_AES_EBU, "aes", "AES/EBU input"},
{GST_DECKLINK_AUDIO_CONNECTION_ANALOG, "analog", "Analog input"},
{GST_DECKLINK_AUDIO_CONNECTION_ANALOG_XLR, "analog-xlr",
"Analog input (XLR)"},
{GST_DECKLINK_AUDIO_CONNECTION_ANALOG_RCA, "analog-rca",
"Analog input (RCA)"},
{0, NULL, NULL}
};

View file

@ -100,7 +100,9 @@ typedef enum {
GST_DECKLINK_AUDIO_CONNECTION_AUTO,
GST_DECKLINK_AUDIO_CONNECTION_EMBEDDED,
GST_DECKLINK_AUDIO_CONNECTION_AES_EBU,
GST_DECKLINK_AUDIO_CONNECTION_ANALOG
GST_DECKLINK_AUDIO_CONNECTION_ANALOG,
GST_DECKLINK_AUDIO_CONNECTION_ANALOG_XLR,
GST_DECKLINK_AUDIO_CONNECTION_ANALOG_RCA
} GstDecklinkAudioConnectionEnum;
#define GST_TYPE_DECKLINK_AUDIO_CONNECTION (gst_decklink_audio_connection_get_type ())
GType gst_decklink_audio_connection_get_type (void);