Searched refs:subframe (Results 1 - 24 of 24) sorted by relevance

/external/flac/libFLAC/include/private/
H A Dstream_encoder_framing.h40 FLAC__bool FLAC__subframe_add_constant(const FLAC__Subframe_Constant *subframe, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw);
41 FLAC__bool FLAC__subframe_add_fixed(const FLAC__Subframe_Fixed *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw);
42 FLAC__bool FLAC__subframe_add_lpc(const FLAC__Subframe_LPC *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw);
43 FLAC__bool FLAC__subframe_add_verbatim(const FLAC__Subframe_Verbatim *subframe, unsigned samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Ddecode_residual.c45 int16_t subcount, subframe; local
124 for (subframe=0; subframe<Nfor; subframe++) {
128 &decresidual[(iLBC_encbits->startIdx+1+subframe)*SUBL],
137 &decresidual[(iLBC_encbits->startIdx+1+subframe)*SUBL], SUBL);
163 for (subframe=0; subframe<Nback; subframe++) {
167 &reverseDecresidual[subframe*SUB
[all...]
H A Dencode.c54 int subcount, subframe; local
298 for (subframe = 0; subframe < WEBRTC_SPL_MIN (Nfor, 2); subframe++)
304 subframe) * SUBL], SUBL);
335 for (subframe = start_count; subframe < end_count; subframe++){
337 /* encode subframe */
341 &residual[(iLBCbits_inst->startIdx+1+subframe)*SUB
[all...]
/external/flac/libFLAC/
H A Dstream_encoder_framing.c366 FLAC__bool FLAC__subframe_add_constant(const FLAC__Subframe_Constant *subframe, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw) argument
373 FLAC__bitwriter_write_raw_int32(bw, subframe->value, subframe_bps)
379 FLAC__bool FLAC__subframe_add_fixed(const FLAC__Subframe_Fixed *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw) argument
383 if(!FLAC__bitwriter_write_raw_uint32(bw, FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK | (subframe->order<<1) | (wasted_bits? 1:0), FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN))
389 for(i = 0; i < subframe->order; i++)
390 if(!FLAC__bitwriter_write_raw_int32(bw, subframe->warmup[i], subframe_bps))
393 if(!add_entropy_coding_method_(bw, &subframe->entropy_coding_method))
395 switch(subframe->entropy_coding_method.type) {
400 subframe->residual,
402 subframe
417 FLAC__subframe_add_lpc(const FLAC__Subframe_LPC *subframe, unsigned residual_samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw) argument
463 FLAC__subframe_add_verbatim(const FLAC__Subframe_Verbatim *subframe, unsigned samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw) argument
[all...]
H A Dstream_encoder.c169 FLAC__Subframe *subframe[2],
180 const FLAC__Subframe *subframe,
189 FLAC__Subframe *subframe
207 FLAC__Subframe *subframe,
229 FLAC__Subframe *subframe,
239 FLAC__Subframe *subframe
344 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
356 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
2985 * Check for wasted bits; set effective bps for each subframe
3180 FLAC__Subframe *subframe[
3173 process_subframe_( FLAC__StreamEncoder *encoder, unsigned min_partition_order, unsigned max_partition_order, const FLAC__FrameHeader *frame_header, unsigned subframe_bps, const FLAC__int32 integer_signal[], FLAC__Subframe *subframe[2], FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2], FLAC__int32 *residual[2], unsigned *best_subframe, unsigned *best_bits ) argument
3408 add_subframe_( FLAC__StreamEncoder *encoder, unsigned blocksize, unsigned subframe_bps, const FLAC__Subframe *subframe, FLAC__BitWriter *frame ) argument
3450 spotcheck_subframe_estimate_( FLAC__StreamEncoder *encoder, unsigned blocksize, unsigned subframe_bps, const FLAC__Subframe *subframe, unsigned estimate ) argument
3502 evaluate_fixed_subframe_( FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned rice_parameter, unsigned rice_parameter_limit, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents ) argument
3564 evaluate_lpc_subframe_( FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], const FLAC__real lp_coeff[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned qlp_coeff_precision, unsigned rice_parameter, unsigned rice_parameter_limit, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents ) argument
[all...]
H A Dstream_decoder.c2025 * first figure the correct bits-per-sample of the subframe
2527 FLAC__Subframe_Constant *subframe = &decoder->private_->frame.subframes[channel].data.constant; local
2537 subframe->value = x;
2539 /* decode the subframe */
2550 FLAC__Subframe_Fixed *subframe = &decoder->private_->frame.subframes[channel].data.fixed; local
2557 subframe->residual = decoder->private_->residual[channel];
2558 subframe->order = order;
2564 subframe->warmup[u] = i32;
2570 subframe->entropy_coding_method.type = (FLAC__EntropyCodingMethodType)u32;
2571 switch(subframe
2607 FLAC__Subframe_LPC *subframe = &decoder->private_->frame.subframes[channel].data.lpc; local
2699 FLAC__Subframe_Verbatim *subframe = &decoder->private_->frame.subframes[channel].data.verbatim; local
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dlsp.h62 void lsp_interpolate(spx_lsp_t *old_lsp, spx_lsp_t *new_lsp, spx_lsp_t *interp_lsp, int len, int subframe, int nb_subframes);
H A Dlsp.c614 void lsp_interpolate(spx_lsp_t *old_lsp, spx_lsp_t *new_lsp, spx_lsp_t *interp_lsp, int len, int subframe, int nb_subframes) argument
617 spx_word16_t tmp = DIV32_16(SHL32(EXTEND32(1 + subframe),14),nb_subframes);
646 void lsp_interpolate(spx_lsp_t *old_lsp, spx_lsp_t *new_lsp, spx_lsp_t *interp_lsp, int len, int subframe, int nb_subframes) argument
649 float tmp = (1.0f + subframe)/nb_subframes;
/external/speex/libspeex/
H A Dlsp.h62 void lsp_interpolate(spx_lsp_t *old_lsp, spx_lsp_t *new_lsp, spx_lsp_t *interp_lsp, int len, int subframe, int nb_subframes);
H A Dlsp.c614 void lsp_interpolate(spx_lsp_t *old_lsp, spx_lsp_t *new_lsp, spx_lsp_t *interp_lsp, int len, int subframe, int nb_subframes) argument
617 spx_word16_t tmp = DIV32_16(SHL32(EXTEND32(1 + subframe),14),nb_subframes);
646 void lsp_interpolate(spx_lsp_t *old_lsp, spx_lsp_t *new_lsp, spx_lsp_t *interp_lsp, int len, int subframe, int nb_subframes) argument
649 float tmp = (1.0f + subframe)/nb_subframes;
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dneterror.css5 /* Don't use the main frame div when the error is in a subframe. */
6 html[subframe] #main-frame-error {
10 /* Don't use the subframe error div when the error is in a main frame. */
11 html:not([subframe]) #sub-frame-error {
131 /* Don't allow overflow when in a subframe. */
132 html[subframe] body {
/external/chromium_org/third_party/opus/src/src/
H A Dopus_private.h86 void downmix_float(const void *_x, opus_val32 *sub, int subframe, int offset, int c1, int c2, int C);
87 void downmix_int(const void *_x, opus_val32 *sub, int subframe, int offset, int c1, int c2, int C);
H A Dopus_encoder.c661 int subframe; local
665 subframe = Fs/400;
666 ALLOC(sub, subframe, opus_val32);
673 int offset = 2*subframe - buffering;
674 celt_assert(offset>=0 && offset <= subframe);
685 N=IMIN(len/subframe, MAX_DYNAMIC_FRAMESIZE);
695 downmix(x, sub, subframe, i*subframe, 0, -2, C);
698 for (j=0;j<subframe;j++)
731 void downmix_float(const void *_x, opus_val32 *sub, int subframe, in argument
766 downmix_int(const void *_x, opus_val32 *sub, int subframe, int offset, int c1, int c2, int C) argument
[all...]
/external/libopus/src/
H A Dopus_private.h86 void downmix_float(const void *_x, opus_val32 *sub, int subframe, int offset, int c1, int c2, int C);
87 void downmix_int(const void *_x, opus_val32 *sub, int subframe, int offset, int c1, int c2, int C);
H A Dopus_encoder.c661 int subframe; local
665 subframe = Fs/400;
666 ALLOC(sub, subframe, opus_val32);
673 int offset = 2*subframe - buffering;
674 celt_assert(offset>=0 && offset <= subframe);
685 N=IMIN(len/subframe, MAX_DYNAMIC_FRAMESIZE);
695 downmix(x, sub, subframe, i*subframe, 0, -2, C);
698 for (j=0;j<subframe;j++)
731 void downmix_float(const void *_x, opus_val32 *sub, int subframe, in argument
766 downmix_int(const void *_x, opus_val32 *sub, int subframe, int offset, int c1, int c2, int C) argument
[all...]
/external/chromium_org/chrome/renderer/resources/
H A Dneterror.css5 /* Don't use the main frame div when the error is in a subframe. */
6 html[subframe] #main-frame-error {
10 /* Don't use the subframe error div when the error is in a main frame. */
11 html:not([subframe]) #sub-frame-error {
196 /* Don't allow overflow when in a subframe. */
197 html[subframe] body {
/external/chromium_org/chrome/renderer/autofill/
H A Dautofill_renderer_browsertest.cc266 const char kDoubleIframeHtml[] = "<iframe id=subframe src='%s'></iframe>"
270 WebElement subframe = GetMainFrame()->document().getElementById("subframe"); variable
271 ASSERT_FALSE(subframe.isNull());
272 invoking_frame_ = WebLocalFrame::fromFrameOwnerElement(subframe);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.h291 bool passMousePressEventToSubframe(MouseEventWithHitTestResults&, LocalFrame* subframe);
292 bool passMouseMoveEventToSubframe(MouseEventWithHitTestResults&, LocalFrame* subframe, HitTestResult* hoveredNode = 0);
293 bool passMouseReleaseEventToSubframe(MouseEventWithHitTestResults&, LocalFrame* subframe);
H A DEventHandler.cpp1241 RefPtrWillBeRawPtr<LocalFrame> subframe = subframeForHitTestResult(mev); local
1242 if (subframe && passMousePressEventToSubframe(mev, subframe.get())) {
1245 m_capturesDragging = subframe->eventHandler().capturesDragging();
1449 // We want mouseouts to happen first, from the inside out. First send a move event to the last subframe so that it will fire mouseouts.
1454 // Update over/out state before passing the event to the subframe.
1457 // Event dispatch in updateMouseEventTargetNode may have caused the subframe of the target
1545 LocalFrame* subframe = m_capturingMouseEventsNode.get() ? subframeForTargetNode(m_capturingMouseEventsNode.get()) : subframeForHitTestResult(mev); local
1548 if (subframe && passMouseReleaseEventToSubframe(mev, subframe))
3812 passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, LocalFrame* subframe) argument
3830 passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, LocalFrame* subframe, HitTestResult* hoveredNode) argument
3838 passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, LocalFrame* subframe) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
H A DMHTMLParser.cpp243 WTF_LOG_ERROR("Failed to parse MHTML subframe.");
281 RefPtrWillBeRawPtr<MHTMLArchive> subframe = MHTMLArchive::create(); local
282 subframe->setMainResource(resource);
283 m_frames.append(subframe);
/external/chromium_org/chrome/browser/captive_portal/
H A Dcaptive_portal_tab_helper_unittest.cc442 // Simulates a subframe erroring out at the same time as a provisional load,
448 content::RenderFrameHost* subframe = local
450 ->AppendChild("subframe");
456 tab_helper().DidStartProvisionalLoadForFrame(subframe, url, false, false);
462 subframe, url, net::ERR_TIMED_OUT, base::string16());
467 tab_helper().DidStartProvisionalLoadForFrame(subframe, url, true, false);
471 subframe, url, ui::PAGE_TRANSITION_AUTO_SUBFRAME);
540 // Tests that a subframe redirect doesn't reset the timer to kick off a captive
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp3067 // Now do a new test with a subframe.
3071 // Load something into the subframe.
3072 WebFrame* subframe = frame->firstChild(); local
3073 ASSERT_TRUE(subframe);
3074 FrameTestHelpers::loadHTMLString(subframe, "sub<p>text", testURL);
3079 // Get the frame text where the subframe separator falls on the boundary of
3583 WebFrame* subframe = frame->firstChild(); local
3584 EXPECT_EQ("Some test text for testing.", selectionAsString(subframe));
3586 subframe->executeCommand(WebString::fromUTF8("Unselect"));
3587 EXPECT_EQ("", selectionAsString(subframe));
[all...]
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl.cc473 // We are instantiating a WebContents for browser plugin. Set its subframe
1931 FrameTreeNode* subframe = local
1933 DCHECK(subframe);
1934 if (subframe)
1935 node = subframe;
/external/chromium_org/content/browser/frame_host/
H A Dnavigation_controller_impl_unittest.cc1851 // Tests navigation via link click within a subframe. A new navigation entry
1892 // subframe navigation without having any committed entry. Such navigations
1948 // Tests navigation and then going back to a subframe navigation.
1960 // First manual subframe navigation.
1979 // Second manual subframe navigation should also make a new entry.
3180 // these subframe navigations to affect the toplevel document. They should
3192 // Navigate a subframe that would normally count as in-page.
3193 const GURL subframe("http://www.google.com/#");
3196 params.url = subframe;
3201 params.page_state = PageState::CreateFromURL(subframe);
[all...]

Completed in 427 milliseconds