void OMXImplWVClassic::HandleProcessorResume()
{
    sec_result_t sepres = Drm_Playback_Resume(WV_SESSION_ID);
    if (sepres != 0) {
        LOGE("Drm_Playback_Resume failed. Result = %#x", sepres);
    }
}
OMX_ERRORTYPE OMXVideoDecoderAVCSecure::ProcessorResume(void) {
    sec_result_t sepres = Drm_Playback_Resume(WV_SESSION_ID);
    if (sepres != 0) {
        LOGE("Drm_Playback_Resume failed. Result = %#x", sepres);
    }
    return OMXVideoDecoderBase::ProcessorResume();
}