Changeset a15d5661f0467a25f19af4c4c9b0795e4605c8c9

Show
Ignore:
Timestamp:
04/05/04 16:09:45 (4 years ago)
Author:
Eric Petit <titer@videolan.org>
git-committer:
Eric Petit <titer@videolan.org> 1083679785 +0000
git-parent:

[49ac51d80f4f0e02abbdb4caca5affbb08f8fdee]

git-author:
Eric Petit <titer@videolan.org> 1083679785 +0000
Message:

+ video_chroma/i420_yuy2.h : grmbl, x86 compile fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/video_chroma/i420_yuy2.h

    ra4923d5 ra15d566  
    114114#else 
    115115 
    116 #define C_YUV420_YUYV( )                                                    \ 
    117     *(p_line1)++ = *(p_y1)++; *(p_line2)++ = *(p_y2)++;                     \ 
    118     *(p_line1)++ =            *(p_line2)++ = *(p_u)++;                      \ 
    119     *(p_line1)++ = *(p_y1)++; *(p_line2)++ = *(p_y2)++;                     \ 
    120     *(p_line1)++ =            *(p_line2)++ = *(p_v)++;                      \ 
    121  
    122116#define C_YUV420_YVYU( )                                                    \ 
    123117    *(p_line1)++ = *(p_y1)++; *(p_line2)++ = *(p_y2)++;                     \ 
     
    142136#endif 
    143137 
     138/* Used in both MMX and C modules */ 
     139#define C_YUV420_YUYV( )                                                    \ 
     140    *(p_line1)++ = *(p_y1)++; *(p_line2)++ = *(p_y2)++;                     \ 
     141    *(p_line1)++ =            *(p_line2)++ = *(p_u)++;                      \ 
     142    *(p_line1)++ = *(p_y1)++; *(p_line2)++ = *(p_y2)++;                     \ 
     143    *(p_line1)++ =            *(p_line2)++ = *(p_v)++;                      \ 
     144