From 32ed3f4dad00f8a65f7e6b38402c70d5341c57eb Mon Sep 17 00:00:00 2001 From: Shyam Pallapothu Date: Wed, 20 Apr 2011 21:00:48 -0700 Subject: Fix for issue 4133431 "Remove OSAL layer" in engine part Change-Id: I9e2e142bcdf3153c529b790e368caea4fdb65ac8 --- libvideoeditor/vss/src/M4PCMR_CoreReader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libvideoeditor/vss/src/M4PCMR_CoreReader.c') diff --git a/libvideoeditor/vss/src/M4PCMR_CoreReader.c b/libvideoeditor/vss/src/M4PCMR_CoreReader.c index f21764b..b64b3c7 100755 --- a/libvideoeditor/vss/src/M4PCMR_CoreReader.c +++ b/libvideoeditor/vss/src/M4PCMR_CoreReader.c @@ -221,8 +221,8 @@ M4OSA_ERR M4PCMR_getNextStream(M4OSA_Context context, M4SYS_StreamDescription* p } /* Fill decoderSpecificInfo structure, with decoder config structure filled in 'openread' function */ - M4OSA_memcpy((M4OSA_MemAddr8)pStreamDesc->decoderSpecificInfo, - (M4OSA_MemAddr8)&c->m_decoderConfig, sizeof(M4PCMC_DecoderSpecificInfo)); + memcpy((void *)pStreamDesc->decoderSpecificInfo, + (void *)&c->m_decoderConfig, sizeof(M4PCMC_DecoderSpecificInfo)); /* Fill other fields of pStreamDesc structure */ pStreamDesc->timeScale = 1000; -- cgit v1.1