mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
886cfecd36
... and add more encoding options. QSV API supports dynamic bitrate change without IDR insertion. That's more efficient way of runtime encoding option update than starting from new sequence with IDR per bitrate option change. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2039>
10 lines
302 B
Meson
10 lines
302 B
Meson
if host_system not in ['windows', 'linux']
|
|
subdir_done()
|
|
endif
|
|
|
|
executable('qsvenc-dynamic-reconfigure',
|
|
['qsvenc-dynamic-reconfigure.c', 'key-handler.c'],
|
|
include_directories : [configinc],
|
|
dependencies: [gst_dep, gstbase_dep, gstvideo_dep],
|
|
c_args : gst_plugins_bad_args,
|
|
install: false)
|