Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
ec04db28
Commit
ec04db28
authored
Jul 15, 2013
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Specify nosignal picture with an image file
parent
d1114a9d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
16 deletions
+65
-16
modules/video_output/decklink.cpp
modules/video_output/decklink.cpp
+65
-16
No files found.
modules/video_output/decklink.cpp
View file @
ec04db28
...
...
@@ -43,6 +43,7 @@
#include <vlc_picture_pool.h>
#include <vlc_block.h>
#include <vlc_image.h>
#include <vlc_atomic.h>
#include <vlc_aout.h>
#include <arpa/inet.h>
...
...
@@ -72,6 +73,9 @@ static const int pi_channels_maps[CHANNELS_MAX+1] =
"After this delay we black out the video."\
)
#define NOSIGNAL_IMAGE_TEXT N_("Picture to display on input signal loss.")
#define NOSIGNAL_IMAGE_LONGTEXT NOSIGNAL_IMAGE_TEXT
#define CARD_INDEX_TEXT N_("Output card")
#define CARD_INDEX_LONGTEXT N_(\
"DeckLink output card, if multiple exist. " \
...
...
@@ -132,6 +136,7 @@ struct vout_display_sys_t
picture_pool_t
*
pool
;
bool
tenbits
;
int
nosignal_delay
;
picture_t
*
pic_nosignal
;
};
/* Only one audio output module and one video output module
...
...
@@ -200,6 +205,8 @@ vlc_module_begin()
VIDEO_TENBITS_TEXT
,
VIDEO_TENBITS_LONGTEXT
,
true
)
add_integer
(
VIDEO_CFG_PREFIX
"nosignal-delay"
,
5
,
NOSIGNAL_INDEX_TEXT
,
NOSIGNAL_INDEX_LONGTEXT
,
true
)
add_loadfile
(
VIDEO_CFG_PREFIX
"nosignal-image"
,
NULL
,
NOSIGNAL_IMAGE_TEXT
,
NOSIGNAL_IMAGE_LONGTEXT
,
true
)
add_submodule
()
...
...
@@ -615,8 +622,13 @@ static void DisplayVideo(vout_display_t *vd, picture_t *picture, subpicture_t *)
if
(
!
picture
)
return
;
picture_t
*
orig_picture
=
picture
;
if
(
now
-
picture
->
date
>
sys
->
nosignal_delay
*
CLOCK_FREQ
)
{
msg_Dbg
(
vd
,
"no signal"
);
if
(
sys
->
pic_nosignal
)
{
picture
=
sys
->
pic_nosignal
;
}
else
{
if
(
sys
->
tenbits
)
{
// I422_10L
plane_t
*
y
=
&
picture
->
p
[
0
];
memset
(
y
->
p_pixels
,
0x0
,
y
->
i_lines
*
y
->
i_pitch
);
...
...
@@ -634,6 +646,7 @@ static void DisplayVideo(vout_display_t *vd, picture_t *picture, subpicture_t *)
picture
->
p
[
0
].
p_pixels
[
i
+
1
]
=
0
;
}
}
}
picture
->
date
=
now
;
}
...
...
@@ -695,7 +708,7 @@ static void DisplayVideo(vout_display_t *vd, picture_t *picture, subpicture_t *)
end:
if
(
pDLVideoFrame
)
pDLVideoFrame
->
Release
();
picture_Release
(
picture
);
picture_Release
(
orig_
picture
);
}
static
int
ControlVideo
(
vout_display_t
*
vd
,
int
query
,
va_list
args
)
...
...
@@ -724,9 +737,12 @@ static int OpenVideo(vlc_object_t *p_this)
sys
->
tenbits
=
var_InheritBool
(
p_this
,
VIDEO_CFG_PREFIX
"tenbits"
);
sys
->
nosignal_delay
=
var_InheritInteger
(
p_this
,
VIDEO_CFG_PREFIX
"nosignal-delay"
);
sys
->
pic_nosignal
=
NULL
;
decklink_sys
=
OpenDecklink
(
vd
);
if
(
!
decklink_sys
)
{
if
(
sys
->
pic_nosignal
)
picture_Release
(
sys
->
pic_nosignal
);
free
(
sys
);
return
VLC_EGENERIC
;
}
...
...
@@ -741,6 +757,36 @@ static int OpenVideo(vlc_object_t *p_this)
vd
->
fmt
.
i_width
=
decklink_sys
->
i_width
;
vd
->
fmt
.
i_height
=
decklink_sys
->
i_height
;
char
*
pic_file
=
var_InheritString
(
p_this
,
VIDEO_CFG_PREFIX
"nosignal-image"
);
if
(
pic_file
)
{
image_handler_t
*
img
=
image_HandlerCreate
(
p_this
);
if
(
!
img
)
{
msg_Err
(
p_this
,
"Could not create image converter"
);
}
else
{
video_format_t
in
,
dummy
;
video_format_Init
(
&
in
,
0
);
video_format_Setup
(
&
in
,
0
,
vd
->
fmt
.
i_width
,
vd
->
fmt
.
i_height
,
1
,
1
);
video_format_Init
(
&
dummy
,
0
);
picture_t
*
png
=
image_ReadUrl
(
img
,
pic_file
,
&
dummy
,
&
in
);
if
(
png
)
{
msg_Err
(
p_this
,
"Converting"
);
sys
->
pic_nosignal
=
image_Convert
(
img
,
png
,
&
in
,
&
vd
->
fmt
);
picture_Release
(
png
);
}
image_HandlerDelete
(
img
);
}
free
(
pic_file
);
if
(
!
sys
->
pic_nosignal
)
{
CloseVideo
(
p_this
);
msg_Err
(
p_this
,
"Could not create no signal picture"
);
return
VLC_EGENERIC
;
}
}
vd
->
info
.
has_hide_mouse
=
true
;
vd
->
pool
=
PoolVideo
;
vd
->
prepare
=
NULL
;
...
...
@@ -760,6 +806,9 @@ static void CloseVideo(vlc_object_t *p_this)
if
(
sys
->
pool
)
picture_pool_Delete
(
sys
->
pool
);
if
(
sys
->
pic_nosignal
)
picture_Release
(
sys
->
pic_nosignal
);
free
(
sys
);
ReleaseDLSys
(
p_this
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment