diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-03-31 17:14:42 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-15 09:42:34 -0300 |
commit | b828c3954e61145957b60653a1e0957072221923 (patch) | |
tree | 5795738b51ae455a150eed2520549a5e2a6b6546 /libavformat/mov_chan.h | |
parent | 3654db79f4b912c1a4c3d16700c341628e40de3c (diff) | |
download | ffmpeg-b828c3954e61145957b60653a1e0957072221923.tar.gz |
mov: convert to new channel layout API
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/mov_chan.h')
-rw-r--r-- | libavformat/mov_chan.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mov_chan.h b/libavformat/mov_chan.h index f7916e9899..9514dfa405 100644 --- a/libavformat/mov_chan.h +++ b/libavformat/mov_chan.h @@ -28,6 +28,7 @@ #include <stdint.h> +#include "libavutil/channel_layout.h" #include "libavcodec/codec_id.h" #include "avformat.h" @@ -41,7 +42,7 @@ * @return channel layout tag */ uint32_t ff_mov_get_channel_layout_tag(enum AVCodecID codec_id, - uint64_t channel_layout, + const AVChannelLayout *ch_layout, uint32_t *bitmap); /** |