Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-plugins-bad
Commits
81715600
Commit
81715600
authored
Feb 12, 2019
by
Sebastian Dröge
🍵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decklinkvideosink: Use S334_EIA_608 instead of S334_EIA_708 for CEA608 output
parent
173f11e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sys/decklink/gstdecklinkvideosink.cpp
sys/decklink/gstdecklinkvideosink.cpp
+4
-4
No files found.
sys/decklink/gstdecklinkvideosink.cpp
View file @
81715600
...
...
@@ -910,8 +910,8 @@ gst_decklink_video_sink_prepare (GstBaseSink * bsink, GstBuffer * buffer)
if
(
!
gst_video_vbi_encoder_add_ancillary
(
self
->
vbiencoder
,
FALSE
,
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
7
08
>>
8
,
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
7
08
&
0xff
,
data
,
3
))
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
6
08
>>
8
,
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
6
08
&
0xff
,
data
,
3
))
GST_WARNING_OBJECT
(
self
,
"Couldn't add meta to ancillary data"
);
got_captions
=
TRUE
;
...
...
@@ -921,8 +921,8 @@ gst_decklink_video_sink_prepare (GstBaseSink * bsink, GstBuffer * buffer)
case
GST_VIDEO_CAPTION_TYPE_CEA608_S334_1A
:{
if
(
!
gst_video_vbi_encoder_add_ancillary
(
self
->
vbiencoder
,
FALSE
,
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
7
08
>>
8
,
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
7
08
&
0xff
,
cc_meta
->
data
,
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
6
08
>>
8
,
GST_VIDEO_ANCILLARY_DID16_S334_EIA_
6
08
&
0xff
,
cc_meta
->
data
,
cc_meta
->
size
))
GST_WARNING_OBJECT
(
self
,
"Couldn't add meta to ancillary data"
);
...
...
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