mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 16:23:52 +00:00
Don't use C99 in printf.
This commit is contained in:
parent
be74db8b24
commit
0121fdca2c
1 changed files with 1 additions and 1 deletions
|
@ -345,7 +345,7 @@ void FFmpeg_Decoder::getInfo(int *samplerate, ChannelConfig *chans, SampleType *
|
|||
{
|
||||
// FIXME: debug output
|
||||
//#if 0
|
||||
printf("channel_layout: %" PRIu64 "\n",(*mStream)->codec->channel_layout);
|
||||
printf("channel_layout: %d\n",(int)(*mStream)->codec->channel_layout);
|
||||
printf("in_channels: %d\n",(*mStream)->codec->channels);
|
||||
//#endif
|
||||
mSwr = swr_alloc_set_opts(mSwr, // SwrContext
|
||||
|
|
Loading…
Reference in a new issue