Browse Source

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.
tags/n1.2
Stefano Sabatini 13 years ago
parent
commit
5085b46496
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/avcodec.h

+ 1
- 1
libavcodec/avcodec.h View File

@@ -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


Loading…
Cancel
Save