Commit 5085b464 authored by Stefano Sabatini's avatar Stefano Sabatini

lavc: change type of AVFrame.channels field from int64_t to int

"channels" is an int in all the other places in the libraries, and the
av_frame_*_channels() accessors return and set an int, so this should not
implicate ABI breaks.
parent ad899522
...@@ -1501,7 +1501,7 @@ typedef struct AVFrame { ...@@ -1501,7 +1501,7 @@ typedef struct AVFrame {
* - encoding: unused * - encoding: unused
* - decoding: Read by user. * - decoding: Read by user.
*/ */
int64_t channels; int channels;
/** /**
* size of the corresponding packet containing the compressed * size of the corresponding packet containing the compressed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment