Home
last modified time | relevance | path

Searched refs:hscale (Results 1 – 15 of 15) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dtruemotion2rt.c38 int hscale; member
90 s->hscale = 1 + !!header_buffer[3]; in truemotion2rt_decode_header()
119 …if ((avctx->width + s->hscale - 1)/ s->hscale * avctx->height * s->delta_size > avpkt->size * 8LL … in truemotion2rt_decode_frame()
135 for (x = 0; x < avctx->width; x += s->hscale) { in truemotion2rt_decode_frame()
142 if (s->hscale > 1) { in truemotion2rt_decode_frame()
145 for (x = 1; x < avctx->width; x += s->hscale) in truemotion2rt_decode_frame()
161 for (x = 0; x < avctx->width >> 2; x += s->hscale) { in truemotion2rt_decode_frame()
168 if (s->hscale > 1) { in truemotion2rt_decode_frame()
171 for (x = 1; x < avctx->width >> 2; x += s->hscale) in truemotion2rt_decode_frame()
187 for (x = 0; x < avctx->width >> 2; x += s->hscale) { in truemotion2rt_decode_frame()
[all …]
Dvp8.c548 int part1_size, hscale, vscale, i, j, ret; in vp7_decode_frame_header() local
588 hscale = vp8_rac_get_uint(c, 2); in vp7_decode_frame_header()
590 if (hscale || vscale) in vp7_decode_frame_header()
712 int header_size, hscale, vscale, ret; in vp8_decode_frame_header() local
753 hscale = buf[4] >> 6; in vp8_decode_frame_header()
758 if (hscale || vscale) in vp8_decode_frame_header()
/third_party/gstreamer/gstplugins_base/tests/examples/seek/
Dscrubby.c39 static GtkWidget *hscale; variable
154 gtk_widget_queue_draw (hscale); in update_scale()
189 g_signal_handler_disconnect (hscale, changed_id); in seek_cb()
291 g_signal_connect (hscale, "value_changed", G_CALLBACK (seek_cb), in start_seek()
309 g_signal_handler_disconnect (hscale, changed_id); in stop_seek()
313 do_seek (hscale, FALSE, FALSE); in stop_seek()
394 if (!do_seek (hscale, FALSE, update_id == 0)) { in bus_message()
397 g_signal_connect (hscale, "value_changed", G_CALLBACK (seek_cb), in bus_message()
492 hscale = gtk_scale_new (GTK_ORIENTATION_HORIZONTAL, adjustment); in main()
493 gtk_scale_set_digits (GTK_SCALE (hscale), 2); in main()
[all …]
Djsseek.c102 static GtkWidget *hscale, *statusbar; variable
1150 g_signal_handlers_block_by_func (hscale, (void *) start_seek, in set_scale()
1152 g_signal_handlers_block_by_func (hscale, (void *) stop_seek, in set_scale()
1154 g_signal_handlers_block_by_func (hscale, (void *) seek_cb, (void *) pipeline); in set_scale()
1156 g_signal_handlers_unblock_by_func (hscale, (void *) start_seek, in set_scale()
1158 g_signal_handlers_unblock_by_func (hscale, (void *) stop_seek, in set_scale()
1160 g_signal_handlers_unblock_by_func (hscale, (void *) seek_cb, in set_scale()
1162 gtk_widget_queue_draw (hscale); in set_scale()
1202 gtk_range_set_fill_level (GTK_RANGE (hscale), fill); in update_fill()
1429 g_signal_connect (hscale, "value_changed", G_CALLBACK (seek_cb), in start_seek()
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_scale_cuda.cu37 float hscale = (float)src_width / (float)dst_width; in Subsample_Nearest() local
39 float xi = (xo + 0.5f) * hscale; in Subsample_Nearest()
58 float hscale = (float)src_width / (float)dst_width; in Subsample_Bilinear() local
60 float xi = (xo + 0.5f) * hscale; in Subsample_Bilinear()
63 float wh = min(max(0.5f * (hscale - 1.0f), 0.0f), 1.0f); in Subsample_Bilinear()
Dvf_scale_cuda_bicubic.cu97 float hscale = (float)src_width / (float)dst_width; in Subsample_Bicubic() local
99 float xi = (xo + 0.5f) * hscale - 0.5f; in Subsample_Bicubic()
140 float hscale = (float)src_width / (float)dst_width; in Subsample_FastBicubic() local
142 float xi = (xo + 0.5f) * hscale - 0.5f; in Subsample_FastBicubic()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-scaler.c1202 get_functions (GstVideoScaler * hscale, GstVideoScaler * vscale, in get_functions() argument
1272 switch (hscale ? hscale->resampler.max_taps : 0) { in get_functions()
1314 switch (hscale ? hscale->resampler.max_taps : 0) { in get_functions()
1451 gst_video_scaler_2d (GstVideoScaler * hscale, GstVideoScaler * vscale, in gst_video_scaler_2d() argument
1465 if (!get_functions (hscale, vscale, format, &hfunc, &vfunc, &n_elems, &width, in gst_video_scaler_2d()
1475 if (hscale == NULL) { in gst_video_scaler_2d()
1492 if (hscale->tmpwidth < width) in gst_video_scaler_2d()
1493 realloc_tmplines (hscale, n_elems, width); in gst_video_scaler_2d()
1497 hfunc (hscale, LINE (src, src_stride, i), LINE (dest, dest_stride, i), in gst_video_scaler_2d()
1513 if (hscale == NULL) { in gst_video_scaler_2d()
[all …]
Dvideo-scaler.h91 void gst_video_scaler_2d (GstVideoScaler *hscale,
/third_party/ffmpeg/libswscale/aarch64/
DMakefile5 NEON-OBJS += aarch64/hscale.o \
/third_party/ffmpeg/libswscale/arm/
DMakefile6 NEON-OBJS += arm/hscale.o \
/third_party/ffmpeg/libswscale/x86/
Dscale.asm36 ; void hscale<source_width>to<intermediate_nbits>_<filterSize>_<opt>
53 cglobal hscale%1to%2_%4, %5, 7, %6, pos0, dst, w, src, filter, fltpos, pos1
55 cglobal hscale%1to%2_%4, %5, 10, %6, pos0, dst, w, srcmem, filter, fltpos, fltsize
/third_party/ffmpeg/libswscale/
DMakefile8 hscale.o \
/third_party/gstreamer/gstplugins_bad/ext/assrender/
Dgstassrender.c1077 gdouble hscale, vscale; in gst_ass_render_composite_overlay() local
1122 hscale = (gdouble) render->info.width / (gdouble) render->ass_frame_width; in gst_ass_render_composite_overlay()
1126 hscale * min_x, vscale * min_y, hscale * width, vscale * height, in gst_ass_render_composite_overlay()
/third_party/ffmpeg/
DBUILD.gn71 "//third_party/ffmpeg/libswscale/aarch64/hscale.S",
1584 "//third_party/ffmpeg/libswscale/hscale.c",
/third_party/gstreamer/gstplugins_base/
DChangeLog56837 get_functions a known format, but no hscale or vscale, it'll return
56840 hscale->resampler.max_taps could return 0.