mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
decklinkvideosink: Use correct numerator for 29.97fps
It's not 0.2997fps. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2042>
This commit is contained in:
parent
6fe54f7f48
commit
02412620a8
1 changed files with 1 additions and 1 deletions
|
@ -829,7 +829,7 @@ convert_cea708_cc_data_cea708_cdp_internal (GstDecklinkVideoSink * self,
|
|||
gst_byte_writer_put_uint8_unchecked (&bw, 0x2f);
|
||||
} else if (mode->fps_n == 25 && mode->fps_d == 1) {
|
||||
gst_byte_writer_put_uint8_unchecked (&bw, 0x3f);
|
||||
} else if (mode->fps_n == 30 && mode->fps_d == 1001) {
|
||||
} else if (mode->fps_n == 30000 && mode->fps_d == 1001) {
|
||||
gst_byte_writer_put_uint8_unchecked (&bw, 0x4f);
|
||||
} else if (mode->fps_n == 30 && mode->fps_d == 1) {
|
||||
gst_byte_writer_put_uint8_unchecked (&bw, 0x5f);
|
||||
|
|
Loading…
Reference in a new issue