mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
- ffmpegdec: fix audio playback for ARM_HARDWARE
This commit is contained in:
@@ -257,7 +257,12 @@ CBaseDec::RetCode CFfmpegDec::Decoder(FILE *_in, int /*OutputFd*/, State* state,
|
||||
|
||||
mSampleRate = samplerate;
|
||||
mChannels = av_get_channel_layout_nb_channels(AV_CH_LAYOUT_STEREO);
|
||||
|
||||
#if !HAVE_ARM_HARDWARE
|
||||
audioDecoder->PrepareClipPlay(mChannels, mSampleRate, 16, 1);
|
||||
#else
|
||||
audioDecoder->PrepareClipPlay(mChannels, mSampleRate, 16, 0);
|
||||
#endif
|
||||
|
||||
AVFrame *frame = NULL;
|
||||
AVPacket rpacket;
|
||||
|
Reference in New Issue
Block a user