mmfenh/advancedaudiocontroller/audiocontrollerpluginsvariant/aacaudioplaycontroller/Src/AACAudioPlayControllerHwDecoder.cpp
equal
deleted
inserted
replaced
19 |
19 |
20 |
20 |
21 // INCLUDE FILES |
21 // INCLUDE FILES |
22 #include "AACAudioPlayControllerDecoder.h" |
22 #include "AACAudioPlayControllerDecoder.h" |
23 #include "DebugMacros.h" |
23 #include "DebugMacros.h" |
24 #include <mmfcodec.h> |
24 #include <Mmfcodec.h> |
25 |
25 |
26 #include <mmfpaniccodes.h> |
26 #include <mmfpaniccodes.h> |
27 |
27 |
28 // New eAAC+ custom interface is used only when using DSP decoder and |
28 // New eAAC+ custom interface is used only when using DSP decoder and |
29 // the eAAC+ feature is turned on. |
29 // the eAAC+ feature is turned on. |
290 iOutBufferPtr = iOutBuffer; |
290 iOutBufferPtr = iOutBuffer; |
291 |
291 |
292 iAccLen = 0; |
292 iAccLen = 0; |
293 |
293 |
294 iAacUtil->Config(iFrameLenConfig); |
294 iAacUtil->Config(iFrameLenConfig); |
|
295 iEnabled = ETrue; |
295 DP0(_L ("CAACAudioPlayControllerDecoder::Reset - Exit")); |
296 DP0(_L ("CAACAudioPlayControllerDecoder::Reset - Exit")); |
296 } |
297 } |
297 |
298 |
298 TCodecProcessResult CAACAudioPlayControllerDecoder::ProcessL(CMMFBuffer& aSrc, CMMFBuffer& aDst) |
299 TCodecProcessResult CAACAudioPlayControllerDecoder::ProcessL(CMMFBuffer& aSrc, CMMFBuffer& aDst) |
299 { |
300 { |
380 |
381 |
381 TInt CAACAudioPlayControllerDecoder::CodecCmd(TCodecCmd /*aCmd*/) |
382 TInt CAACAudioPlayControllerDecoder::CodecCmd(TCodecCmd /*aCmd*/) |
382 { |
383 { |
383 return KErrNotSupported; |
384 return KErrNotSupported; |
384 } |
385 } |
|
386 TBool CAACAudioPlayControllerDecoder::IsDecodingSufficient() |
|
387 { |
|
388 RDebug::Printf("CAACAudioPlayControllerDecoder::IsDecodingSufficient"); |
|
389 return ETrue; |
|
390 } |
385 |
391 |
386 // End of file |
392 // End of file |