Changeset 4703
- Timestamp:
- Nov 3, 2010, 10:31:31 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpipi/trunk/examples/dumpmovie.c
r4698 r4703 125 125 for (x = 0; x < ctx->width; x++, off++) 126 126 { 127 /* Reorder components to store YUVA */ 127 128 data[4 * off] = dst[0][off]; 128 data[4 * off + 1] = dst[ 1][off];129 data[4 * off + 2] = dst[ 2][off];129 data[4 * off + 1] = dst[2][off]; 130 data[4 * off + 2] = dst[1][off]; 130 131 data[4 * off + 3] = 0xff; 131 132 }
Note: See TracChangeset
for help on using the changeset viewer.