summaryrefslogtreecommitdiffstats
path: root/libvideoeditor/vss/src/M4PCMR_CoreReader.c
diff options
context:
space:
mode:
authorShyam Pallapothu <shyamp@google.com>2011-04-20 21:00:48 -0700
committerShyam Pallapothu <shyamp@google.com>2011-04-20 21:00:48 -0700
commit32ed3f4dad00f8a65f7e6b38402c70d5341c57eb (patch)
treebb31aab34aa099ce0db6bdeefa72a0acab3b6e74 /libvideoeditor/vss/src/M4PCMR_CoreReader.c
parent947721ba962c19913b76658cdbb19ae8c77c9c50 (diff)
downloadframeworks_av-32ed3f4dad00f8a65f7e6b38402c70d5341c57eb.zip
frameworks_av-32ed3f4dad00f8a65f7e6b38402c70d5341c57eb.tar.gz
frameworks_av-32ed3f4dad00f8a65f7e6b38402c70d5341c57eb.tar.bz2
Fix for issue 4133431 "Remove OSAL layer" in engine part
Change-Id: I9e2e142bcdf3153c529b790e368caea4fdb65ac8
Diffstat (limited to 'libvideoeditor/vss/src/M4PCMR_CoreReader.c')
-rwxr-xr-xlibvideoeditor/vss/src/M4PCMR_CoreReader.c4
1 files changed, 2 insertions, 2 deletions
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;