Commit dd6a1ec3 authored by Rafaël Carré's avatar Rafaël Carré

decklink access: cosmetics

parent 637db5ea
...@@ -36,42 +36,42 @@ ...@@ -36,42 +36,42 @@
#include <DeckLinkAPI.h> #include <DeckLinkAPI.h>
#include <DeckLinkAPIDispatch.cpp> #include <DeckLinkAPIDispatch.cpp>
static int Open ( vlc_object_t * ); static int Open (vlc_object_t *);
static void Close( vlc_object_t * ); static void Close(vlc_object_t *);
#define CARD_INDEX_TEXT N_("Input card to use") #define CARD_INDEX_TEXT N_("Input card to use")
#define CARD_INDEX_LONGTEXT N_( \ #define CARD_INDEX_LONGTEXT N_( \
"DeckLink capture card to use, if multiple exist. " \ "DeckLink capture card to use, if multiple exist. " \
"The cards are numbered from 0." ) "The cards are numbered from 0.")
#define MODE_TEXT N_("Desired input video mode") #define MODE_TEXT N_("Desired input video mode")
#define MODE_LONGTEXT N_( \ #define MODE_LONGTEXT N_( \
"Desired input video mode for DeckLink captures. " \ "Desired input video mode for DeckLink captures. " \
"This value should be a FOURCC code in textual " \ "This value should be a FOURCC code in textual " \
"form, e.g. \"ntsc\"." ) "form, e.g. \"ntsc\".")
#define AUDIO_CONNECTION_TEXT N_("Audio connection") #define AUDIO_CONNECTION_TEXT N_("Audio connection")
#define AUDIO_CONNECTION_LONGTEXT N_( \ #define AUDIO_CONNECTION_LONGTEXT N_( \
"Audio connection to use for DeckLink captures. " \ "Audio connection to use for DeckLink captures. " \
"Valid choices: embedded, aesebu, analog. " \ "Valid choices: embedded, aesebu, analog. " \
"Leave blank for card default." ) "Leave blank for card default.")
#define RATE_TEXT N_("Audio sampling rate in Hz") #define RATE_TEXT N_("Audio sampling rate in Hz")
#define RATE_LONGTEXT N_( \ #define RATE_LONGTEXT N_( \
"Audio sampling rate (in hertz) for DeckLink captures. " \ "Audio sampling rate (in hertz) for DeckLink captures. " \
"0 disables audio input." ) "0 disables audio input.")
#define CHANNELS_TEXT N_("Number of audio channels") #define CHANNELS_TEXT N_("Number of audio channels")
#define CHANNELS_LONGTEXT N_( \ #define CHANNELS_LONGTEXT N_( \
"Number of input audio channels for DeckLink captures. " \ "Number of input audio channels for DeckLink captures. " \
"Must be 2, 8 or 16. 0 disables audio input." ) "Must be 2, 8 or 16. 0 disables audio input.")
#define VIDEO_CONNECTION_TEXT N_("Video connection") #define VIDEO_CONNECTION_TEXT N_("Video connection")
#define VIDEO_CONNECTION_LONGTEXT N_( \ #define VIDEO_CONNECTION_LONGTEXT N_( \
"Video connection to use for DeckLink captures. " \ "Video connection to use for DeckLink captures. " \
"Valid choices: sdi, hdmi, opticalsdi, component, " \ "Valid choices: sdi, hdmi, opticalsdi, component, " \
"composite, svideo. " \ "composite, svideo. " \
"Leave blank for card default." ) "Leave blank for card default.")
static const char *const ppsz_videoconns[] = { static const char *const ppsz_videoconns[] = {
"sdi", "hdmi", "opticalsdi", "component", "composite", "svideo" "sdi", "hdmi", "opticalsdi", "component", "composite", "svideo"
...@@ -88,87 +88,87 @@ static const char *const ppsz_audioconns_text[] = { ...@@ -88,87 +88,87 @@ static const char *const ppsz_audioconns_text[] = {
}; };
#define ASPECT_RATIO_TEXT N_("Aspect ratio") #define ASPECT_RATIO_TEXT N_("Aspect ratio")
#define ASPECT_RATIO_LONGTEXT N_( \ #define ASPECT_RATIO_LONGTEXT N_(\
"Aspect ratio (4:3, 16:9). Default assumes square pixels." ) "Aspect ratio (4:3, 16:9). Default assumes square pixels.")
vlc_module_begin () vlc_module_begin ()
set_shortname( N_("DeckLink") ) set_shortname(N_("DeckLink"))
set_description( N_("Blackmagic DeckLink SDI input") ) set_description(N_("Blackmagic DeckLink SDI input"))
set_category( CAT_INPUT ) set_category(CAT_INPUT)
set_subcategory( SUBCAT_INPUT_ACCESS ) set_subcategory(SUBCAT_INPUT_ACCESS)
add_integer( "decklink-card-index", 0, add_integer("decklink-card-index", 0,
CARD_INDEX_TEXT, CARD_INDEX_LONGTEXT, true ) CARD_INDEX_TEXT, CARD_INDEX_LONGTEXT, true)
add_string( "decklink-mode", "pal ", add_string("decklink-mode", "pal ",
MODE_TEXT, MODE_LONGTEXT, true ) MODE_TEXT, MODE_LONGTEXT, true)
add_string( "decklink-audio-connection", 0, add_string("decklink-audio-connection", 0,
AUDIO_CONNECTION_TEXT, AUDIO_CONNECTION_LONGTEXT, true ) AUDIO_CONNECTION_TEXT, AUDIO_CONNECTION_LONGTEXT, true)
change_string_list( ppsz_audioconns, ppsz_audioconns_text ) change_string_list(ppsz_audioconns, ppsz_audioconns_text)
add_integer( "decklink-audio-rate", 48000, add_integer("decklink-audio-rate", 48000,
RATE_TEXT, RATE_LONGTEXT, true ) RATE_TEXT, RATE_LONGTEXT, true)
add_integer( "decklink-audio-channels", 2, add_integer("decklink-audio-channels", 2,
CHANNELS_TEXT, CHANNELS_LONGTEXT, true ) CHANNELS_TEXT, CHANNELS_LONGTEXT, true)
add_string( "decklink-video-connection", 0, add_string("decklink-video-connection", 0,
VIDEO_CONNECTION_TEXT, VIDEO_CONNECTION_LONGTEXT, true ) VIDEO_CONNECTION_TEXT, VIDEO_CONNECTION_LONGTEXT, true)
change_string_list( ppsz_videoconns, ppsz_videoconns_text ) change_string_list(ppsz_videoconns, ppsz_videoconns_text)
add_string( "decklink-aspect-ratio", NULL, add_string("decklink-aspect-ratio", NULL,
ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, true ) ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, true)
add_shortcut( "decklink" ) add_shortcut("decklink")
set_capability( "access_demux", 10 ) set_capability("access_demux", 10)
set_callbacks( Open, Close ) set_callbacks(Open, Close)
vlc_module_end () vlc_module_end ()
static int Control( demux_t *, int, va_list ); static int Control(demux_t *, int, va_list);
class DeckLinkCaptureDelegate; class DeckLinkCaptureDelegate;
struct demux_sys_t struct demux_sys_t
{ {
IDeckLink *p_card; IDeckLink *card;
IDeckLinkInput *p_input; IDeckLinkInput *input;
DeckLinkCaptureDelegate *p_delegate; DeckLinkCaptureDelegate *delegate;
/* We need to hold onto the IDeckLinkConfiguration object, or our settings will not apply. /* We need to hold onto the IDeckLinkConfiguration object, or our settings will not apply.
See section 2.4.15 of the Blackmagic Decklink SDK documentation. */ See section 2.4.15 of the Blackmagic Decklink SDK documentation. */
IDeckLinkConfiguration *p_config; IDeckLinkConfiguration *config;
es_out_id_t *p_video_es; es_out_id_t *video_es;
es_out_id_t *p_audio_es; es_out_id_t *audio_es;
vlc_mutex_t pts_lock; vlc_mutex_t pts_lock;
int i_last_pts; /* protected by <pts_lock> */ int last_pts; /* protected by <pts_lock> */
uint32_t i_dominance_flags; uint32_t dominance_flags;
int i_channels; int channels;
}; };
class DeckLinkCaptureDelegate : public IDeckLinkInputCallback class DeckLinkCaptureDelegate : public IDeckLinkInputCallback
{ {
public: public:
DeckLinkCaptureDelegate( demux_t *p_demux ) : p_demux_(p_demux) DeckLinkCaptureDelegate(demux_t *demux) : demux_(demux)
{ {
vlc_atomic_set( &m_ref_, 1 ); vlc_atomic_set(&m_ref_, 1);
} }
virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; } virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; }
virtual ULONG STDMETHODCALLTYPE AddRef(void) virtual ULONG STDMETHODCALLTYPE AddRef(void)
{ {
return vlc_atomic_inc( &m_ref_ ); return vlc_atomic_inc(&m_ref_);
} }
virtual ULONG STDMETHODCALLTYPE Release(void) virtual ULONG STDMETHODCALLTYPE Release(void)
{ {
uintptr_t new_ref = vlc_atomic_dec( &m_ref_ ); uintptr_t new_ref = vlc_atomic_dec(&m_ref_);
if ( new_ref == 0 ) if (new_ref == 0)
delete this; delete this;
return new_ref; return new_ref;
} }
virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents, IDeckLinkDisplayMode*, BMDDetectedVideoInputFormatFlags) virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents, IDeckLinkDisplayMode*, BMDDetectedVideoInputFormatFlags)
{ {
msg_Dbg( p_demux_, "Video input format changed" ); msg_Dbg(demux_, "Video input format changed");
return S_OK; return S_OK;
} }
...@@ -176,249 +176,248 @@ public: ...@@ -176,249 +176,248 @@ public:
private: private:
vlc_atomic_t m_ref_; vlc_atomic_t m_ref_;
demux_t *p_demux_; demux_t *demux_;
}; };
HRESULT DeckLinkCaptureDelegate::VideoInputFrameArrived(IDeckLinkVideoInputFrame* videoFrame, IDeckLinkAudioInputPacket* audioFrame) HRESULT DeckLinkCaptureDelegate::VideoInputFrameArrived(IDeckLinkVideoInputFrame* videoFrame, IDeckLinkAudioInputPacket* audioFrame)
{ {
demux_sys_t *p_sys = p_demux_->p_sys; demux_sys_t *sys = demux_->p_sys;
block_t *p_video_frame = NULL; block_t *video_frame = NULL;
block_t *p_audio_frame = NULL; block_t *audio_frame = NULL;
if( videoFrame ) if (videoFrame)
{ {
if( videoFrame->GetFlags() & bmdFrameHasNoInputSource ) if (videoFrame->GetFlags() & bmdFrameHasNoInputSource)
{ {
msg_Warn( p_demux_, "No input signal detected" ); msg_Warn(demux_, "No input signal detected");
return S_OK; return S_OK;
} }
const int i_width = videoFrame->GetWidth(); const int width = videoFrame->GetWidth();
const int i_height = videoFrame->GetHeight(); const int height = videoFrame->GetHeight();
const int i_stride = videoFrame->GetRowBytes(); const int stride = videoFrame->GetRowBytes();
const int i_bpp = 2; const int bpp = 2;
p_video_frame = block_New( p_demux_, i_width * i_height * i_bpp ); video_frame = block_New(demux_, width * height * bpp);
if( !p_video_frame ) if (!video_frame)
{ {
msg_Err( p_demux_, "Could not allocate memory for video frame" ); msg_Err(demux_, "Could not allocate memory for video frame");
return S_OK;
} }
void *frame_bytes; void *frame_bytes;
videoFrame->GetBytes( &frame_bytes ); videoFrame->GetBytes(&frame_bytes);
for( int y = 0; y < i_height; ++y ) for (int y = 0; y < height; ++y)
{ {
const uint8_t *src = (const uint8_t *)frame_bytes + i_stride * y; const uint8_t *src = (const uint8_t *)frame_bytes + stride * y;
uint8_t *dst = p_video_frame->p_buffer + i_width * i_bpp * y; uint8_t *dst = video_frame->p_buffer + width * bpp * y;
memcpy( dst, src, i_width * i_bpp ); memcpy(dst, src, width * bpp);
} }
BMDTimeValue stream_time, frame_duration; BMDTimeValue stream_time, frame_duration;
videoFrame->GetStreamTime( &stream_time, &frame_duration, CLOCK_FREQ ); videoFrame->GetStreamTime(&stream_time, &frame_duration, CLOCK_FREQ);
p_video_frame->i_flags = BLOCK_FLAG_TYPE_I | p_sys->i_dominance_flags; video_frame->i_flags = BLOCK_FLAG_TYPE_I | sys->dominance_flags;
p_video_frame->i_pts = p_video_frame->i_dts = VLC_TS_0 + stream_time; video_frame->i_pts = video_frame->i_dts = VLC_TS_0 + stream_time;
vlc_mutex_lock( &p_sys->pts_lock ); vlc_mutex_lock(&sys->pts_lock);
if( p_video_frame->i_pts > p_sys->i_last_pts ) if (video_frame->i_pts > sys->last_pts)
p_sys->i_last_pts = p_video_frame->i_pts; sys->last_pts = video_frame->i_pts;
vlc_mutex_unlock( &p_sys->pts_lock ); vlc_mutex_unlock(&sys->pts_lock);
es_out_Control( p_demux_->out, ES_OUT_SET_PCR, p_video_frame->i_pts ); es_out_Control(demux_->out, ES_OUT_SET_PCR, video_frame->i_pts);
es_out_Send( p_demux_->out, p_sys->p_video_es, p_video_frame ); es_out_Send(demux_->out, sys->video_es, video_frame);
} }
if( audioFrame ) if (audioFrame)
{ {
const int i_bytes = audioFrame->GetSampleFrameCount() * sizeof(int16_t) * p_sys->i_channels; const int bytes = audioFrame->GetSampleFrameCount() * sizeof(int16_t) * sys->channels;
p_audio_frame = block_New( p_demux_, i_bytes ); audio_frame = block_New(demux_, bytes);
if( !p_audio_frame ) if (!audio_frame)
{ {
msg_Err( p_demux_, "Could not allocate memory for audio frame" ); msg_Err(demux_, "Could not allocate memory for audio frame");
if( p_video_frame ) if (video_frame)
block_Release( p_video_frame ); block_Release(video_frame);
return S_OK; return S_OK;
} }
void *frame_bytes; void *frame_bytes;
audioFrame->GetBytes( &frame_bytes ); audioFrame->GetBytes(&frame_bytes);
memcpy( p_audio_frame->p_buffer, frame_bytes, i_bytes ); memcpy(audio_frame->p_buffer, frame_bytes, bytes);
BMDTimeValue packet_time; BMDTimeValue packet_time;
audioFrame->GetPacketTime( &packet_time, CLOCK_FREQ ); audioFrame->GetPacketTime(&packet_time, CLOCK_FREQ);
p_audio_frame->i_pts = p_audio_frame->i_dts = VLC_TS_0 + packet_time; audio_frame->i_pts = audio_frame->i_dts = VLC_TS_0 + packet_time;
vlc_mutex_lock( &p_sys->pts_lock ); vlc_mutex_lock(&sys->pts_lock);
if( p_audio_frame->i_pts > p_sys->i_last_pts ) if (audio_frame->i_pts > sys->last_pts)
p_sys->i_last_pts = p_audio_frame->i_pts; sys->last_pts = audio_frame->i_pts;
vlc_mutex_unlock( &p_sys->pts_lock ); vlc_mutex_unlock(&sys->pts_lock);
if( p_audio_frame->i_pts > p_sys->i_last_pts ) if (audio_frame->i_pts > sys->last_pts)
es_out_Control( p_demux_->out, ES_OUT_SET_PCR, p_audio_frame->i_pts ); es_out_Control(demux_->out, ES_OUT_SET_PCR, audio_frame->i_pts);
es_out_Send( p_demux_->out, p_sys->p_audio_es, p_audio_frame ); es_out_Send(demux_->out, sys->audio_es, audio_frame);
} }
return S_OK; return S_OK;
} }
static int Open( vlc_object_t *p_this ) static int Open(vlc_object_t *p_this)
{ {
demux_t *p_demux = (demux_t*)p_this; demux_t *demux = (demux_t*)p_this;
demux_sys_t *p_sys; demux_sys_t *sys;
int ret = VLC_EGENERIC; int ret = VLC_EGENERIC;
char *psz_aspect; char *aspect;
char *psz_display_mode = NULL; char *display_mode = NULL;
char *psz_video_connection = NULL; char *video_connection = NULL;
char *psz_audio_connection = NULL; char *audio_connection = NULL;
bool b_found_mode; bool b_found_mode;
int i_card_index; int card_index;
int i_width, i_height, i_fps_num, i_fps_den; int width, height, fps_num, fps_den;
int i_rate; int rate;
unsigned u_aspect_num, u_aspect_den; unsigned aspect_num, aspect_den;
/* Only when selected */ /* Only when selected */
if( *p_demux->psz_access == '\0' ) if (*demux->psz_access == '\0')
return VLC_EGENERIC; return VLC_EGENERIC;
/* Set up p_demux */ /* Set up demux */
p_demux->pf_demux = NULL; demux->pf_demux = NULL;
p_demux->pf_control = Control; demux->pf_control = Control;
p_demux->info.i_update = 0; demux->info.i_update = 0;
p_demux->info.i_title = 0; demux->info.i_title = 0;
p_demux->info.i_seekpoint = 0; demux->info.i_seekpoint = 0;
p_demux->p_sys = p_sys = (demux_sys_t*)calloc( 1, sizeof( demux_sys_t ) ); demux->p_sys = sys = (demux_sys_t*)calloc(1, sizeof(demux_sys_t));
if( !p_sys ) if (!sys)
return VLC_ENOMEM; return VLC_ENOMEM;
vlc_mutex_init( &p_sys->pts_lock ); vlc_mutex_init(&sys->pts_lock);
IDeckLinkDisplayModeIterator *p_display_iterator = NULL; IDeckLinkDisplayModeIterator *display_iterator = NULL;
IDeckLinkIterator *decklink_iterator = CreateDeckLinkIteratorInstance(); IDeckLinkIterator *decklink_iterator = CreateDeckLinkIteratorInstance();
if( !decklink_iterator ) if (!decklink_iterator)
{ {
msg_Err( p_demux, "DeckLink drivers not found." ); msg_Err(demux, "DeckLink drivers not found.");
goto finish; goto finish;
} }
HRESULT result; HRESULT result;
i_card_index = var_InheritInteger( p_demux, "decklink-card-index" ); card_index = var_InheritInteger(demux, "decklink-card-index");
if( i_card_index < 0 ) if (card_index < 0)
{ {
msg_Err( p_demux, "Invalid card index %d", i_card_index ); msg_Err(demux, "Invalid card index %d", card_index);
goto finish; goto finish;
} }
for( int i = 0; i <= i_card_index; ++i ) for (int i = 0; i <= card_index; ++i)
{ {
if( p_sys->p_card ) if (sys->card)
p_sys->p_card->Release(); sys->card->Release();
result = decklink_iterator->Next( &p_sys->p_card ); result = decklink_iterator->Next(&sys->card);
if( result != S_OK ) if (result != S_OK)
break; break;
} }
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "DeckLink PCI card %d not found", i_card_index ); msg_Err(demux, "DeckLink PCI card %d not found", card_index);
goto finish; goto finish;
} }
const char *psz_model_name; const char *model_name;
result = p_sys->p_card->GetModelName( &psz_model_name ); result = sys->card->GetModelName(&model_name);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Could not get model name" ); msg_Err(demux, "Could not get model name");
goto finish; goto finish;
} }
msg_Dbg( p_demux, "Opened DeckLink PCI card %d (%s)", i_card_index, psz_model_name ); msg_Dbg(demux, "Opened DeckLink PCI card %d (%s)", card_index, model_name);
if( p_sys->p_card->QueryInterface( IID_IDeckLinkInput, (void**)&p_sys->p_input) != S_OK ) if (sys->card->QueryInterface(IID_IDeckLinkInput, (void**)&sys->input) != S_OK)
{ {
msg_Err( p_demux, "Card has no inputs" ); msg_Err(demux, "Card has no inputs");
goto finish; goto finish;
} }
/* Set up the video and audio sources. */ /* Set up the video and audio sources. */
if( p_sys->p_card->QueryInterface( IID_IDeckLinkConfiguration, (void**)&p_sys->p_config) != S_OK ) if (sys->card->QueryInterface(IID_IDeckLinkConfiguration, (void**)&sys->config) != S_OK)
{ {
msg_Err( p_demux, "Failed to get configuration interface" ); msg_Err(demux, "Failed to get configuration interface");
goto finish; goto finish;
} }
psz_video_connection = var_InheritString( p_demux, "decklink-video-connection" ); video_connection = var_InheritString(demux, "decklink-video-connection");
if( psz_video_connection ) if (video_connection)
{ {
BMDVideoConnection conn; BMDVideoConnection conn;
if ( !strcmp( psz_video_connection, "sdi" ) ) if (!strcmp(video_connection, "sdi"))
conn = bmdVideoConnectionSDI; conn = bmdVideoConnectionSDI;
else if ( !strcmp( psz_video_connection, "hdmi" ) ) else if (!strcmp(video_connection, "hdmi"))
conn = bmdVideoConnectionHDMI; conn = bmdVideoConnectionHDMI;
else if ( !strcmp( psz_video_connection, "opticalsdi" ) ) else if (!strcmp(video_connection, "opticalsdi"))
conn = bmdVideoConnectionOpticalSDI; conn = bmdVideoConnectionOpticalSDI;
else if ( !strcmp( psz_video_connection, "component" ) ) else if (!strcmp(video_connection, "component"))
conn = bmdVideoConnectionComponent; conn = bmdVideoConnectionComponent;
else if ( !strcmp( psz_video_connection, "composite" ) ) else if (!strcmp(video_connection, "composite"))
conn = bmdVideoConnectionComposite; conn = bmdVideoConnectionComposite;
else if ( !strcmp( psz_video_connection, "svideo" ) ) else if (!strcmp(video_connection, "svideo"))
conn = bmdVideoConnectionSVideo; conn = bmdVideoConnectionSVideo;
else else
{ {
msg_Err( p_demux, "Invalid --decklink-video-connection specified; choose one of " \ msg_Err(demux, "Invalid --decklink-video-connection specified; choose one of " \
"sdi, hdmi, opticalsdi, component, composite, or svideo." ); "sdi, hdmi, opticalsdi, component, composite, or svideo.");
goto finish; goto finish;
} }
msg_Dbg( p_demux, "Setting video input connection to 0x%x", conn); msg_Dbg(demux, "Setting video input connection to 0x%x", conn);
result = p_sys->p_config->SetInt( bmdDeckLinkConfigVideoInputConnection, conn ); result = sys->config->SetInt(bmdDeckLinkConfigVideoInputConnection, conn);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Failed to set video input connection" ); msg_Err(demux, "Failed to set video input connection");
goto finish; goto finish;
} }
} }
psz_audio_connection = var_CreateGetNonEmptyString( p_demux, "decklink-audio-connection" ); audio_connection = var_CreateGetNonEmptyString(demux, "decklink-audio-connection");
if( psz_audio_connection ) if (audio_connection)
{ {
BMDAudioConnection conn; BMDAudioConnection conn;
if ( !strcmp( psz_audio_connection, "embedded" ) ) if (!strcmp(audio_connection, "embedded"))
conn = bmdAudioConnectionEmbedded; conn = bmdAudioConnectionEmbedded;
else if ( !strcmp( psz_audio_connection, "aesebu" ) ) else if (!strcmp(audio_connection, "aesebu"))
conn = bmdAudioConnectionAESEBU; conn = bmdAudioConnectionAESEBU;
else if ( !strcmp( psz_audio_connection, "analog" ) ) else if (!strcmp(audio_connection, "analog"))
conn = bmdAudioConnectionAnalog; conn = bmdAudioConnectionAnalog;
else else
{ {
msg_Err( p_demux, "Invalid --decklink-audio-connection specified; choose one of " \ msg_Err(demux, "Invalid --decklink-audio-connection specified; choose one of " \
"embedded, aesebu, or analog." ); "embedded, aesebu, or analog.");
goto finish; goto finish;
} }
msg_Dbg( p_demux, "Setting audio input format to 0x%x", conn); msg_Dbg(demux, "Setting audio input format to 0x%x", conn);
result = p_sys->p_config->SetInt( bmdDeckLinkConfigAudioInputConnection, conn ); result = sys->config->SetInt(bmdDeckLinkConfigAudioInputConnection, conn);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Failed to set audio input connection" ); msg_Err(demux, "Failed to set audio input connection");
goto finish; goto finish;
} }
} }
/* Get the list of display modes. */ /* Get the list of display modes. */
result = p_sys->p_input->GetDisplayModeIterator( &p_display_iterator ); result = sys->input->GetDisplayModeIterator(&display_iterator);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Failed to enumerate display modes" ); msg_Err(demux, "Failed to enumerate display modes");
goto finish; goto finish;
} }
psz_display_mode = var_CreateGetNonEmptyString( p_demux, "decklink-mode" ); display_mode = var_CreateGetNonEmptyString(demux, "decklink-mode");
if( !psz_display_mode || strlen( psz_display_mode ) > 4 ) { if (!display_mode || strlen(display_mode) > 4) {
msg_Err( p_demux, "Missing or invalid --decklink-mode string" ); msg_Err(demux, "Missing or invalid --decklink-mode string");
goto finish; goto finish;
} }
...@@ -428,226 +427,225 @@ static int Open( vlc_object_t *p_this ) ...@@ -428,226 +427,225 @@ static int Open( vlc_object_t *p_this )
*/ */
char sz_display_mode_padded[5]; char sz_display_mode_padded[5];
strcpy(sz_display_mode_padded, " "); strcpy(sz_display_mode_padded, " ");
for( int i = 0; i < strlen( psz_display_mode ); ++i ) for (int i = 0; i < strlen(display_mode); ++i)
sz_display_mode_padded[i] = psz_display_mode[i]; sz_display_mode_padded[i] = display_mode[i];
BMDDisplayMode wanted_mode_id; BMDDisplayMode wanted_mode_id;
memcpy( &wanted_mode_id, &sz_display_mode_padded, sizeof(wanted_mode_id) ); memcpy(&wanted_mode_id, &sz_display_mode_padded, sizeof(wanted_mode_id));
b_found_mode = false; b_found_mode = false;
for (;;) for (;;)
{ {
IDeckLinkDisplayMode *p_display_mode; IDeckLinkDisplayMode *display_mode;
result = p_display_iterator->Next( &p_display_mode ); result = display_iterator->Next(&display_mode);
if( result != S_OK || !p_display_mode ) if (result != S_OK || !display_mode)
break; break;
char sz_mode_id_text[5] = {0}; char sz_mode_id_text[5] = {0};
BMDDisplayMode mode_id = ntohl( p_display_mode->GetDisplayMode() ); BMDDisplayMode mode_id = ntohl(display_mode->GetDisplayMode());
memcpy( sz_mode_id_text, &mode_id, sizeof(mode_id) ); memcpy(sz_mode_id_text, &mode_id, sizeof(mode_id));
const char *psz_mode_name; const char *mode_name;
result = p_display_mode->GetName( &psz_mode_name ); result = display_mode->GetName(&mode_name);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Failed to get display mode name" ); msg_Err(demux, "Failed to get display mode name");
p_display_mode->Release(); display_mode->Release();
goto finish; goto finish;
} }
BMDTimeValue frame_duration, time_scale; BMDTimeValue frame_duration, time_scale;
result = p_display_mode->GetFrameRate( &frame_duration, &time_scale ); result = display_mode->GetFrameRate(&frame_duration, &time_scale);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Failed to get frame rate" ); msg_Err(demux, "Failed to get frame rate");
p_display_mode->Release(); display_mode->Release();
goto finish; goto finish;
} }
const char *psz_field_dominance; const char *field_dominance;
uint32_t i_dominance_flags = 0; uint32_t dominance_flags = 0;
switch( p_display_mode->GetFieldDominance() ) switch(display_mode->GetFieldDominance())
{ {
case bmdProgressiveFrame: case bmdProgressiveFrame:
psz_field_dominance = ""; field_dominance = "";
break; break;
case bmdProgressiveSegmentedFrame: case bmdProgressiveSegmentedFrame:
psz_field_dominance = ", segmented"; field_dominance = ", segmented";
break; break;
case bmdLowerFieldFirst: case bmdLowerFieldFirst:
psz_field_dominance = ", interlaced [BFF]"; field_dominance = ", interlaced [BFF]";
i_dominance_flags = BLOCK_FLAG_BOTTOM_FIELD_FIRST; dominance_flags = BLOCK_FLAG_BOTTOM_FIELD_FIRST;
break; break;
case bmdUpperFieldFirst: case bmdUpperFieldFirst:
psz_field_dominance = ", interlaced [TFF]"; field_dominance = ", interlaced [TFF]";
i_dominance_flags = BLOCK_FLAG_TOP_FIELD_FIRST; dominance_flags = BLOCK_FLAG_TOP_FIELD_FIRST;
break; break;
case bmdUnknownFieldDominance: case bmdUnknownFieldDominance:
default: default:
psz_field_dominance = ", unknown field dominance"; field_dominance = ", unknown field dominance";
break; break;
} }
msg_Dbg( p_demux, "Found mode '%s': %s (%dx%d, %.3f fps%s)", msg_Dbg(demux, "Found mode '%s': %s (%dx%d, %.3f fps%s)",
sz_mode_id_text, psz_mode_name, sz_mode_id_text, mode_name,
p_display_mode->GetWidth(), p_display_mode->GetHeight(), display_mode->GetWidth(), display_mode->GetHeight(),
double(time_scale) / frame_duration, psz_field_dominance ); double(time_scale) / frame_duration, field_dominance);
if( wanted_mode_id == mode_id ) if (wanted_mode_id == mode_id)
{ {
b_found_mode = true; b_found_mode = true;
i_width = p_display_mode->GetWidth(); width = display_mode->GetWidth();
i_height = p_display_mode->GetHeight(); height = display_mode->GetHeight();
i_fps_num = time_scale; fps_num = time_scale;
i_fps_den = frame_duration; fps_den = frame_duration;
p_sys->i_dominance_flags = i_dominance_flags; sys->dominance_flags = dominance_flags;
} }
p_display_mode->Release(); display_mode->Release();
} }
if( !b_found_mode ) if (!b_found_mode)
{ {
msg_Err( p_demux, "Unknown video mode specified. " msg_Err(demux, "Unknown video mode specified. "
"Run VLC with -vv to get a list of supported modes." ); "Run VLC with -vv to get a list of supported modes.");
goto finish; goto finish;
} }
result = p_sys->p_input->EnableVideoInput( htonl( wanted_mode_id ), bmdFormat8BitYUV, 0 ); result = sys->input->EnableVideoInput(htonl(wanted_mode_id), bmdFormat8BitYUV, 0);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Failed to enable video input" ); msg_Err(demux, "Failed to enable video input");
goto finish; goto finish;
} }
/* Set up audio. */ /* Set up audio. */
p_sys->i_channels = var_InheritInteger( p_demux, "decklink-audio-channels" ); sys->channels = var_InheritInteger(demux, "decklink-audio-channels");
i_rate = var_InheritInteger( p_demux, "decklink-audio-rate" ); rate = var_InheritInteger(demux, "decklink-audio-rate");
if( i_rate > 0 && p_sys->i_channels > 0 ) if (rate > 0 && sys->channels > 0)
{ {
result = p_sys->p_input->EnableAudioInput( i_rate, bmdAudioSampleType16bitInteger, p_sys->i_channels ); result = sys->input->EnableAudioInput(rate, bmdAudioSampleType16bitInteger, sys->channels);
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Failed to enable audio input" ); msg_Err(demux, "Failed to enable audio input");
goto finish; goto finish;
} }
} }
p_sys->p_delegate = new DeckLinkCaptureDelegate( p_demux ); sys->delegate = new DeckLinkCaptureDelegate(demux);
p_sys->p_input->SetCallback( p_sys->p_delegate ); sys->input->SetCallback(sys->delegate);
result = p_sys->p_input->StartStreams(); result = sys->input->StartStreams();
if( result != S_OK ) if (result != S_OK)
{ {
msg_Err( p_demux, "Could not start streaming from SDI card. This could be caused " msg_Err(demux, "Could not start streaming from SDI card. This could be caused "
"by invalid video mode or flags, access denied, or card already in use." ); "by invalid video mode or flags, access denied, or card already in use.");
goto finish; goto finish;
} }
/* Declare elementary streams */ /* Declare elementary streams */
es_format_t video_fmt; es_format_t video_fmt;
es_format_Init( &video_fmt, VIDEO_ES, VLC_CODEC_UYVY ); es_format_Init(&video_fmt, VIDEO_ES, VLC_CODEC_UYVY);
video_fmt.video.i_width = i_width; video_fmt.video.i_width = width;
video_fmt.video.i_height = i_height; video_fmt.video.i_height = height;
video_fmt.video.i_sar_num = 1; video_fmt.video.i_sar_num = 1;
video_fmt.video.i_sar_den = 1; video_fmt.video.i_sar_den = 1;
video_fmt.video.i_frame_rate = i_fps_num; video_fmt.video.i_frame_rate = fps_num;
video_fmt.video.i_frame_rate_base = i_fps_den; video_fmt.video.i_frame_rate_base = fps_den;
video_fmt.i_bitrate = video_fmt.video.i_width * video_fmt.video.i_height * video_fmt.video.i_frame_rate * 2 * 8; video_fmt.i_bitrate = video_fmt.video.i_width * video_fmt.video.i_height * video_fmt.video.i_frame_rate * 2 * 8;
if ( !var_InheritURational( p_demux, &u_aspect_num, &u_aspect_den, "decklink-aspect-ratio" ) && if (!var_InheritURational(demux, &aspect_num, &aspect_den, "decklink-aspect-ratio") &&
u_aspect_num > 0 && u_aspect_den > 0 ) { aspect_num > 0 && aspect_den > 0) {
video_fmt.video.i_sar_num = u_aspect_num * video_fmt.video.i_height; video_fmt.video.i_sar_num = aspect_num * video_fmt.video.i_height;
video_fmt.video.i_sar_den = u_aspect_den * video_fmt.video.i_width; video_fmt.video.i_sar_den = aspect_den * video_fmt.video.i_width;
} }
msg_Dbg( p_demux, "added new video es %4.4s %dx%d", msg_Dbg(demux, "added new video es %4.4s %dx%d",
(char*)&video_fmt.i_codec, video_fmt.video.i_width, video_fmt.video.i_height ); (char*)&video_fmt.i_codec, video_fmt.video.i_width, video_fmt.video.i_height);
p_sys->p_video_es = es_out_Add( p_demux->out, &video_fmt ); sys->video_es = es_out_Add(demux->out, &video_fmt);
es_format_t audio_fmt; es_format_t audio_fmt;
es_format_Init( &audio_fmt, AUDIO_ES, VLC_CODEC_S16N ); es_format_Init(&audio_fmt, AUDIO_ES, VLC_CODEC_S16N);
audio_fmt.audio.i_channels = p_sys->i_channels; audio_fmt.audio.i_channels = sys->channels;
audio_fmt.audio.i_rate = i_rate; audio_fmt.audio.i_rate = rate;
audio_fmt.audio.i_bitspersample = 16; audio_fmt.audio.i_bitspersample = 16;
audio_fmt.audio.i_blockalign = audio_fmt.audio.i_channels * audio_fmt.audio.i_bitspersample / 8; audio_fmt.audio.i_blockalign = audio_fmt.audio.i_channels * audio_fmt.audio.i_bitspersample / 8;
audio_fmt.i_bitrate = audio_fmt.audio.i_channels * audio_fmt.audio.i_rate * audio_fmt.audio.i_bitspersample; audio_fmt.i_bitrate = audio_fmt.audio.i_channels * audio_fmt.audio.i_rate * audio_fmt.audio.i_bitspersample;
msg_Dbg( p_demux, "added new audio es %4.4s %dHz %dbpp %dch", msg_Dbg(demux, "added new audio es %4.4s %dHz %dbpp %dch",
(char*)&audio_fmt.i_codec, audio_fmt.audio.i_rate, audio_fmt.audio.i_bitspersample, audio_fmt.audio.i_channels); (char*)&audio_fmt.i_codec, audio_fmt.audio.i_rate, audio_fmt.audio.i_bitspersample, audio_fmt.audio.i_channels);
p_sys->p_audio_es = es_out_Add( p_demux->out, &audio_fmt ); sys->audio_es = es_out_Add(demux->out, &audio_fmt);
ret = VLC_SUCCESS; ret = VLC_SUCCESS;
finish: finish:
if( decklink_iterator ) if (decklink_iterator)
decklink_iterator->Release(); decklink_iterator->Release();
free( psz_video_connection ); free(video_connection);
free( psz_audio_connection ); free(audio_connection);
free( psz_display_mode ); free(display_mode);
if( p_display_iterator ) if (display_iterator)
p_display_iterator->Release(); display_iterator->Release();
if( ret != VLC_SUCCESS ) if (ret != VLC_SUCCESS)
Close( p_this ); Close(p_this);
return ret; return ret;
} }
static void Close( vlc_object_t *p_this ) static void Close(vlc_object_t *p_this)
{ {
demux_t *p_demux = (demux_t *)p_this; demux_t *demux = (demux_t *)p_this;
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *sys = demux->p_sys;
if( p_sys->p_config ) if (sys->config)
p_sys->p_config->Release(); sys->config->Release();
if( p_sys->p_input ) if (sys->input)
{ {
p_sys->p_input->StopStreams(); sys->input->StopStreams();
p_sys->p_input->Release(); sys->input->Release();
} }
if( p_sys->p_card ) if (sys->card)
p_sys->p_card->Release(); sys->card->Release();
if( p_sys->p_delegate ) if (sys->delegate)
p_sys->p_delegate->Release(); sys->delegate->Release();
vlc_mutex_destroy( &p_sys->pts_lock ); vlc_mutex_destroy(&sys->pts_lock);
free( p_sys ); free(sys);
} }
static int Control( demux_t *p_demux, int i_query, va_list args ) static int Control(demux_t *demux, int query, va_list args)
{ {
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *sys = demux->p_sys;
bool *pb; bool *pb;
int64_t *pi64; int64_t *pi64;
switch( i_query ) switch(query)
{ {
/* Special for access_demux */ /* Special for access_demux */
case DEMUX_CAN_PAUSE: case DEMUX_CAN_PAUSE:
case DEMUX_CAN_SEEK: case DEMUX_CAN_SEEK:
case DEMUX_CAN_CONTROL_PACE: case DEMUX_CAN_CONTROL_PACE:
pb = (bool*)va_arg( args, bool * ); pb = (bool*)va_arg(args, bool *);
*pb = false; *pb = false;
return VLC_SUCCESS; return VLC_SUCCESS;
case DEMUX_GET_PTS_DELAY: case DEMUX_GET_PTS_DELAY:
pi64 = (int64_t*)va_arg( args, int64_t * ); pi64 = (int64_t*)va_arg(args, int64_t *);
*pi64 = *pi64 = INT64_C(1000) * var_InheritInteger(demux, "live-caching");
INT64_C(1000) * var_InheritInteger( p_demux, "live-caching" );
return VLC_SUCCESS; return VLC_SUCCESS;
case DEMUX_GET_TIME: case DEMUX_GET_TIME:
pi64 = (int64_t*)va_arg( args, int64_t * ); pi64 = (int64_t*)va_arg(args, int64_t *);
vlc_mutex_lock( &p_sys->pts_lock ); vlc_mutex_lock(&sys->pts_lock);
*pi64 = p_sys->i_last_pts; *pi64 = sys->last_pts;
vlc_mutex_unlock( &p_sys->pts_lock ); vlc_mutex_unlock(&sys->pts_lock);
return VLC_SUCCESS; return VLC_SUCCESS;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment