mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-09 13:30:06 -05:00
Work on event loop
Make a new epoll based event loop and use it for the data tranport. Simplify the spa event api a little and rename to SpaLoop
This commit is contained in:
parent
0d2fa5ebc8
commit
ae93f15965
33 changed files with 1286 additions and 954 deletions
|
|
@ -1,11 +1,11 @@
|
|||
executable('test-mixer', 'test-mixer.c',
|
||||
include_directories : [spa_inc, spa_libinc ],
|
||||
dependencies : [dl_lib, pthread_lib],
|
||||
link_with : spalib,
|
||||
install : false)
|
||||
|
||||
executable('test-v4l2', 'test-v4l2.c',
|
||||
include_directories : [spa_inc, spa_libinc ],
|
||||
dependencies : [dl_lib, sdl_dep, pthread_lib],
|
||||
link_with : spalib,
|
||||
install : false)
|
||||
#executable('test-mixer', 'test-mixer.c',
|
||||
# include_directories : [spa_inc, spa_libinc ],
|
||||
# dependencies : [dl_lib, pthread_lib],
|
||||
# link_with : spalib,
|
||||
# install : false)
|
||||
#
|
||||
#executable('test-v4l2', 'test-v4l2.c',
|
||||
# include_directories : [spa_inc, spa_libinc ],
|
||||
# dependencies : [dl_lib, sdl_dep, pthread_lib],
|
||||
# link_with : spalib,
|
||||
# install : false)
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@
|
|||
#include <spa/id-map.h>
|
||||
#include <spa/log.h>
|
||||
#include <spa/node.h>
|
||||
#include <spa/loop.h>
|
||||
#include <spa/video/format.h>
|
||||
#include <lib/debug.h>
|
||||
#include <lib/props.h>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue