diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-02-06 01:40:38 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-02-24 23:14:46 +0100 |
commit | 5085b46496f0df5f4f7259d03f21d3f814aa28e2 (patch) | |
tree | e5b82cd966d8389fcf83305444c1694ae654e0f9 /libavcodec | |
parent | ad899522ffa7f0039e631b0408a36f23aa84c0e7 (diff) | |
download | ffmpeg-5085b46496f0df5f4f7259d03f21d3f814aa28e2.tar.gz |
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.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 9dc666691a..f809e3de7f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1501,7 +1501,7 @@ typedef struct AVFrame { * - encoding: unused * - decoding: Read by user. */ - int64_t channels; + int channels; /** * size of the corresponding packet containing the compressed |