Searched refs:AV_PIX_FMT_FLAG_PLANAR (Results 1 – 25 of 32) sorted by relevance
12
/third_party/ffmpeg/libavutil/ |
D | pixdesc.c | 184 .flags = AV_PIX_FMT_FLAG_PLANAR, 265 .flags = AV_PIX_FMT_FLAG_PLANAR, 277 .flags = AV_PIX_FMT_FLAG_PLANAR, 289 .flags = AV_PIX_FMT_FLAG_PLANAR, 301 .flags = AV_PIX_FMT_FLAG_PLANAR, 313 .flags = AV_PIX_FMT_FLAG_PLANAR, 366 .flags = AV_PIX_FMT_FLAG_PLANAR, 378 .flags = AV_PIX_FMT_FLAG_PLANAR, 390 .flags = AV_PIX_FMT_FLAG_PLANAR, 500 .flags = AV_PIX_FMT_FLAG_PLANAR, [all …]
|
D | pixdesc.h | 144 #define AV_PIX_FMT_FLAG_PLANAR (1 << 4) macro
|
/third_party/ffmpeg/libswscale/ |
D | swscale_internal.h | 682 return ((desc->flags & AV_PIX_FMT_FLAG_PLANAR) && isYUV(pix_fmt)); in isPlanarYUV() 793 return (desc->nb_components >= 2 && !(desc->flags & AV_PIX_FMT_FLAG_PLANAR)) || in isPacked() 802 return (desc->nb_components >= 2 && (desc->flags & AV_PIX_FMT_FLAG_PLANAR)); in isPlanar() 809 return ((desc->flags & (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB)) == AV_PIX_FMT_FLAG_RGB); in isPackedRGB() 816 return ((desc->flags & (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB)) == in isPlanarRGB() 817 (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB)); in isPlanarRGB()
|
D | alphablend.c | 48 if (desc->flags & AV_PIX_FMT_FLAG_PLANAR) { in ff_sws_alphablendaway()
|
D | swscale_unscaled.c | 724 if ((dst_format->flags & (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB)) != in Rgb16ToPlanarRgb16Wrapper() 725 (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB) || bpc < 9) { in Rgb16ToPlanarRgb16Wrapper() 900 if ((src_format->flags & (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB)) != in planarRgb16ToRgb16Wrapper() 901 (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB) || in planarRgb16ToRgb16Wrapper()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_swapuv.c | 74 if (desc->flags & ~(AV_PIX_FMT_FLAG_BE | AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_ALPHA) || in is_planar_yuv()
|
D | vf_vidstabdetect.c | 110 int is_planar = desc->flags & AV_PIX_FMT_FLAG_PLANAR; in config_input()
|
D | vf_scdet.c | 90 (desc->flags & AV_PIX_FMT_FLAG_PLANAR) && in config_input()
|
D | vf_fade.c | 417 s->bpp = pixdesc->flags & AV_PIX_FMT_FLAG_PLANAR ? in config_props() 421 s->is_planar = pixdesc->flags & AV_PIX_FMT_FLAG_PLANAR; in config_props()
|
D | vf_vidstabtransform.c | 149 int is_planar = desc->flags & AV_PIX_FMT_FLAG_PLANAR; in config_input()
|
D | vf_mergeplanes.c | 68 if (!(s->outdesc->flags & AV_PIX_FMT_FLAG_PLANAR) || in init()
|
D | vf_extractplanes.c | 222 s->is_packed = !(desc->flags & AV_PIX_FMT_FLAG_PLANAR) && in config_input()
|
D | vf_boxblur.c | 66 (desc->flags & AV_PIX_FMT_FLAG_PLANAR || desc->nb_components == 1) && in query_formats()
|
D | vf_vmafmotion.c | 272 (desc->flags & AV_PIX_FMT_FLAG_PLANAR || desc->nb_components == 1) && in query_formats()
|
D | vf_noise.c | 140 if (desc->flags & AV_PIX_FMT_FLAG_PLANAR && !(desc->comp[0].depth & 7) in query_formats()
|
D | vf_pad_opencl.c | 92 ctx->is_packed = !(desc->flags & AV_PIX_FMT_FLAG_PLANAR); in pad_opencl_init()
|
D | f_select.c | 213 (desc->flags & AV_PIX_FMT_FLAG_PLANAR) && in config_input()
|
D | formats.c | 384 !(desc->flags & AV_PIX_FMT_FLAG_PLANAR) && in ff_formats_pixdesc_filter()
|
D | vf_lut.c | 286 s->is_planar = desc->flags & AV_PIX_FMT_FLAG_PLANAR; in config_props()
|
D | vf_normalize.c | 455 planar = desc->flags & AV_PIX_FMT_FLAG_PLANAR; in config_input()
|
/third_party/ffmpeg/libavcodec/ |
D | pnm.c | 221 if (av_pix_fmt_desc_get(avctx->pix_fmt)->flags & AV_PIX_FMT_FLAG_PLANAR) { in ff_pnm_decode_header()
|
D | imgconvert.c | 93 || !(desc->flags & AV_PIX_FMT_FLAG_PLANAR)) in is_yuv_planar()
|
D | dpxenc.c | 45 s->planar = !!(desc->flags & AV_PIX_FMT_FLAG_PLANAR); in encode_init()
|
/third_party/ffmpeg/libavformat/ |
D | img2enc.c | 69 &&(desc->flags & AV_PIX_FMT_FLAG_PLANAR) in write_header()
|
/third_party/ffmpeg/libavdevice/ |
D | opengl_enc.c | 1168 if (!(desc->flags & AV_PIX_FMT_FLAG_PLANAR)) \ 1218 if (desc->flags & AV_PIX_FMT_FLAG_PLANAR) { in opengl_draw()
|
12