Home
last modified time | relevance | path

Searched refs:lowroom (Results 1 – 25 of 46) sorted by relevance

12

/dports/games/xray_re-tools/xray_re-tools-52721d2/sources/3rd-party/libvorbis/doc/
H A D07-floor1.tex277 12) [lowroom] = [predicted]
278 13) if ( [highroom] is less than [lowroom] ) \{
282 \} else [highroom] is not less than [lowroom] \{
284 15) [room] = [lowroom] * 2
295 21) if ( [highroom] is greater than [lowroom] ) \{
297 22) vector [floor1_final_Y] element [i] = [val] - [lowroom] + [predicted]
299 \} else [highroom] is not greater than [lowroom] \{
/dports/audio/libvorbis/libvorbis-1.3.7/doc/
H A D07-floor1.tex289 12) [lowroom] = [predicted]
290 13) if ( [highroom] is less than [lowroom] ) \{
294 \} else [highroom] is not less than [lowroom] \{
296 15) [room] = [lowroom] * 2
307 21) if ( [highroom] is greater than [lowroom] ) \{
309 22) vector [floor1\_final\_Y] element [i] = [val] - [lowroom] + [predicted]
311 \} else [highroom] is not greater than [lowroom] \{
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/external/libvorbis-1.3.5/doc/
H A D07-floor1.tex290 12) [lowroom] = [predicted]
291 13) if ( [highroom] is less than [lowroom] ) \{
295 \} else [highroom] is not less than [lowroom] \{
297 15) [room] = [lowroom] * 2
308 21) if ( [highroom] is greater than [lowroom] ) \{
310 22) vector [floor1\_final\_Y] element [i] = [val] - [lowroom] + [predicted]
312 \} else [highroom] is not greater than [lowroom] \{
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/lewton-0.9.4/src/
H A Daudio.rs414 let lowroom = predicted; in floor_one_curve_compute_amplitude() localVariable
415 let room = min(highroom, lowroom) * 2; in floor_one_curve_compute_amplitude()
421 if highroom > lowroom { in floor_one_curve_compute_amplitude()
422 (predicted + val - lowroom) in floor_one_curve_compute_amplitude()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/lewton-0.10.2/src/
H A Daudio.rs411 let lowroom = predicted; in floor_one_curve_compute_amplitude() localVariable
412 let room = min(highroom, lowroom) * 2; in floor_one_curve_compute_amplitude()
418 if highroom > lowroom { in floor_one_curve_compute_amplitude()
419 predicted + val - lowroom in floor_one_curve_compute_amplitude()
/dports/audio/lewton/lewton-0.10.2/src/
H A Daudio.rs411 let lowroom = predicted; in floor_one_curve_compute_amplitude() localVariable
412 let room = min(highroom, lowroom) * 2; in floor_one_curve_compute_amplitude()
418 if highroom > lowroom { in floor_one_curve_compute_amplitude()
419 predicted + val - lowroom in floor_one_curve_compute_amplitude()
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/lewton-0.10.2/src/
H A Daudio.rs411 let lowroom = predicted; in floor_one_curve_compute_amplitude() localVariable
412 let room = min(highroom, lowroom) * 2; in floor_one_curve_compute_amplitude()
418 if highroom > lowroom { in floor_one_curve_compute_amplitude()
419 predicted + val - lowroom in floor_one_curve_compute_amplitude()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/lewton-0.10.2/src/
H A Daudio.rs411 let lowroom = predicted; in floor_one_curve_compute_amplitude() localVariable
412 let room = min(highroom, lowroom) * 2; in floor_one_curve_compute_amplitude()
418 if highroom > lowroom { in floor_one_curve_compute_amplitude()
419 predicted + val - lowroom in floor_one_curve_compute_amplitude()
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/lewton-0.9.4/src/
H A Daudio.rs414 let lowroom = predicted;
415 let room = min(highroom, lowroom) * 2;
421 if highroom > lowroom {
422 (predicted + val - lowroom)
/dports/sysutils/xvidcap/xvidcap-1.1.7/ffmpeg/libavcodec/
H A Dvorbis_dec.c1173 uint_fast16_t val, highroom, lowroom, room; in vorbis_floor1_decode() local
1192 lowroom=predicted; in vorbis_floor1_decode()
1193 if (highroom < lowroom) { in vorbis_floor1_decode()
1196 room=lowroom*2; // SPEC mispelling in vorbis_floor1_decode()
1203 if (highroom > lowroom) { in vorbis_floor1_decode()
1204 floor1_Y_final[i]=val-lowroom+predicted; in vorbis_floor1_decode()
H A Dvorbis_enc.c724 int lowroom = predicted; in floor_encode() local
725 int room = FFMIN(highroom, lowroom); in floor_encode()
735 coded[i] = posts[i] - predicted + lowroom; in floor_encode()
/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/
H A Dvorbisdec.c1278 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs; in vorbis_floor1_decode() local
1295 lowroom = predicted; in vorbis_floor1_decode()
1296 if (highroom < lowroom) { in vorbis_floor1_decode()
1299 room = lowroom * 2; // SPEC misspelling in vorbis_floor1_decode()
1306 if (highroom > lowroom) { in vorbis_floor1_decode()
1307 floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted); in vorbis_floor1_decode()
H A Dvorbisenc.c815 int lowroom = predicted; in floor_encode() local
816 int room = FFMIN(highroom, lowroom); in floor_encode()
828 coded[i] = posts[i] - predicted + lowroom; in floor_encode()
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavcodec/
H A Dvorbisdec.c1255 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs; in vorbis_floor1_decode() local
1272 lowroom = predicted; in vorbis_floor1_decode()
1273 if (highroom < lowroom) { in vorbis_floor1_decode()
1276 room = lowroom * 2; // SPEC misspelling in vorbis_floor1_decode()
1283 if (highroom > lowroom) { in vorbis_floor1_decode()
1284 floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted); in vorbis_floor1_decode()
H A Dvorbisenc.c785 int lowroom = predicted; in floor_encode() local
786 int room = FFMIN(highroom, lowroom); in floor_encode()
798 coded[i] = posts[i] - predicted + lowroom; in floor_encode()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/
H A Dvorbisdec.c1278 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs; in vorbis_floor1_decode() local
1295 lowroom = predicted; in vorbis_floor1_decode()
1296 if (highroom < lowroom) { in vorbis_floor1_decode()
1299 room = lowroom * 2; // SPEC misspelling in vorbis_floor1_decode()
1306 if (highroom > lowroom) { in vorbis_floor1_decode()
1307 floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted); in vorbis_floor1_decode()
H A Dvorbisenc.c815 int lowroom = predicted; in floor_encode() local
816 int room = FFMIN(highroom, lowroom); in floor_encode()
828 coded[i] = posts[i] - predicted + lowroom; in floor_encode()
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavcodec/
H A Dvorbisdec.c1272 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs; in vorbis_floor1_decode() local
1289 lowroom = predicted; in vorbis_floor1_decode()
1290 if (highroom < lowroom) { in vorbis_floor1_decode()
1293 room = lowroom * 2; // SPEC misspelling in vorbis_floor1_decode()
1300 if (highroom > lowroom) { in vorbis_floor1_decode()
1301 floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted); in vorbis_floor1_decode()
H A Dvorbisenc.c815 int lowroom = predicted; in floor_encode() local
816 int room = FFMIN(highroom, lowroom); in floor_encode()
828 coded[i] = posts[i] - predicted + lowroom; in floor_encode()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavcodec/
H A Dvorbisdec.c1278 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs; in vorbis_floor1_decode() local
1295 lowroom = predicted; in vorbis_floor1_decode()
1296 if (highroom < lowroom) { in vorbis_floor1_decode()
1299 room = lowroom * 2; // SPEC misspelling in vorbis_floor1_decode()
1306 if (highroom > lowroom) { in vorbis_floor1_decode()
1307 floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted); in vorbis_floor1_decode()
H A Dvorbisenc.c815 int lowroom = predicted; in floor_encode() local
816 int room = FFMIN(highroom, lowroom); in floor_encode()
828 coded[i] = posts[i] - predicted + lowroom; in floor_encode()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavcodec/
H A Dvorbisdec.c1255 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs; in vorbis_floor1_decode() local
1272 lowroom = predicted; in vorbis_floor1_decode()
1273 if (highroom < lowroom) { in vorbis_floor1_decode()
1276 room = lowroom * 2; // SPEC misspelling in vorbis_floor1_decode()
1283 if (highroom > lowroom) { in vorbis_floor1_decode()
1284 floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted); in vorbis_floor1_decode()
H A Dvorbisenc.c785 int lowroom = predicted; in floor_encode() local
786 int room = FFMIN(highroom, lowroom); in floor_encode()
798 coded[i] = posts[i] - predicted + lowroom; in floor_encode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavcodec/
H A Dvorbisdec.c1278 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs; in vorbis_floor1_decode() local
1295 lowroom = predicted; in vorbis_floor1_decode()
1296 if (highroom < lowroom) { in vorbis_floor1_decode()
1299 room = lowroom * 2; // SPEC misspelling in vorbis_floor1_decode()
1306 if (highroom > lowroom) { in vorbis_floor1_decode()
1307 floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted); in vorbis_floor1_decode()
H A Dvorbisenc.c815 int lowroom = predicted; in floor_encode() local
816 int room = FFMIN(highroom, lowroom); in floor_encode()
828 coded[i] = posts[i] - predicted + lowroom; in floor_encode()

12