diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-02-03 21:27:45 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-02-24 23:26:43 +0100 |
commit | a3fa27e366cda40cf63732767f0d91bb0888df43 (patch) | |
tree | 8c0e5441414dc7224ca83c05413cfb03f8e3a92b /ffplay.c | |
parent | 566560b85c3767170a0c0bb9d0dcb6b10110cea9 (diff) | |
download | ffmpeg-a3fa27e366cda40cf63732767f0d91bb0888df43.tar.gz |
ffplay: set type for channel_layout AudioParams field to int64_t
Reflect the type of the corresponding field in lavc/lavfi.
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |