Changeset d501b986 in ffmpeg
- Timestamp:
- Feb 18, 2015, 12:55:15 AM (10 years ago)
- Branches:
- master
- Children:
- 8bc80016
- Parents:
- 0babb896
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libswscale/bayer_template.c
r0babb896 rd501b986 37 37 #endif 38 38 #if defined(BAYER_16LE) 39 #define BAYER_READ(x) AV_RL16(& x)39 #define BAYER_READ(x) AV_RL16(&(x)) 40 40 #define BAYER_SIZEOF 2 41 41 #define BAYER_SHIFT 8 42 42 #endif 43 43 #if defined(BAYER_16BE) 44 #define BAYER_READ(x) AV_RB16(& x)44 #define BAYER_READ(x) AV_RB16(&(x)) 45 45 #define BAYER_SIZEOF 2 46 46 #define BAYER_SHIFT 8
Note:
See TracChangeset
for help on using the changeset viewer.