libobs/plugins/UI: Suppress unused variables warnings

Closes jp9000/obs-studio#937
This commit is contained in:
Shaolin
2017-06-01 03:58:42 -03:00
committed by jp9000
parent 4c61ae9513
commit e5756a922a
7 changed files with 12 additions and 9 deletions

View File

@@ -293,6 +293,8 @@ static void droptest_cap_data_rate(struct rtmp_stream *stream, size_t size)
static int socket_queue_data(RTMPSockBuf *sb, const char *data, int len, void *arg)
{
UNUSED_PARAMETER(sb);
struct rtmp_stream *stream = arg;
retry_send:
@@ -951,8 +953,9 @@ static inline size_t num_buffered_packets(struct rtmp_stream *stream)
static void drop_frames(struct rtmp_stream *stream, const char *name,
int highest_priority, bool pframes)
{
UNUSED_PARAMETER(pframes);
struct circlebuf new_buf = {0};
uint64_t last_drop_dts_usec = 0;
int num_frames_dropped = 0;
#ifdef _DEBUG
@@ -967,8 +970,6 @@ static void drop_frames(struct rtmp_stream *stream, const char *name,
struct encoder_packet packet;
circlebuf_pop_front(&stream->packets, &packet, sizeof(packet));
last_drop_dts_usec = packet.dts_usec;
/* do not drop audio data or video keyframes */
if (packet.type == OBS_ENCODER_AUDIO ||
packet.drop_priority >= highest_priority) {