Searched refs:lib_flags (Results 1 – 4 of 4) sorted by relevance
/external/python/cffi/cffi/ |
D | pkgconfig.py | 119 lib_flags = kwargs(libname) 120 merge_flags(ret, lib_flags)
|
/external/libvpx/libvpx/vp8/ |
D | vp8_cx_iface.c | 893 unsigned int lib_flags; in vp8e_encode() local 911 lib_flags = (flags & VPX_EFLAG_FORCE_KF) ? FRAMEFLAGS_KEY : 0; in vp8e_encode() 921 if (vp8_receive_raw_frame(ctx->cpi, ctx->next_frame_flag | lib_flags, &sd, in vp8e_encode() 934 lib_flags = 0; in vp8e_encode() 940 ctx->cpi, &lib_flags, &size, cx_data, cx_data_end, &dst_time_stamp, in vp8e_encode() 966 pkt.data.frame.flags = lib_flags << 16; in vp8e_encode() 971 if (lib_flags & FRAMEFLAGS_KEY) { in vp8e_encode()
|
/external/libaom/libaom/av1/ |
D | av1_cx_iface.c | 1976 unsigned int lib_flags) { in get_frame_pkt_flags() argument 1977 aom_codec_frame_flags_t flags = lib_flags << 16; in get_frame_pkt_flags() 1979 if (lib_flags & FRAMEFLAGS_KEY) flags |= AOM_FRAME_IS_KEY; in get_frame_pkt_flags() 1980 if (lib_flags & FRAMEFLAGS_INTRAONLY) flags |= AOM_FRAME_IS_INTRAONLY; in get_frame_pkt_flags() 1981 if (lib_flags & FRAMEFLAGS_SWITCH) flags |= AOM_FRAME_IS_SWITCH; in get_frame_pkt_flags() 1982 if (lib_flags & FRAMEFLAGS_ERROR_RESILIENT) in get_frame_pkt_flags() 2150 unsigned int lib_flags = 0; in encoder_encode() local 2162 cpi_lap, &lib_flags, &frame_size, NULL, &dst_time_stamp_la, in encoder_encode() 2170 lib_flags = 0; in encoder_encode() 2178 cpi, &lib_flags, &frame_size, cx_data, &dst_time_stamp, in encoder_encode() [all …]
|
/external/libvpx/libvpx/vp9/ |
D | vp9_cx_iface.c | 1065 unsigned int lib_flags) { in get_frame_pkt_flags() argument 1066 vpx_codec_frame_flags_t flags = lib_flags << 16; in get_frame_pkt_flags() 1068 if (lib_flags & FRAMEFLAGS_KEY || in get_frame_pkt_flags() 1175 unsigned int lib_flags = 0; in encoder_encode() local 1229 ret = vp9_get_compressed_data(cpi, &lib_flags, &size, cx_data, in encoder_encode() 1251 -1 != vp9_get_compressed_data(cpi, &lib_flags, &size, cx_data, in encoder_encode() 1290 pkt.data.frame.flags = get_frame_pkt_flags(cpi, lib_flags); in encoder_encode() 1310 pkt.data.frame.flags = get_frame_pkt_flags(cpi, lib_flags); in encoder_encode()
|