[FFmpeg-cvslog] ffplay: set type for channel_layout AudioParams field to int64_t

Stefano Sabatini git at videolan.org
Sun Feb 24 23:46:07 CET 2013


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Feb  3 21:27:45 2013 +0100| [a3fa27e366cda40cf63732767f0d91bb0888df43] | committer: Stefano Sabatini

ffplay: set type for channel_layout AudioParams field to int64_t

Reflect the type of the corresponding field in lavc/lavfi.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a3fa27e366cda40cf63732767f0d91bb0888df43
---

 ffplay.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffplay.c b/ffplay.c
index 83cf4ac..3309e42 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;
 



More information about the ffmpeg-cvslog mailing list