mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
3d8372cc50
This should make "meson devenv" closer to what "gst-env.py" sets. - GST_VALIDATE_SCENARIOS_PATH - GST_VALIDATE_APPS_DIR - GST_OMX_CONFIG_DIR - GST_ENCODING_TARGET_PATH - GST_PRESET_PATH - GST_PLUGIN_SCANNER - GST_PTP_HELPER - _GI_OVERRIDES_PATH Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1768>
43 lines
1.8 KiB
Meson
43 lines
1.8 KiB
Meson
_scenarios = ['simple_seeks.scenario',
|
|
'seek_forward.scenario',
|
|
'seek_backward.scenario',
|
|
'seek_forward_backward.scenario',
|
|
'reverse_playback.scenario',
|
|
'fast_forward.scenario',
|
|
'fast_backward.scenario',
|
|
'alternate_fast_backward_forward.scenario',
|
|
'pause_resume.scenario',
|
|
'scrub_forward_seeking.scenario',
|
|
'scrub_backward_seeking.scenario',
|
|
'scrub_forward_seeking_full.scenario',
|
|
'scrub_backward_seeking_full.scenario',
|
|
'adaptive_video_size.scenario',
|
|
'adaptive_video_framerate.scenario',
|
|
'adaptive_video_framerate_size.scenario',
|
|
'force_key_unit.scenario',
|
|
'seek_with_stop.scenario',
|
|
'switch_audio_track_while_paused.scenario',
|
|
'switch_subtitle_track.scenario',
|
|
'switch_subtitle_track_while_paused.scenario',
|
|
'disable_subtitle_track_while_paused.scenario',
|
|
'play_15s.scenario',
|
|
'play_5s.scenario',
|
|
'change_state_intensive.scenario',
|
|
'switch_audio_track.scenario',
|
|
'force_rtsp2.scenario',]
|
|
|
|
install_data(sources: _scenarios,
|
|
install_dir: get_option('datadir') + '/gstreamer-' +
|
|
apiversion + '/validate/scenarios')
|
|
|
|
install_subdir('includes',
|
|
install_dir: get_option('datadir') + '/gstreamer-' +
|
|
apiversion + '/validate/scenarios')
|
|
|
|
install_subdir('rtsp_overrides',
|
|
install_dir: get_option('datadir') + '/gstreamer-' +
|
|
apiversion + '/validate/scenarios')
|
|
|
|
env = environment()
|
|
env.prepend('GST_VALIDATE_SCENARIOS_PATH', meson.current_source_dir())
|
|
meson.add_devenv(env)
|