/third_party/ffmpeg/libavfilter/ |
H A D | vf_vpp_qsv.c | 83 int hflip; /* flip mode : 0 = off, 1 = HORIZONTAL flip */ member 122 { "hflip", "flip horizontally", 0, AV_OPT_TYPE_CONST, { .i64 = TRANSPOSE_HFLIP }, .flags=FLAGS, .unit = "transpose" }, 422 vpp->hflip = MFX_MIRRORING_HORIZONTAL; in config_output() 426 vpp->hflip = MFX_MIRRORING_DISABLED; in config_output() 430 vpp->hflip = MFX_MIRRORING_DISABLED; in config_output() 434 vpp->hflip = MFX_MIRRORING_HORIZONTAL; in config_output() 438 vpp->hflip = MFX_MIRRORING_DISABLED; in config_output() 442 vpp->hflip = MFX_MIRRORING_HORIZONTAL; in config_output() 446 vpp->hflip = MFX_MIRRORING_HORIZONTAL; in config_output() 480 if (vpp->hflip) { in config_output() [all...] |
H A D | vf_hflip.c | 32 #include "hflip.h" 45 AVFILTER_DEFINE_CLASS(hflip); variable 162 .name = "hflip",
|
H A D | vf_v360.c | 4097 static inline void input_flip(int16_t u[4][4], int16_t v[4][4], int w, int h, int hflip, int vflip) in input_flip() argument 4099 if (hflip) { in input_flip()
|
/third_party/ffmpeg/libavutil/ |
H A D | display.c | 66 void av_display_matrix_flip(int32_t matrix[9], int hflip, int vflip) in av_display_matrix_flip() argument 69 const int flip[] = { 1 - 2 * (!!hflip), 1 - 2 * (!!vflip), 1 }; in av_display_matrix_flip() 71 if (hflip || vflip) in av_display_matrix_flip()
|
H A D | display.h | 103 * @param hflip whether the matrix should be flipped horizontally 106 void av_display_matrix_flip(int32_t matrix[9], int hflip, int vflip);
|
/third_party/ffmpeg/libavcodec/ |
H A D | cri.c | 178 int ret, bps, hflip = 0, vflip = 0; in cri_decode_frame() local 238 hflip = bytestream2_get_byte(gb) != 0; in cri_decode_frame() 398 if (hflip || vflip) { in cri_decode_frame() 403 av_display_matrix_flip((int32_t *)rotation->data, hflip, vflip); in cri_decode_frame()
|
H A D | h264_metadata_bsf.c | 396 int hflip, vflip, i; in h264_metadata_handle_display_orientation() local 409 hflip = dmatrix[0] < 0.0; in h264_metadata_handle_display_orientation() 411 if (hflip) in h264_metadata_handle_display_orientation() 431 disp->hor_flip = hflip; in h264_metadata_handle_display_orientation()
|
H A D | hevc_sei.h | 54 int hflip, vflip; member
|
H A D | h264_sei.h | 147 int hflip, vflip; member
|
H A D | hevc_sei.c | 123 s->hflip = get_bits1(gb); // hor_flip in decode_nal_sei_display_orientation()
|
H A D | h264_sei.c | 376 h->hflip = get_bits1(gb); // hor_flip in decode_display_orientation()
|
H A D | h264_slice.c | 1294 h->sei.display_orientation.hflip || in h264_export_frame_props() 1310 angle = -angle * (1 - 2 * !!o->hflip) * (1 - 2 * !!o->vflip); in h264_export_frame_props() 1313 o->hflip, o->vflip); in h264_export_frame_props()
|
H A D | hevcdec.c | 2775 s->sei.display_orientation.hflip || s->sei.display_orientation.vflip)) { in set_side_data() 2791 angle = -angle * (1 - 2 * !!s->sei.display_orientation.hflip) in set_side_data() 2795 s->sei.display_orientation.hflip, in set_side_data()
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_hflip.asm | 2 ;* x86-optimized functions for hflip filter
|
/third_party/ffmpeg/libavformat/ |
H A D | matroskadec.c | 2244 int hflip; in mkv_create_display_matrix() local 2263 hflip = yaw != 0.0; in mkv_create_display_matrix() 2267 * Furthermore, if hflip is set, we need to negate it again in mkv_create_display_matrix() 2270 av_display_rotation_set(matrix, roll * (2 * hflip - 1)); in mkv_create_display_matrix() 2271 av_display_matrix_flip(matrix, hflip, 0); in mkv_create_display_matrix()
|
/third_party/ffmpeg/tests/fate/ |
H A D | filter-video.mak | 558 FATE_FILTER_PIXFMTS-$(CONFIG_HFLIP_FILTER) += fate-filter-pixfmts-hflip 559 fate-filter-pixfmts-hflip: CMD = pixfmts
|