Displaying 6 results from an estimated 6 matches for "scale_factors".
Did you mean:
scale_factor
2007 Feb 15
0
8 commits - libswfdec/swfdec_bits.h libswfdec/swfdec_font.c libswfdec/swfdec_font.h libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_tag.c libswfdec/swfdec_text.c libswfdec/swfdec_text.h test/swfedit_token.c test/various
libswfdec/swfdec_bits.h | 2
libswfdec/swfdec_font.c | 289 ++++++++++++++++++++++++++++++++++++-
libswfdec/swfdec_font.h | 16 +-
libswfdec/swfdec_loader.c | 144 ++++++++++++++++++
libswfdec/swfdec_loader_internal.h | 9 +
libswfdec/swfdec_tag.c | 158 --------------------
libswfdec/swfdec_text.c | 12 +
2002 Jan 03
3
Suggestion for libvorbisfile: scaling
I've been experimenting with the ideas of Replay Gain[1] and find that
ogg123 doesn't have a way of specifying the scaling applied to
replayed samples (like -f in mpg123).
Looking at libvorbisfile, I see no function exactly matching this
possibly desirable behaviour.
ov_read() scales by either 128 (byte output) or 32768 (word output),
but there's nothing in between.
ov_read_float()
2013 Jan 08
0
[PATCH] avoid undefined behavior in fmt_scaled()
...N) {
+ errno = ERANGE;
+ return -1;
+ }
+
abval = (number < 0LL) ? -number : number; /* no long long_abs yet */
- /* Not every negative long long has a positive representation.
- * Also check for numbers that are just too darned big to format
- */
- if (abval < 0 || abval / 1024 >= scale_factors[SCALE_LENGTH-1]) {
+ /* Check for numbers that are just too darned big to format. */
+ if (abval / 1024 >= scale_factors[SCALE_LENGTH-1]) {
errno = ERANGE;
return -1;
}
2011 Jul 14
1
Error: "non-numeric argument to binary operator"
Hi
I am posting in the topic related to the "non-numeric argument to binary
operator" as I got similar problem while running the netcdf code. I have
attached the file with this post. It is a climate data from NOAA site. The code
follows as:
library(survival)
library(RNetCDF)
library(ncdf)
setwd("c:/projects/netcdfcsfiles")
Conn42 =
2011 Jun 17
0
Inconsistent results from var.get.nc in RNetCDF
Hello -
I am having trouble extracting data from NetCDF data files using
RNetCDF. The data files each have 3 dimensions (longitude, latitude,
and a date) and 3 variables (latitude, longitude, and a climate
variable).
Here is some of the output from print.nc for clarity:
-----
dimensions:
month = UNLIMITED ; // (1368 currently)
lat = 3105 ;
lon = 7025 ;
variables:
float
2008 Jun 13
16
Isolation and time
(Moving from offlist discussion.)
I''m interested in opinions... Assume there are four
single vcpu domains A, B, C, D, running on a 2-CPU
physical machine. We wish to test for time skew on
domain A. Assuming B, C, and D are all running
some workload that attempts to fully saturate the
(single) cpu.
1) Should the affect on domain A be essentially the
same regardless of what load