pulse-server: remove unnecessary struct member and includes

Part of !776.
This commit is contained in:
Barnabás Pőcze 2021-06-19 00:23:27 +02:00
parent 480fcbbba9
commit 0e48ae9f50
2 changed files with 8 additions and 8 deletions

View file

@ -32,11 +32,15 @@
#include <spa/utils/defs.h> #include <spa/utils/defs.h>
#include <spa/utils/ringbuffer.h> #include <spa/utils/ringbuffer.h>
#include <pipewire/pipewire.h> #include <pipewire/map.h>
#include <pipewire/private.h> #include <pipewire/private.h>
#include "format.h" #include "format.h"
#include "volume.h"
struct pw_loop;
struct pw_context;
struct pw_work_queue;
struct pw_properties;
struct defs { struct defs {
struct spa_fraction min_req; struct spa_fraction min_req;
@ -67,7 +71,6 @@ struct impl {
struct ratelimit rate_limit; struct ratelimit rate_limit;
struct spa_source *source;
struct spa_list servers; struct spa_list servers;
struct pw_work_queue *work_queue; struct pw_work_queue *work_queue;

View file

@ -26,14 +26,11 @@
#include "config.h" #include "config.h"
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h> #include <errno.h>
#include <math.h> #include <string.h>
#include <stdio.h>
#include <time.h> #include <time.h>
#include <sys/time.h> #include <sys/time.h>
#include <fcntl.h>
#include <pipewire/log.h> #include <pipewire/log.h>