/third_party/gstreamer/gstplugins_base/ext/theora/ |
D | gsttheoradec.c | 434 GST_DEBUG_OBJECT (dec, "dimension %dx%d, PAR %d/%d", dec->info.pic_width, in theora_handle_type_packet() 437 dec->info.pic_width, dec->info.pic_height, in theora_handle_type_packet() 454 GST_VIDEO_INFO_WIDTH (info) = dec->info.pic_width; in theora_handle_type_packet() 661 gint pic_width, pic_height; in theora_handle_image() local 676 pic_width = dec->info.pic_width; in theora_handle_image() 689 pic_width = dec->info.frame_width; in theora_handle_image() 692 if (dec->info.pic_width != dec->info.frame_width || in theora_handle_image() 720 cmeta->width = dec->info.pic_width; in theora_handle_image() 735 GST_VIDEO_FORMAT_INFO_SCALE_WIDTH (vframe.info.finfo, comp, pic_width); in theora_handle_image() 745 src += (width == pic_width) ? offset_x : offset_x / 2; in theora_handle_image()
|
D | gsttheoraparse.c | 760 parse->info.pic_height * parse->info.pic_width * 3); in theora_parse_src_convert() 771 scale = 3 * (parse->info.pic_width * parse->info.pic_height) / 2; in theora_parse_src_convert() 792 3 * parse->info.pic_width * parse->info.pic_height, 2); in theora_parse_src_convert()
|
D | gsttheoraenc.c | 579 enc->info.pic_width = enc->width; in theora_enc_set_format()
|
/third_party/ffmpeg/libavcodec/ |
D | indeo4.c | 153 pic_conf.pic_width = get_bits(&ctx->gb, 16); in decode_pic_hdr() 156 pic_conf.pic_width = ivi4_common_pic_sizes[pic_size_indx * 2 ]; in decode_pic_hdr() 163 pic_conf.tile_width = scale_tile_size(pic_conf.pic_width, get_bits(&ctx->gb, 4)); in decode_pic_hdr() 166 pic_conf.tile_width = pic_conf.pic_width; in decode_pic_hdr() 175 pic_conf.chroma_width = (pic_conf.pic_width + 3) >> 2; in decode_pic_hdr() 183 …if (av_image_check_size2(pic_conf.pic_width, pic_conf.pic_height, avctx->max_pixels, AV_PIX_FMT_YU… in decode_pic_hdr() 185 pic_conf.pic_width, pic_conf.pic_height); in decode_pic_hdr() 681 ctx->pic_conf.pic_width = 0; in decode_init()
|
D | ivi.h | 203 uint16_t pic_width; member 276 return str1->pic_width != str2->pic_width || str1->pic_height != str2->pic_height || in ivi_pic_config_cmp()
|
D | indeo5.c | 94 pic_conf.pic_width = get_bits(&ctx->gb, 13); in decode_gop_header() 97 pic_conf.pic_width = ivi5_common_pic_sizes[pic_size_indx * 2 ] << 2; in decode_gop_header() 106 pic_conf.chroma_width = (pic_conf.pic_width + 3) >> 2; in decode_gop_header() 110 pic_conf.tile_width = pic_conf.pic_width; in decode_gop_header() 656 ctx->pic_conf.pic_width = avctx->width; in decode_init()
|
D | h264_mb.c | 227 const int pic_width = 16 * h->mb_width; in mc_dir_part() local 238 full_mx + 16 /*FIXME*/ > pic_width + extra_width || in mc_dir_part() 244 full_my - 2, pic_width, pic_height); in mc_dir_part() 264 pic_width, pic_height); in mc_dir_part() 278 pic_width, pic_height); in mc_dir_part() 303 pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */)); in mc_dir_part() 314 pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */)); in mc_dir_part()
|
D | cavs.c | 409 const int pic_width = 16 * h->mb_width; in mc_dir_part() local 422 full_mx + 16 /* FIXME */ > pic_width + extra_width || in mc_dir_part() 429 pic_width, pic_height); in mc_dir_part() 442 pic_width >> 1, pic_height >> 1); in mc_dir_part() 452 pic_width >> 1, pic_height >> 1); in mc_dir_part()
|
D | hevcdec.c | 1487 int pic_width = s->ps.sps->width; in luma_mc_uni() local 1500 x_off >= pic_width - block_w - QPEL_EXTRA_AFTER || in luma_mc_uni() 1511 pic_width, pic_height); in luma_mc_uni() 1548 int pic_width = s->ps.sps->width; in luma_mc_bi() local 1566 x_off0 >= pic_width - block_w - QPEL_EXTRA_AFTER || in luma_mc_bi() 1577 pic_width, pic_height); in luma_mc_bi() 1583 x_off1 >= pic_width - block_w - QPEL_EXTRA_AFTER || in luma_mc_bi() 1594 pic_width, pic_height); in luma_mc_bi() 1637 int pic_width = s->ps.sps->width >> s->ps.sps->hshift[1]; in chroma_mc_uni() local 1655 x_off >= pic_width - block_w - EPEL_EXTRA_AFTER || in chroma_mc_uni() [all …]
|
D | ivi.c | 299 …if (av_image_check_size2(cfg->pic_width, cfg->pic_height, avctx->max_pixels, AV_PIX_FMT_YUV410P, 0… in ff_ivi_init_planes() 304 planes[0].width = cfg->pic_width; in ff_ivi_init_planes() 309 planes[1].width = planes[2].width = (cfg->pic_width + 3) >> 2; in ff_ivi_init_planes()
|
D | libtheoraenc.c | 178 t_info.pic_width = avc_context->width; in encode_init()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | picture_csp_enc.c | 335 int pic_width, in ImportOneRow() argument 338 const int w = (pic_width + 1) & ~1; in ImportOneRow() 339 for (i = 0; i < pic_width; ++i) { in ImportOneRow() 345 if (pic_width & 1) { // replicate rightmost pixel in ImportOneRow() 346 dst[pic_width + 0 * w] = dst[pic_width + 0 * w - 1]; in ImportOneRow() 347 dst[pic_width + 1 * w] = dst[pic_width + 1 * w - 1]; in ImportOneRow() 348 dst[pic_width + 2 * w] = dst[pic_width + 2 * w - 1]; in ImportOneRow()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/ |
D | picture_csp_enc.c | 331 int pic_width, in ImportOneRow() argument 334 const int w = (pic_width + 1) & ~1; in ImportOneRow() 335 for (i = 0; i < pic_width; ++i) { in ImportOneRow() 341 if (pic_width & 1) { // replicate rightmost pixel in ImportOneRow() 342 dst[pic_width + 0 * w] = dst[pic_width + 0 * w - 1]; in ImportOneRow() 343 dst[pic_width + 1 * w] = dst[pic_width + 1 * w - 1]; in ImportOneRow() 344 dst[pic_width + 2 * w] = dst[pic_width + 2 * w - 1]; in ImportOneRow()
|
/third_party/gstreamer/gst_libav/ext/libav/ |
D | gstavviddec.h | 46 gint pic_width; member
|
D | gstavviddec.c | 532 ffmpegdec->pic_width = 0; in gst_ffmpegviddec_set_format() 1061 return !(ffmpegdec->pic_width == picture->width in picture_changed() 1099 ffmpegdec->pic_width, ffmpegdec->pic_height, in update_video_context() 1110 if (ffmpegdec->pic_width != picture->width in update_video_context() 1122 ffmpegdec->pic_width = picture->width; in update_video_context() 1344 (ffmpegdec), fmt, interlace_mode, ffmpegdec->pic_width, caps_height, in gst_ffmpegviddec_negotiate() 1349 (ffmpegdec), fmt, ffmpegdec->pic_width, caps_height, in gst_ffmpegviddec_negotiate() 1542 ffmpegdec->pic_width = 0; in gst_ffmpegviddec_negotiate() 2206 ffmpegdec->pic_width = 0; in gst_ffmpegviddec_stop()
|
/third_party/ffmpeg/fftools/ |
D | ffplay.c | 865 int pic_width, int pic_height, AVRational pic_sar) in calculate_display_rect() argument 873 aspect_ratio = av_mul_q(aspect_ratio, av_make_q(pic_width, pic_height)); in calculate_display_rect()
|