From 4fb252677958b1eb11327f5617f090afbdfb5a71 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 24 Jan 2016 02:29:26 -0800 Subject: Fix "signed and unsigned type in conditional expression" warning --- examples/alffplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/alffplay.c b/examples/alffplay.c index 17f6d3bc..ab67d216 100644 --- a/examples/alffplay.c +++ b/examples/alffplay.c @@ -686,7 +686,7 @@ static int audio_thread(void *userdata) movState->audio.st->codec->sample_rate, movState->audio.st->codec->channel_layout ? movState->audio.st->codec->channel_layout : - av_get_default_channel_layout(movState->audio.st->codec->channels), + (uint64_t)av_get_default_channel_layout(movState->audio.st->codec->channels), movState->audio.st->codec->sample_fmt, movState->audio.st->codec->sample_rate, 0, NULL -- cgit v1.2.3