Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2011-10-07 01:44:48 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-10-07 04:53:18 +0400
commitd2ba6044217588788534ed1bf1609385d804e956 (patch)
tree003ab0acf36756685b8aa5550caca7c0960130ca /libavutil/audioconvert.h
parentb93cb8383fec0aa95b735fcd97eff03425e79bc1 (diff)
audioconvert: fix type of av_get_default_channel_layout
Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/audioconvert.h')
-rw-r--r--libavutil/audioconvert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/audioconvert.h b/libavutil/audioconvert.h
index 03965ccc7d..8cef7f650a 100644
--- a/libavutil/audioconvert.h
+++ b/libavutil/audioconvert.h
@@ -95,6 +95,6 @@ int av_get_channel_layout_nb_channels(int64_t channel_layout);
/**
* Return default channel layout for a given number of channels.
*/
-int av_get_default_channel_layout(int nb_channels);
+int64_t av_get_default_channel_layout(int nb_channels);
#endif /* AVUTIL_AUDIOCONVERT_H */