/external/speex/libspeex/ |
jitter.c | 4 Adaptive jitter buffer for Speex 49 + jitter 67 #define SPEEX_JITTER_MAX_BUFFER_SIZE 200 /**< Maximum number of packets in jitter buffer */ 137 /** Jitter buffer structure */ 169 /** Based on available data, this computes the optimal delay for the jitter buffer. 175 static spx_int16_t compute_opt_delay(JitterBuffer *jitter) 190 tb = jitter->_tb; 200 if (jitter->latency_tradeoff != 0) 201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; 203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count 274 JitterBuffer *jitter = (JitterBuffer*)speex_alloc(sizeof(JitterBuffer)); local [all...] |
/external/speex/include/speex/ |
speex_jitter.h | 4 @brief Adaptive jitter buffer for Speex 38 /** @defgroup JitterBuffer JitterBuffer: Adaptive jitter buffer 39 * This is the jitter buffer that reorders UDP/RTP packets and adjusts the buffer size 50 /** Generic adaptive jitter buffer state */ 53 /** Generic adaptive jitter buffer state */ 66 spx_uint32_t user_data; /**< Put whatever data you like here (it's ignored by the jitter buffer) */ 75 /** There was an error in the jitter buffer */ 92 /** Assign a function to destroy unused packet. When setting that, the jitter 98 /** Tell the jitter buffer to only adjust the delay in multiples of the step parameter provided */ 103 /** Tell the jitter buffer to only do concealment in multiples of the size parameter provided * [all...] |
/external/mesa3d/src/gallium/drivers/swr/ |
Makefile.am | 37 -I$(builddir)/rasterizer/jitter \ 42 -I$(srcdir)/rasterizer/jitter \ 58 rasterizer/jitter/state_llvm.h \ 59 rasterizer/jitter/builder_x86.h \ 60 rasterizer/jitter/builder_x86.cpp \ 68 swr_context_llvm.h: rasterizer/jitter/scripts/gen_llvm_types.py swr_context.h 70 $(srcdir)/rasterizer/jitter/scripts/gen_llvm_types.py \ 90 rasterizer/jitter/state_llvm.h: rasterizer/jitter/scripts/gen_llvm_types.py rasterizer/core/state.h 93 $(srcdir)/rasterizer/jitter/scripts/gen_llvm_types.py [all...] |
Makefile.sources | 108 rasterizer/jitter/blend_jit.cpp \ 109 rasterizer/jitter/blend_jit.h \ 110 rasterizer/jitter/builder.cpp \ 111 rasterizer/jitter/builder.h \ 112 rasterizer/jitter/builder_math.h \ 113 rasterizer/jitter/builder_misc.cpp \ 114 rasterizer/jitter/builder_misc.h \ 115 rasterizer/jitter/fetch_jit.cpp \ 116 rasterizer/jitter/fetch_jit.h \ 117 rasterizer/jitter/jit_api.h [all...] |
SConscript | 71 target = 'rasterizer/jitter/state_llvm.h', 72 script = swrroot + 'rasterizer/jitter/scripts/gen_llvm_types.py', 78 target = 'rasterizer/jitter/builder_gen.h', 79 script = swrroot + 'rasterizer/jitter/scripts/gen_llvm_ir_macros.py', 85 target = 'rasterizer/jitter/builder_gen.cpp', 86 script = swrroot + 'rasterizer/jitter/scripts/gen_llvm_ir_macros.py', 92 target = 'rasterizer/jitter/builder_x86.h', 93 script = swrroot + 'rasterizer/jitter/scripts/gen_llvm_ir_macros.py', 99 target = 'rasterizer/jitter/builder_x86.cpp', 100 script = swrroot + 'rasterizer/jitter/scripts/gen_llvm_ir_macros.py' [all...] |
/external/ltp/testcases/realtime/func/sched_jitter/ |
README | 3 This test measures scheduling jitter w/ realtime processes. 6 fixed amount of work. It then prints out the maximum jitter seen (longest
|
/external/webrtc/webrtc/video/ |
report_block_stats.cc | 40 block.jitter = rtcp_stats.jitter; 60 aggregate.jitter += report_block->jitter; 73 aggregate.jitter = static_cast<uint32_t>( 74 (aggregate.jitter + report_blocks.size() / 2) / report_blocks.size());
|
report_block_stats_unittest.cc | 26 block1_1_.jitter = 777; 31 block1_2_.jitter = 222; 36 block1_3_.jitter = 333; 42 block2_1_.jitter = 555; 47 block2_2_.jitter = 888; 64 block.jitter = stats.jitter; 87 EXPECT_EQ(0U, aggregated.jitter); 97 EXPECT_EQ(777U, aggregated.jitter); 103 EXPECT_EQ(222U, aggregated.jitter); [all...] |
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
report_block.h | 41 void WithJitter(uint32_t jitter) { jitter_ = jitter; } 51 uint32_t jitter() const { return jitter_; } function in class:webrtc::rtcp::ReportBlock
|
extended_jitter_report.cc | 30 // | inter-arrival jitter | 35 // | inter-arrival jitter | 50 LOG(LS_WARNING) << "Packet is too small to contain all the jitter."; 63 bool ExtendedJitterReport::WithJitter(uint32_t jitter) { 65 LOG(LS_WARNING) << "Max inter-arrival jitter items reached."; 68 inter_arrival_jitters_.push_back(jitter); 85 for (uint32_t jitter : inter_arrival_jitters_) { 86 ByteWriter<uint32_t>::WriteBigEndian(packet + *index, jitter);
|
extended_jitter_report.h | 35 bool WithJitter(uint32_t jitter); 38 uint32_t jitter(size_t index) const { function in class:webrtc::rtcp::ExtendedJitterReport
|
extended_jitter_report_unittest.cc | 61 EXPECT_EQ(0x11121314U, parsed().jitter(0)); 72 EXPECT_EQ(0x11121418U, parsed().jitter(0)); 73 EXPECT_EQ(0x22242628U, parsed().jitter(1));
|
/external/webrtc/webrtc/modules/video_coding/ |
jitter_estimator.h | 34 // Updates the jitter estimate with the new data. 47 // Returns the current jitter estimate in milliseconds and adds 52 // Return value : Jitter estimate in milliseconds 66 // A constant describing the delay from the jitter buffer 68 // for by the jitter buffer nor the decoding delay estimate. 80 // the frame size dependent jitter. 90 // Updates the random jitter estimate, i.e. the variance 102 // Calculates the current jitter estimate. 104 // Return value : The current jitter estimate in milliseconds 148 double _prevEstimate; // The previously returned jitter estimat [all...] |
receiver.h | 33 // jitter buffer. Useful for unit tests when you want to simulate incoming 34 // packets, in which case the jitter buffer's wait event is different from 73 // jitter buffer. The render time is estimated based on the render delay at
|
jitter_buffer.h | 110 // Initializes and starts jitter buffer. 113 // Signals all internal events and stops the jitter buffer. 116 // Returns true if the jitter buffer is running. 119 // Empty the jitter buffer of all its data. 122 // Get the number of received frames, by type, since the jitter buffer 126 // The number of packets discarded by the jitter buffer because the decoder 136 // Gets number of packets discarded by the jitter buffer. 162 // Releases a frame returned from the jitter buffer, should be called when 177 // Returns the estimated jitter in milliseconds. 277 // jitter buffer size) [all...] |
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
bwe_test.h | 153 // Jitter model: Truncated gaussian. 154 // Maximum end-to-end jitter: 30ms = 2*standard_deviation. 167 jitter(listener, flow_id) { 175 jitter(listener, flow_ids) { 183 jitter.SetMaxJitter(kMaxJitterMs); 188 JitterFilter jitter; member in struct:webrtc::testing::bwe::DefaultEvaluationFilter
|
/external/webrtc/webrtc/voice_engine/include/ |
voe_video_sync.h | 60 // Sets a minimum target delay for the jitter buffer. This delay is 61 // maintained by the jitter buffer, unless channel condition (jitter in 63 // jitter buffer delay is max of |delay_ms| and the latency that NetEq 73 // Returns the least required jitter buffer delay. This is computed by the 74 // the jitter buffer based on the inter-arrival time of RTP packets and
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/ |
base.py | 119 def retry(initial_delay, max_delay, factor=2.0, jitter=0.25, is_retriable=None): 126 jitter: to avoid lockstep, the returned delay is multiplied by a random 127 number between (1-jitter) and (1+jitter). To add a 20% jitter, set 128 jitter = 0.2. Must be < 1. 130 max_delay * (1 + jitter). 137 if jitter >= 1: 138 raise ValueError('jitter must be < 1; was %f' % (jitter,)) [all...] |
/frameworks/av/media/libstagefright/bqhelper/tests/ |
FrameDropper_test.cpp | 87 // return one of 1000, 0, -1000 as jitter. 101 int jitter = GetJitter(i); local 102 int64_t testTimeUs = frames[i].timeUs + jitter; 103 printf("time %lld, testTime %lld, jitter %d\n", 104 (long long)frames[i].timeUs, (long long)testTimeUs, jitter);
|
/compatibility/cdd/5_multimedia/ |
5_6_audio-latency.md | 27 * **cold output jitter**. The variability among separate measurements of cold 29 * **cold input jitter**. The variability among separate measurements of cold 47 * [SR] Minimize the cold output jitter 70 * [SR] Minimize the cold input jitter
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
neteq_unittest.proto | 28 optional uint32 jitter = 4;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
timex.h | 39 long int jitter; /* pps jitter (us) (ro) */ member in struct:timex 42 long int jitcnt; /* jitter limit exceeded (ro) */ 95 #define STA_PPSJITTER 0x0200 /* PPS signal jitter exceeded (ro) */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
timex.h | 39 long int jitter; /* pps jitter (us) (ro) */ member in struct:timex 42 long int jitcnt; /* jitter limit exceeded (ro) */ 95 #define STA_PPSJITTER 0x0200 /* PPS signal jitter exceeded (ro) */
|
/tools/tradefederation/contrib/res/config/google/test/framework/media/ |
audio-loopback-stress.xml | 3 <configuration description="Runs audio jitter tests">
|
audio-loopback.xml | 3 <configuration description="Run audio jitter tests">
|