From a94836a467a942f32ed5cc88d2941101c995f355 Mon Sep 17 00:00:00 2001 From: Jonathon Jongsma Date: Fri, 12 Jun 2015 10:41:42 -0500 Subject: Remove duplicate streaming enumeration There is already a enumeration in a public header that defines the different streaming options, so there's no need to duplicate that enumeration internally. Just use the public enum values. --- server/reds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/reds.c') diff --git a/server/reds.c b/server/reds.c index 3a38258c..12c0bf4c 100644 --- a/server/reds.c +++ b/server/reds.c @@ -110,7 +110,7 @@ static uint8_t spice_uuid[16] = { 0, }; static int ticketing_enabled = 1; //Ticketing is enabled by default static pthread_mutex_t *lock_cs; static long *lock_count; -uint32_t streaming_video = STREAM_VIDEO_FILTER; +uint32_t streaming_video = SPICE_STREAM_VIDEO_FILTER; spice_image_compression_t image_compression = SPICE_IMAGE_COMPRESS_AUTO_GLZ; spice_wan_compression_t jpeg_state = SPICE_WAN_COMPRESSION_AUTO; spice_wan_compression_t zlib_glz_state = SPICE_WAN_COMPRESSION_AUTO; -- cgit