OSDN Git Service

ffplay: set type for channel_layout AudioParams field to int64_t
authorStefano Sabatini <stefasab@gmail.com>
Sun, 3 Feb 2013 20:27:45 +0000 (21:27 +0100)
committerStefano Sabatini <stefasab@gmail.com>
Sun, 24 Feb 2013 22:26:43 +0000 (23:26 +0100)
Reflect the type of the corresponding field in lavc/lavfi.

ffplay.c

index 83cf4ac..3309e42 100644 (file)
--- 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;