mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-28 21:50:37 +00:00
101++
Originally committed as revision 4795 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
parent
df3c183a7b
commit
2ba1bff059
@ -68,6 +68,7 @@ untested special converters
|
||||
//#define HAVE_3DNOW
|
||||
//#undef HAVE_MMX
|
||||
//#undef ARCH_X86
|
||||
//#define WORDS_BIGENDIAN
|
||||
#define DITHER1XBPP
|
||||
|
||||
#define FAST_BGR2YV12 // use 7 bit coeffs instead of 15bit
|
||||
@ -294,10 +295,10 @@ static inline void yuv2rgbXinC(int16_t *lumFilter, int16_t **lumSrc, int lumFilt
|
||||
{
|
||||
if(dstFormat==IMGFMT_BGR32)
|
||||
{
|
||||
int i;
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
dest++;
|
||||
#endif
|
||||
int i;
|
||||
for(i=0; i<(dstW>>1); i++){
|
||||
int j;
|
||||
int Y1=0;
|
||||
|
@ -992,10 +992,10 @@ FULL_YSCALEYUV2RGB
|
||||
#else
|
||||
if(dstFormat==IMGFMT_BGR32)
|
||||
{
|
||||
int i;
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
dest++;
|
||||
#endif
|
||||
int i;
|
||||
for(i=0;i<dstW;i++){
|
||||
// vertical linear interpolation && yuv2rgb in a single step:
|
||||
int Y=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
|
||||
@ -1118,10 +1118,10 @@ FULL_YSCALEYUV2RGB
|
||||
#else
|
||||
if(dstFormat==IMGFMT_BGR32)
|
||||
{
|
||||
int i;
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
dest++;
|
||||
#endif
|
||||
int i;
|
||||
for(i=0; i<dstW-1; i+=2){
|
||||
// vertical linear interpolation && yuv2rgb in a single step:
|
||||
int Y1=yuvtab_2568[((buf0[i]*yalpha1+buf1[i]*yalpha)>>19)];
|
||||
@ -1399,10 +1399,10 @@ static inline void RENAME(yuv2rgb1)(uint16_t *buf0, uint16_t *uvbuf0, uint16_t *
|
||||
|
||||
if(dstFormat==IMGFMT_BGR32)
|
||||
{
|
||||
int i;
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
dest++;
|
||||
#endif
|
||||
int i;
|
||||
for(i=0; i<dstW-1; i+=2){
|
||||
// vertical linear interpolation && yuv2rgb in a single step:
|
||||
int Y1=yuvtab_2568[buf0[i]>>7];
|
||||
|
Loading…
Reference in New Issue
Block a user