old mode 100755new mode 100644.. | .. |
---|
118 | 118 | pVconfig->memops->flush_cache((void*)pPicture->pData1, |
---|
119 | 119 | ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)/2); |
---|
120 | 120 | memcpy(outY, (void*)pPicture->pData0, |
---|
121 | | - ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)); |
---|
| 121 | + pVideoInfo->nWidth * pVideoInfo->nHeight); |
---|
122 | 122 | memcpy((char*)outU, |
---|
123 | 123 | (void*)pPicture->pData1, |
---|
124 | | - ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)/4); |
---|
| 124 | + pVideoInfo->nWidth * pVideoInfo->nHeight / 4); |
---|
125 | 125 | memcpy((char*)outV, |
---|
126 | 126 | (void*)(pPicture->pData1 + |
---|
127 | | - ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)/4), |
---|
128 | | - ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)/4); |
---|
129 | | - |
---|
130 | | - pVconfig->memops->flush_cache((char*)outY, |
---|
131 | | - ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)); |
---|
132 | | - pVconfig->memops->flush_cache((char*)outU, |
---|
133 | | - ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)/4); |
---|
134 | | - pVconfig->memops->flush_cache((char*)outV, |
---|
135 | | - ALIGN_16B(pVideoInfo->nWidth)*ALIGN_16B(pVideoInfo->nHeight)/4); |
---|
| 127 | + pVideoInfo->nWidth * pVideoInfo->nHeight / 4), |
---|
| 128 | + pVideoInfo->nWidth * pVideoInfo->nHeight / 4); |
---|
136 | 129 | ReturnPicture(*mVideoDecoder, pPicture); |
---|
137 | 130 | } |
---|
138 | 131 | } |
---|