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>
This commit is contained in:
Marton Balint 2011-10-06 23:44:48 +02:00 committed by Michael Niedermayer
parent b93cb8383f
commit d2ba604421
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ int av_get_channel_layout_nb_channels(int64_t channel_layout)
return count;
}
int av_get_default_channel_layout(int nb_channels) {
int64_t av_get_default_channel_layout(int nb_channels) {
int i;
for (i = 0; channel_layout_map[i].name; i++)
if (nb_channels == channel_layout_map[i].nb_channels)

View File

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