ffplay: set type for channel_layout AudioParams field to int64_t

Reflect the type of the corresponding field in lavc/lavfi.
This commit is contained in:
Stefano Sabatini 2013-02-03 21:27:45 +01:00
parent 566560b85c
commit a3fa27e366

View File

@ -139,7 +139,7 @@ typedef struct SubPicture {
typedef struct AudioParams { typedef struct AudioParams {
int freq; int freq;
int channels; int channels;
int channel_layout; int64_t channel_layout;
enum AVSampleFormat fmt; enum AVSampleFormat fmt;
} AudioParams; } AudioParams;