Changeset 5046 for pjproject/trunk/pjmedia/src/pjmedia/converter_libyuv.c
- Timestamp:
- Apr 6, 2015 6:21:41 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/converter_libyuv.c
r4875 r5046 146 146 147 147 #define MAP_CONV_PACK_TO_PACK(src,dst,method) GET_PJ_FORMAT(src),\ 148 GET_PJ_FORMAT(dst),CONV_PACK_TO_PACK, method148 GET_PJ_FORMAT(dst),CONV_PACK_TO_PACK,(gen_conv_func)&method 149 149 #define MAP_CONV_PACK_TO_PLANAR(src,dst,method) GET_PJ_FORMAT(src),\ 150 GET_PJ_FORMAT(dst),CONV_PACK_TO_PLANAR, method150 GET_PJ_FORMAT(dst),CONV_PACK_TO_PLANAR,(gen_conv_func)&method 151 151 #define MAP_CONV_PLANAR_TO_PACK(src,dst,method) GET_PJ_FORMAT(src),\ 152 GET_PJ_FORMAT(dst),CONV_PLANAR_TO_PACK, method152 GET_PJ_FORMAT(dst),CONV_PLANAR_TO_PACK,(gen_conv_func)&method 153 153 #define MAP_CONV_PLANAR_TO_PLANAR(src,dst,method) GET_PJ_FORMAT(src),\ 154 GET_PJ_FORMAT(dst),CONV_PLANAR_TO_PLANAR, method154 GET_PJ_FORMAT(dst),CONV_PLANAR_TO_PLANAR,(gen_conv_func)&method 155 155 #define MAP_SCALE_PACK(fmt,method) GET_PJ_FORMAT(fmt),\ 156 GET_PJ_FORMAT(fmt),SCALE_PACK, method156 GET_PJ_FORMAT(fmt),SCALE_PACK,(gen_conv_func)&method 157 157 #define MAP_SCALE_PLANAR(fmt,method) GET_PJ_FORMAT(fmt),\ 158 GET_PJ_FORMAT(fmt),SCALE_PLANAR, method158 GET_PJ_FORMAT(fmt),SCALE_PLANAR,(gen_conv_func)&method 159 159 160 160 static fmt_convert_map conv_to_i420[] =
Note: See TracChangeset
for help on using the changeset viewer.