~ppsspp/ppsspp/ffmpeg-upstream

« back to all changes in this revision

Viewing changes to libswscale/rgb2rgb.c

  • Committer: Sérgio Benjamim
  • Date: 2015-07-20 03:55:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150720035505-i1jj1zcjcnd0mc7w
Updated to 2.7.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
void (*rgb15to16)(const uint8_t *src, uint8_t *dst, int src_size);
52
52
void (*rgb15to32)(const uint8_t *src, uint8_t *dst, int src_size);
53
53
 
 
54
void (*shuffle_bytes_0321)(const uint8_t *src, uint8_t *dst, int src_size);
54
55
void (*shuffle_bytes_2103)(const uint8_t *src, uint8_t *dst, int src_size);
55
56
 
56
57
void (*yv12toyuy2)(const uint8_t *ysrc, const uint8_t *usrc,
333
334
    }                                                                   \
334
335
}
335
336
 
336
 
DEFINE_SHUFFLE_BYTES(0, 3, 2, 1)
337
337
DEFINE_SHUFFLE_BYTES(1, 2, 3, 0)
338
338
DEFINE_SHUFFLE_BYTES(3, 0, 1, 2)
339
339
DEFINE_SHUFFLE_BYTES(3, 2, 1, 0)