mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 00:51:37 +00:00
Fix icc warning #188: enumerated type mixed with another type.
Originally committed as revision 18514 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5c463aacb2
commit
34bcada424
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user