Home
last modified time | relevance | path

Searched refs:interlace (Results 1 - 25 of 30) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
H A Davrndec.c28 int interlace; member
44 a->interlace = !memcmp(avctx->extradata + ndx, "1:1(", 4); in init()
45 if(a->interlace) { in init()
73 if(a->interlace) { in decode_frame()
H A Dvc1_mc.c182 int interlace; in ff_vc1_mc_1mv() local
228 interlace = 1; in ff_vc1_mc_1mv()
236 interlace = s->last_picture.f->interlaced_frame; in ff_vc1_mc_1mv()
245 interlace = s->next_picture.f->interlaced_frame; in ff_vc1_mc_1mv()
300 if (interlace) { in ff_vc1_mc_1mv()
335 if (interlace) { in ff_vc1_mc_1mv()
462 int interlace; in ff_vc1_mc_4mv_luma() local
480 interlace = 1; in ff_vc1_mc_4mv_luma()
485 interlace = s->last_picture.f->interlaced_frame; in ff_vc1_mc_4mv_luma()
491 interlace in ff_vc1_mc_4mv_luma()
645 int interlace; ff_vc1_mc_4mv_chroma() local
852 int interlace; ff_vc1_mc_4mv_chroma4() local
1012 int interlace; ff_vc1_interp_mc() local
[all...]
H A Dnvdec_vc1.c79 .interlace = v->interlace, in nvdec_vc1_start_frame()
H A Dvdpau_vc1.c73 info->interlace = v->interlace; in vdpau_vc1_start_frame()
H A Ddxva2_vc1.c87 pp->bSecondField = v->interlace && v->fcm == ILACE_FIELD && v->second_field; in fill_picture_parameters()
119 pp->bPicExtrapolation = (!v->interlace || v->fcm == PROGRESSIVE) ? 1 : 2; in fill_picture_parameters()
125 (v->interlace << 5) | in fill_picture_parameters()
H A Dvc1.h199 int interlace; ///< Progressive/interlaced (RPTFTM syntax element) member
H A Dvc1_parser.c108 if (vpc->v.broadcast && vpc->v.interlace && !vpc->v.psf) in vc1_extract_header()
H A Dvaapi_vc1.c268 .interlace = v->interlace, in vaapi_vc1_start_frame()
H A Dvc1.c421 v->interlace = get_bits1(gb); in decode_sequence_header_adv()
431 v->s.loop_filter, v->chromaformat, v->broadcast, v->interlace, in decode_sequence_header_adv()
872 if (v->interlace) { in ff_vc1_parse_frame_header_adv()
919 if (!v->interlace || v->psf) { in ff_vc1_parse_frame_header_adv()
936 if (v->interlace) in ff_vc1_parse_frame_header_adv()
1014 if (v->fcm == ILACE_FRAME) { //interlace frame picture in ff_vc1_parse_frame_header_adv()
1051 if (v->interlace) { in ff_vc1_parse_frame_header_adv()
H A Dhuffyuvdec.c326 int method, interlace; in decode_init() local
348 interlace = (avctx->extradata[2] & 0x30) >> 4; in decode_init()
349 s->interlaced = (interlace == 1) ? 1 : (interlace == 2) ? 0 : s->interlaced; in decode_init()
/third_party/skia/third_party/externals/libpng/contrib/pngminus/
H A Dpnm2png.c35 BOOL interlace, BOOL alpha);
49 BOOL interlace = FALSE; in main() local
60 interlace = TRUE; in main()
124 if (pnm2png (fp_rd, fp_wr, fp_al, interlace, alpha) == FALSE) in main()
164 BOOL interlace, BOOL alpha) in pnm2png()
475 (!interlace) ? PNG_INTERLACE_NONE : PNG_INTERLACE_ADAM7, in pnm2png()
163 pnm2png(FILE *pnm_file, FILE *png_file, FILE *alpha_file, BOOL interlace, BOOL alpha) pnm2png() argument
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dpngshim.c271 int bitdepth, color_type, interlace; in FT_LOCAL_DEF() local
327 &bitdepth, &color_type, &interlace, in FT_LOCAL_DEF()
384 if ( interlace != PNG_INTERLACE_NONE ) in FT_LOCAL_DEF()
393 &bitdepth, &color_type, &interlace, in FT_LOCAL_DEF()
/third_party/mesa3d/src/gallium/frontends/va/
H A Dpicture_vc1.c42 context->desc.vc1.interlace = vc1->sequence_fields.bits.interlace; in vlVaHandlePictureParameterBufferVC1()
/third_party/ffmpeg/libavfilter/
H A Dtinterlace.h25 * temporal field interlace filter, ported from MPlayer/libmpcodecs
66 int mode; ///< TInterlaceMode, interlace mode selected
69 int lowpass; ///< legacy interlace filter lowpass mode
82 void ff_tinterlace_init_x86(TInterlaceContext *interlace);
H A Dvf_tinterlace.c26 * temporal field interlace filter, ported from MPlayer/libmpcodecs
40 {"mode", "select interlace mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=MODE_MERGE}, 0, MODE_NB-1, FLAGS, "mode"},
47 {"interlacex2", "interlace fields from two consecutive frames", 0, AV_OPT_TYPE_CONST, {.i64=MODE_INTERLACEX2}, INT_MIN, INT_MAX, FLAGS, "mode"},
75 AVFILTER_DEFINE_CLASS(interlace); variable
336 // Filtering will reduce interlace 'twitter' and Moire patterning. in copy_picture_field()
469 case MODE_INTERLACEX2: /* re-interlace preserving image height, double frame rate */ in filter_frame()
563 .name = "interlace",
/third_party/cups-filters/cupsfilters/
H A Dimage-gif.c57 int interlace);
445 int interlace) /* I - Non-zero = interlaced image */ in gif_read_image()
504 if (interlace) in gif_read_image()
442 gif_read_image(FILE *fp, cups_image_t *img, gif_cmap_t cmap, int interlace) gif_read_image() argument
/third_party/ffmpeg/tests/fate/
H A Dfilter-video.mak135 fate-filter-fieldorder: CMD = framecrc -c:v pgmyuv -i $(SRC) -vf interlace=tff,scale,fieldorder=bff -sws_flags +accurate_rnd+bitexact
150 FATE_FILTER_VSYNTH_PGMYUV-$(CONFIG_INTERLACE_FILTER) += fate-filter-interlace
151 fate-filter-interlace: CMD = framecrc -c:v pgmyuv -i $(SRC) -vf interlace
153 FATE_FILTER_VSYNTH_PGMYUV-$(CONFIG_INTERLACE_FILTER) += fate-filter-interlace-complex
154 fate-filter-interlace-complex: CMD = framecrc -c:v pgmyuv -i $(SRC) -vf interlace=lowpass=complex
H A Dh264.mak211 FATE_H264-$(call FRAMECRC, MOV, H264) += fate-h264-interlace-crop
434 fate-h264-interlace-crop: CMD = framecrc -i $(TARGET_SAMPLES)/h264/interlaced_crop.mp4 -frames:v 3
/third_party/mesa3d/src/gallium/frontends/vdpau/
H A Ddecode.c321 picture->interlace = picture_info->interlace; in vlVdpDecoderRenderVC1()
/third_party/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_vp3_video_vp.c126 unsigned interlace : 1; // 5 field_pic_flag member
341 h->interlace = d->field_pic_flag; in nouveau_vp3_fill_picparm_h264_vp()
H A Dnouveau_vp3_video_bsp.c171 vc->interlaced = d->interlace; in nouveau_vp3_fill_picparm_vc1_bsp()
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_interlace.asm2 ;* x86-optimized functions for interlace filter
/third_party/mesa3d/src/gallium/include/pipe/
H A Dp_video_state.h252 uint8_t interlace; member
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dradeon_uvd.c499 result.sps_info_flags |= pic->interlace << 5; in get_vc1_msg()
/third_party/astc-encoder/Source/
H A Dstb_image.h5085 int first=1,k,interlace=0, color=0, is_iphone=0; in stbi__parse_png_file() local
5118 interlace = stbi__get8(s); if (interlace>1) return stbi__err("bad interlace method","Corrupt PNG"); in stbi__parse_png_file()
5213 if (!stbi__create_png_image(z, z->expanded, raw_len, s->img_out_n, z->depth, color, interlace)) return 0; in stbi__parse_png_file()

Completed in 36 milliseconds

12