Searched refs:CASE_GRAY (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | fitsdec.c | 275 #define CASE_GRAY(cas, dst, type, t, rd) \ in fits_decode_frame() macro 291 CASE_GRAY(-64, dst16, uint16_t, tdbl, av_int2double(AV_RB64(ptr8))); in fits_decode_frame() 292 CASE_GRAY(-32, dst16, uint16_t, tflt, av_int2float(AV_RB32(ptr8))); in fits_decode_frame() 293 CASE_GRAY(8, dst8, uint8_t, t8, ptr8[0]); in fits_decode_frame() 294 CASE_GRAY(16, dst16, uint16_t, t16, AV_RB16(ptr8)); in fits_decode_frame() 295 CASE_GRAY(32, dst16, uint16_t, t32, AV_RB32(ptr8)); in fits_decode_frame() 296 CASE_GRAY(64, dst16, uint16_t, t64, AV_RB64(ptr8)); in fits_decode_frame()
|