]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Fix icc warning #188: enumerated type mixed with another type.
authorcehoyos <cehoyos@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Tue, 14 Apr 2009 22:21:53 +0000 (22:21 +0000)
committercehoyos <cehoyos@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Tue, 14 Apr 2009 22:21:53 +0000 (22:21 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18514 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavdevice/jack_audio.c

index 8232a187e265b66146734bae9ce6805d51fddc2d..579cf0e1e31d71df4add1a55267c3078cf9eb583 100644 (file)
@@ -144,7 +144,7 @@ static int start_jack(AVFormatContext *context, AVFormatParameters *params)
     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);