Home
last modified time | relevance | path

Searched refs:speed_adj (Results 1 – 8 of 8) sorted by relevance

/dports/audio/mhwaveedit/mhwaveedit-1.4.24/src/
H A Dmainwindow.h42 GtkAdjustment *view_adj,*zoom_adj,*vertical_zoom_adj,*speed_adj; member
H A Dmainwindow.c476 if (speed_reset) gtk_adjustment_set_value(w->speed_adj,-1.0); in do_play()
477 document_play(w->doc, start, end, loop, -w->speed_adj->value); in do_play()
479 if (speed_reset) gtk_adjustment_set_value(w->speed_adj,1.0); in do_play()
480 document_play(w->doc, start, end, loop, w->speed_adj->value); in do_play()
2561 gtk_adjustment_set_value(mw->speed_adj, -1.0); in speed_scale_press()
2563 gtk_adjustment_set_value(mw->speed_adj, 1.0); in speed_scale_press()
2607 obj->speed_adj = in mainwindow_init()
2610 obj->speed_adj = in mainwindow_init()
2613 gtk_signal_connect(GTK_OBJECT(obj->speed_adj),"value-changed", in mainwindow_init()
2709 c = gtk_vscale_new ( obj->speed_adj ); in mainwindow_init()
[all …]
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/visualizer/visualizer/
H A Dcore.py1033 speed_adj = Gtk.Adjustment(value=1.0, lower=0.01, upper=10.0,
1040 speed_adj.connect("value-changed", _speed_changed)
1041 speed = Gtk.SpinButton.new(speed_adj, 1, 0)
1046 _speed_changed(speed_adj)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libaom/source/libaom/av1/encoder/
H A Dlevel.c733 const double speed_adj = in get_min_cr() local
735 return AOMMAX(min_cr_basis * speed_adj, 0.8); in get_min_cr()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaom/source/libaom/av1/encoder/
H A Dlevel.c735 const double speed_adj = in get_min_cr() local
737 return AOMMAX(min_cr_basis * speed_adj, 0.8); in get_min_cr()
/dports/multimedia/aom/aom-3.2.0/av1/encoder/
H A Dlevel.c729 const double speed_adj = in get_min_cr() local
731 return AOMMAX(min_cr_basis * speed_adj, 0.8); in get_min_cr()
/dports/graphics/dssim/dssim-3.1.2/cargo-crates/libaom-sys-0.9.1/vendor/av1/encoder/
H A Dlevel.c735 const double speed_adj = in get_min_cr() local
737 return AOMMAX(min_cr_basis * speed_adj, 0.8); in get_min_cr()
/dports/audio/denemo/denemo-2.0.6/src/core/
H A Dview.c68 static GtkAdjustment *speed_adj; variable
4565 speed_adj = (GtkAdjustment *) gtk_adjustment_new (1.0, 1.0, 4.0, 0.01, 0.1, 0.0); in create_window()
4569 hscale = gtk_hscale_new (GTK_ADJUSTMENT (speed_adj)); in create_window()
4573 g_signal_connect (G_OBJECT (speed_adj), "value_changed", G_CALLBACK (set_speed), NULL); in create_window()