mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
An example to show how to detect frame type using h264parser Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8338>
17 lines
645 B
Meson
17 lines
645 B
Meson
executable('parse-jpeg', 'parse-jpeg.c',
|
|
include_directories : [configinc],
|
|
dependencies : [gstcodecparsers_dep, gst_dep],
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
install: false)
|
|
|
|
executable('parse-vp8', 'parse-vp8.c',
|
|
include_directories : [configinc],
|
|
dependencies : [gstcodecparsers_dep, gst_dep],
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
install: false)
|
|
|
|
executable('parse-h264-drop-frames', 'parse-h264-drop-frames.c',
|
|
include_directories : [configinc],
|
|
dependencies : [gstcodecparsers_dep, gst_dep],
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
install: false)
|