From a3fa27e366cda40cf63732767f0d91bb0888df43 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 3 Feb 2013 21:27:45 +0100 Subject: [PATCH] ffplay: set type for channel_layout AudioParams field to int64_t Reflect the type of the corresponding field in lavc/lavfi. --- ffplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffplay.c b/ffplay.c index 83cf4ac4ba..3309e4291c 100644 --- a/ffplay.c +++ b/ffplay.c @@ -139,7 +139,7 @@ typedef struct SubPicture { typedef struct AudioParams { int freq; int channels; - int channel_layout; + int64_t channel_layout; enum AVSampleFormat fmt; } AudioParams;