search for: timebase

Displaying 20 results from an estimated 78 matches for "timebase".

2005 Oct 05
1
Simple encodig sample...
...og; /* one Ogg bitstream page. Vorbis packets are inside */ ogg_packet op; /* one raw packet of data for decode */ theora_state td; theora_info ti; theora_comment tc; int vkbps = 0; int ret; ogg_int64_t video_bytesout = 0; double timebase; FILE* outfile; outfile = fopen( "test.ogg","wb" ); if( outfile == NULL ) { fprintf( stderr, "Unable to open output file '%s'\n", "test.ogg" ); exit( 1 ); } srand( time( NULL ) ); { /* need two i...
2004 Aug 12
1
Fwd: Timebased predictions in postgresql.
Hi r-people :) I'm sorry to disturb but I must admit that I know amazingly little about R and similar statistics-packages/languages and I'm kind of lost on where to start. I'm currently working on a datacollection framework for postgresql (The db doesn't really matter except that I hope to use PL/R) and I would like to be able to predict future values preferable 1 day or more
2007 Apr 18
1
Use of absolute timeouts for oneshot timers
...from now", but the meaning of "now" is ambiguous, particularly if the vcpu can be preempted at any time, which means the determination of "now" can be arbitrarily deferred. However, an absolute time is only meaningful if the kernel and hypervisor are operating off the same timebase (ie, no drift). In general, the kernel's monotonic timer is going to start from 0ns when the virtual machine is booted, and the hypervisor's is going to start at 0ns when the hypervisor is booted. If they're operating off the same timebase, then in principle you can work out a constan...
2007 Apr 18
1
Use of absolute timeouts for oneshot timers
...from now", but the meaning of "now" is ambiguous, particularly if the vcpu can be preempted at any time, which means the determination of "now" can be arbitrarily deferred. However, an absolute time is only meaningful if the kernel and hypervisor are operating off the same timebase (ie, no drift). In general, the kernel's monotonic timer is going to start from 0ns when the virtual machine is booted, and the hypervisor's is going to start at 0ns when the hypervisor is booted. If they're operating off the same timebase, then in principle you can work out a constan...
2013 Jun 11
8
[PATCH v2] xen: fix initialization of wallclock time for PVHVM on migration
...== d ) { new_has_32bit = (hvm_guest_x86_mode(current) != 8); - if (new_has_32bit != d->arch.has_32bit_shinfo) { + if (new_has_32bit != d->arch.has_32bit_shinfo) d->arch.has_32bit_shinfo = new_has_32bit; - /* - * Make sure that the timebase in the shared info - * structure is correct for its new bit-ness. We should - * arguably try to convert the other fields as well, but - * that's much more problematic (e.g. what do you do if - * you're going from 64 bit to 32 bit and there...
2004 Nov 16
0
metadata switches for ffmpeg2theora
...acketin (&info->vo, &info->op); } } - info.audioflag=1; + info->audioflag=1; /* - if (ogg_stream_eos (&info.vo)){ - info.audioflag = 0; + if (ogg_stream_eos (&info->vo)){ + info->audioflag = 0; return 0; } */ return 0; } -void print_stats(double timebase){ +static void print_stats(theoraframes_info *info, double timebase){ int hundredths = timebase * 100 - (long) timebase * 100; int seconds = (long) timebase % 60; int minutes = ((long) timebase / 60) % 60; int hours = (long) timebase / 3600; - if(info.vkbps<0) - info.vkbps=0; - if(inf...
2004 Nov 17
3
Jitter buffer
...r buffer handle everything. >That'll be both simpler and better (slightly lower latency, slightly >less frame dropping/interpolation). > > Because we need to synchronize multiple speakers in the conference: On the incoming side, each incoming "stream" has it's own timebase and timestamps, and jitter. If we just passed that through (even if we adjusted the timebases), the different jitter characteristics of each speaker would create chaos for listeners, and they'd end up with overlapping frames, etc.. -SteveK -------------- next part -------------- An HTML...
2001 Sep 26
1
[PATCH] random SSH_MSG_IGNORE packets
...ct, and send a random SSH_MSG_IGNORE + * packet when the timeout expires to fool traffic analysis. */ - - if (select((*maxfdp)+1, *readsetp, *writesetp, NULL, NULL) < 0) { + if (options.bogus_traffic_interval_max) { + u_int32_t rand = arc4random(); + u_int64_t timeusec; + static u_int64_t timebase = 0; + u_int32_t interval_min = options.bogus_traffic_interval_min; + u_int32_t interval_max = options.bogus_traffic_interval_max; + + if (!timebase) + timebase = (interval_max - interval_min) * 1000000; + timeusec = timebase * rand / 0xffffffff; + timeusec += interval_min * 1000000; + tv...
2003 Apr 04
5
Anti-idle in OpenSSH client?
Heya, Most of the windows ssh clients (putty, securecrt) have anti-idle features. They offer either a null packet or protocol no-op or user defined string to be sent over every x seconds. Is this possible or planned with the OpenSSH client? Our draconian firewall admins have started timing out ssh sessions. Yes I'm aware I could hack up a port forwarding dumb traffic process, but was
2000 Jun 13
3
putting the video into ogg multimedia
With both vorbis and libmng nearing stable status, I've been thinking about combining the two to make a real multimedia format. What would be involved in embedding mng in an ogg bitstream? From what I've read of the documentation, there doesn't seem to be any codec-enumeration system. Do we just interleave the packets and let the player guess based on the headers which codec to try? I
2004 Nov 17
0
Jitter buffer
...to know the number of bits for each mode (that's already in the mode struct, since I use it to skip wideband in some cases) and do some jumping. > Because we need to synchronize multiple speakers in the conference: > On the incoming side, each incoming "stream" has it's own timebase and > timestamps, and jitter. If we just passed that through (even if we > adjusted the timebases), the different jitter characteristics of each > speaker would create chaos for listeners, and they'd end up with > overlapping frames, etc.. Assuming the clocks aren't synchroniz...
2012 Nov 29
0
What am I missing when using zoo on version 2.15?
...443 443.0000 .. which looks ok to me. The error msg on version 2.15 is > ggof(obs=predicoes$Real,sim=predicoes$Predito,main="Predicao Vazao - NARMAX MISO", + legend=c("Predito","Real")) Error in try.xts(x, error = "'x' needs to be timeBased or xtsible") : 'x' needs to be timeBased or xtsible Just a remainder - there is no error whatsoever on version 2.13. What am I missing? Many thanks Ed [[alternative HTML version deleted]]
2009 Mar 06
1
Process accounting in interrupt diabled cases
Hi, I am not sure, but I think this may be a process accounting bug. If interrupts are disabled for a considerable amount of time ( say multiple ticks), the process accounting code will still account a single tick for such cases, on the next interrupt tick. Shouldn't we have some way to fix that case like we do for NO_HZ restart_sched_tick case, where we account for multiple idle ticks.
2009 Mar 06
1
Process accounting in interrupt diabled cases
Hi, I am not sure, but I think this may be a process accounting bug. If interrupts are disabled for a considerable amount of time ( say multiple ticks), the process accounting code will still account a single tick for such cases, on the next interrupt tick. Shouldn't we have some way to fix that case like we do for NO_HZ restart_sched_tick case, where we account for multiple idle ticks.
2004 Nov 17
1
Jitter buffer
...peex so it will ask speex to predict what it thinks are lost frames, and speex would know that the interpolation should be silence (or CNG). >>Because we need to synchronize multiple speakers in the conference: >>On the incoming side, each incoming "stream" has it's own timebase and >>timestamps, and jitter. If we just passed that through (even if we >>adjusted the timebases), the different jitter characteristics of each >>speaker would create chaos for listeners, and they'd end up with >>overlapping frames, etc.. >> >> > &gt...
2012 May 25
2
Query about creating time sequences
...ove all these records after merging. Although I havent checked the feasibility of this method, it would be complex and more so it will increase the data four folds (I already have 2 million records in the dataframe which I have to make regular). Another approach that I could think of was to make a timebased sequence based on the date from the file and then use a loop to append one sequence after another. But am not having much success there either. Any kind of help would be greatly appreciated. Thanks and regards, Shivam structure(list("20110103", "20110104", "20110105&quo...
2001 Aug 25
4
Ogg MIDI proposal
...n an Ogg page. MIDI header packet format ------------------------- The MIDI header will be: 'OggMIDI\000' version (1 byte) - this is the OggMIDI version supported, starts from 0 time format (1 byte) - this is the time format, 1 for ticks per quarternote; 24,25,29,30 for SMTPE time timebase (2 bytes) - subdivisions per SMTPE frame or ticks per quarternote MIDI packet format ------------------ <midi event><midi event>... Changes to Vorbis ----------------- libvorbisfile will need to be modified to recognize substreams and ignore all but the first valid Vorbis stream. Com...
2010 Oct 26
1
Time series data with dropouts/gaps
...bundant R references (tutorials, wiki, etc.), but I was hoping to find pointers here to help me become productive sooner rather than later. Here's my present brute-force plan of attack: - Load both data sets (in CSV format). Each data element is a timestamp + 3-axis acceleration. - Determine timebase offset: The unit clocks don't match perfectly, and the units were started at slightly different times, so I expect to correlate common events in the data. - Find all overlapping data clusters (between superset of gaps). - See if I have enough data to perform spectral analysis. I'd like to...
2000 Jun 14
1
(no subject)
...ve been steadfast in limiting its scope to a well-defined feature set. While the chunk structure of the files could be made to include other data types, I think mng-over-ogg makes more sense than ogg-over-mng. > So, is it a video format, or not? What I really mean is, does MNG > have a real timebase, or are MNG animations free-running? A real > timebase is necessary to synch up with audio. Hmm. Having thought about this more carefully, there may be some issues here. I haven't read the entire spec, so I may be missing some ideas, but this is my current understanding: First of all, mn...
2008 Mar 26
1
[kvm-ppc-devel] virtio network traffic issues
...nd polling at the same time. Good message: it was slow, but I saw a login prompt ;-) here a guest "cat /proc/cpuinfo" cat /proc/cpuinfo processor : 0 cpu : unknown (00000000) clock : 666.666660MHz revision : 0.0 (pvr 0000 0000) bogomips : 2490.36 timebase : 666666660 platform : Bamboo That means once we found the reason for that staving virto-net device we should have a basic working linux guest. P.S. added virtualization at lists.linux-foundation.org (this time) to get any virtio-net related suggestions from there too -- Gr?sse /...