Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fd69fd3e authored by Wei Jia's avatar Wei Jia
Browse files

SoftFlacDecoder: increase default input size to 32768

Test: works for flac files
Bug: 63292860
Change-Id: I097f17148f86b98a249a3567cfdfae6001469586
parent f34e3f27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ void SoftFlacDecoder::initPorts() {
    def.eDir = OMX_DirInput;
    def.nBufferCountMin = kNumInputBuffers;
    def.nBufferCountActual = def.nBufferCountMin;
    def.nBufferSize = 8192;
    def.nBufferSize = 32768;
    def.bEnabled = OMX_TRUE;
    def.bPopulated = OMX_FALSE;
    def.eDomain = OMX_PortDomainAudio;