mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 16:19:59 +00:00
decklinkvideosrc: Also set the INTERLACED buffer flag on non-TFF buffers
This commit is contained in:
parent
7dbcddff61
commit
2b3a14ff4e
1 changed files with 2 additions and 0 deletions
|
@ -1330,6 +1330,8 @@ retry:
|
|||
if (mode->interlaced && mode->tff)
|
||||
GST_BUFFER_FLAG_SET (*buffer,
|
||||
GST_VIDEO_BUFFER_FLAG_TFF | GST_VIDEO_BUFFER_FLAG_INTERLACED);
|
||||
else if (mode->interlaced)
|
||||
GST_BUFFER_FLAG_SET (*buffer, GST_VIDEO_BUFFER_FLAG_INTERLACED);
|
||||
|
||||
GST_DEBUG_OBJECT (self,
|
||||
"Outputting buffer %p with timestamp %" GST_TIME_FORMAT " and duration %"
|
||||
|
|
Loading…
Reference in a new issue