[FFmpeg-cvslog] r18514 - trunk/libavdevice/jack_audio.c

cehoyos subversion
Wed Apr 15 00:21:53 CEST 2009


Author: cehoyos
Date: Wed Apr 15 00:21:53 2009
New Revision: 18514

Log:
Fix icc warning #188: enumerated type mixed with another type.

Modified:
   trunk/libavdevice/jack_audio.c

Modified: trunk/libavdevice/jack_audio.c
==============================================================================
--- trunk/libavdevice/jack_audio.c	Wed Apr 15 00:19:43 2009	(r18513)
+++ trunk/libavdevice/jack_audio.c	Wed Apr 15 00:21:53 2009	(r18514)
@@ -144,7 +144,7 @@ static int start_jack(AVFormatContext *c
     double o, period;
 
     /* Register as a JACK client, using the context filename as client name. */
-    self->client = jack_client_open(context->filename, 0, &status);
+    self->client = jack_client_open(context->filename, JackNullOption, &status);
     if (!self->client) {
         av_log(context, AV_LOG_ERROR, "Unable to register as a JACK client\n");
         return AVERROR(EIO);



More information about the ffmpeg-cvslog mailing list