Home
last modified time | relevance | path

Searched refs:lsf (Results 126 – 150 of 1878) sorted by relevance

12345678910>>...76

/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dpack_bits.c38 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[0])<<10; /* Bit 0..5 */ in WebRtcIlbcfix_PackBits()
39 (*bitstreamPtr) |= (enc_bits->lsf[1])<<3; /* Bit 6..12 */ in WebRtcIlbcfix_PackBits()
40 (*bitstreamPtr) |= (enc_bits->lsf[2]&0x70)>>4; /* Bit 13..15 */ in WebRtcIlbcfix_PackBits()
43 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[2]&0xF)<<12; /* Bit 0..3 */ in WebRtcIlbcfix_PackBits()
60 (*bitstreamPtr) |= (enc_bits->lsf[3])<<6; /* Bit 4..9 */ in WebRtcIlbcfix_PackBits()
61 (*bitstreamPtr) |= (enc_bits->lsf[4]&0x7E)>>1; /* Bit 10..15 */ in WebRtcIlbcfix_PackBits()
64 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[4]&0x1)<<15; /* Bit 0 */ in WebRtcIlbcfix_PackBits()
65 (*bitstreamPtr) |= (enc_bits->lsf[5])<<8; /* Bit 1..7 */ in WebRtcIlbcfix_PackBits()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/ilbc/
H A Dunpack_bits.c37 enc_bits->lsf[0] = (*bitstreamPtr)>>10; /* Bit 0..5 */ in WebRtcIlbcfix_UnpackBits()
38 enc_bits->lsf[1] = ((*bitstreamPtr)>>3)&0x7F; /* Bit 6..12 */ in WebRtcIlbcfix_UnpackBits()
39 enc_bits->lsf[2] = ((*bitstreamPtr)&0x7)<<4; /* Bit 13..15 */ in WebRtcIlbcfix_UnpackBits()
42 enc_bits->lsf[2] |= ((*bitstreamPtr)>>12)&0xF; /* Bit 0..3 */ in WebRtcIlbcfix_UnpackBits()
59 enc_bits->lsf[3] = ((*bitstreamPtr)>>6)&0x3F; /* Bit 4..9 */ in WebRtcIlbcfix_UnpackBits()
60 enc_bits->lsf[4] = ((*bitstreamPtr)<<1)&0x7E; /* Bit 10..15 */ in WebRtcIlbcfix_UnpackBits()
63 enc_bits->lsf[4] |= ((*bitstreamPtr)>>15)&0x1; /* Bit 0 */ in WebRtcIlbcfix_UnpackBits()
64 enc_bits->lsf[5] = ((*bitstreamPtr)>>8)&0x7F; /* Bit 1..7 */ in WebRtcIlbcfix_UnpackBits()
H A Dsimple_lsf_quant.c31 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
43 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/ilbc/
H A Dpack_bits.c38 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[0])<<10; /* Bit 0..5 */ in WebRtcIlbcfix_PackBits()
39 (*bitstreamPtr) |= (enc_bits->lsf[1])<<3; /* Bit 6..12 */ in WebRtcIlbcfix_PackBits()
40 (*bitstreamPtr) |= (enc_bits->lsf[2]&0x70)>>4; /* Bit 13..15 */ in WebRtcIlbcfix_PackBits()
43 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[2]&0xF)<<12; /* Bit 0..3 */ in WebRtcIlbcfix_PackBits()
60 (*bitstreamPtr) |= (enc_bits->lsf[3])<<6; /* Bit 4..9 */ in WebRtcIlbcfix_PackBits()
61 (*bitstreamPtr) |= (enc_bits->lsf[4]&0x7E)>>1; /* Bit 10..15 */ in WebRtcIlbcfix_PackBits()
64 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[4]&0x1)<<15; /* Bit 0 */ in WebRtcIlbcfix_PackBits()
65 (*bitstreamPtr) |= (enc_bits->lsf[5])<<8; /* Bit 1..7 */ in WebRtcIlbcfix_PackBits()
H A Dunpack_bits.c37 enc_bits->lsf[0] = (*bitstreamPtr)>>10; /* Bit 0..5 */ in WebRtcIlbcfix_UnpackBits()
38 enc_bits->lsf[1] = ((*bitstreamPtr)>>3)&0x7F; /* Bit 6..12 */ in WebRtcIlbcfix_UnpackBits()
39 enc_bits->lsf[2] = ((*bitstreamPtr)&0x7)<<4; /* Bit 13..15 */ in WebRtcIlbcfix_UnpackBits()
42 enc_bits->lsf[2] |= ((*bitstreamPtr)>>12)&0xF; /* Bit 0..3 */ in WebRtcIlbcfix_UnpackBits()
59 enc_bits->lsf[3] = ((*bitstreamPtr)>>6)&0x3F; /* Bit 4..9 */ in WebRtcIlbcfix_UnpackBits()
60 enc_bits->lsf[4] = ((*bitstreamPtr)<<1)&0x7E; /* Bit 10..15 */ in WebRtcIlbcfix_UnpackBits()
63 enc_bits->lsf[4] |= ((*bitstreamPtr)>>15)&0x1; /* Bit 0 */ in WebRtcIlbcfix_UnpackBits()
64 enc_bits->lsf[5] = ((*bitstreamPtr)>>8)&0x7F; /* Bit 1..7 */ in WebRtcIlbcfix_UnpackBits()
/dports/multimedia/mswebrtc/mswebrtc-1.1.1/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dunpack_bits.c37 enc_bits->lsf[0] = (*bitstreamPtr)>>10; /* Bit 0..5 */ in WebRtcIlbcfix_UnpackBits()
38 enc_bits->lsf[1] = ((*bitstreamPtr)>>3)&0x7F; /* Bit 6..12 */ in WebRtcIlbcfix_UnpackBits()
39 enc_bits->lsf[2] = ((*bitstreamPtr)&0x7)<<4; /* Bit 13..15 */ in WebRtcIlbcfix_UnpackBits()
42 enc_bits->lsf[2] |= ((*bitstreamPtr)>>12)&0xF; /* Bit 0..3 */ in WebRtcIlbcfix_UnpackBits()
59 enc_bits->lsf[3] = ((*bitstreamPtr)>>6)&0x3F; /* Bit 4..9 */ in WebRtcIlbcfix_UnpackBits()
60 enc_bits->lsf[4] = ((*bitstreamPtr)<<1)&0x7E; /* Bit 10..15 */ in WebRtcIlbcfix_UnpackBits()
63 enc_bits->lsf[4] |= ((*bitstreamPtr)>>15)&0x1; /* Bit 0 */ in WebRtcIlbcfix_UnpackBits()
64 enc_bits->lsf[5] = ((*bitstreamPtr)>>8)&0x7F; /* Bit 1..7 */ in WebRtcIlbcfix_UnpackBits()
/dports/multimedia/ogmrip/ogmrip-1.0.1/avibox/
H A Daud_scan.c53 int stereo, ssize, crc, lsf, mpeg25, framesize; in tc_get_mp3_header() local
77 lsf = (newhead & ((long)1<<19)) ? 0x0 : 0x1; in tc_get_mp3_header()
80 lsf = 1; in tc_get_mp3_header()
87 sampling_frequency = ((newhead>>10)&0x3) + (lsf*3); in tc_get_mp3_header()
111 if(lsf) in tc_get_mp3_header()
117 framesize = tabsel_123[lsf][2][bitrate_index] * 144000; in tc_get_mp3_header()
118 if (bitrate) *bitrate = tabsel_123[lsf][2][bitrate_index]; in tc_get_mp3_header()
125 framesize /= freqs[sampling_frequency]<<lsf; in tc_get_mp3_header()
/dports/editors/biew/biew-610/plugins/bin/
H A Dmp3.c79 lsf = (newhead & ((long)1<<19)) ? 0x0 : 0x1; in mp_decode_mp3_header()
82 lsf = 1; in mp_decode_mp3_header()
89 sampling_frequency = ((newhead>>10)&0x3) + (lsf*3); in mp_decode_mp3_header()
107 if(lsf) in mp_decode_mp3_header()
116 case 1: framesize = (long) tabsel_123[lsf][0][bitrate_index]*12000; in mp_decode_mp3_header()
122 if(mp3_fmt == 3)framesize /= freqs[sampling_frequency]<<lsf; in mp_decode_mp3_header()
129 if(brate) *brate=(tabsel_123[lsf][mp3_fmt-1][bitrate_index]*1000)/8; in mp_decode_mp3_header()
406 *lsf=mpeg1?0:1; in Xing_test()
462 int scale,lsf,srate; in Show_MP3_Header() local
478 is_xing=Xing_test(hdr,&scale,&lsf,&srate,&nframes,&nbytes); in Show_MP3_Header()
[all …]
/dports/audio/praat/praat-6.2.03/LPC/
H A DLineSpectralFrequencies.cpp104 const LineSpectralFrequencies_Frame lsf = & my d_frames [iframe]; in LineSpectralFrequencies_drawFrequencies() local
106 for (integer ifreq = 1; ifreq <= lsf -> numberOfFrequencies; ifreq ++) { in LineSpectralFrequencies_drawFrequencies()
107 const double y = lsf -> frequencies [ifreq]; in LineSpectralFrequencies_drawFrequencies()
126 const LineSpectralFrequencies_Frame lsf = & my d_frames [j]; in LineSpectralFrequencies_downto_Matrix() local
127 thy z.column (j).part (1, lsf -> numberOfFrequencies) <<= lsf -> frequencies.get(); in LineSpectralFrequencies_downto_Matrix()
/dports/math/R/R-4.1.2/src/library/utils/man/
H A Dls_str.Rd12 lsf.str(pos = -1, envir, \dots)
18 \alias{lsf.str}
21 \code{ls.str} and \code{lsf.str} are variations of \code{\link{ls}}
42 \item{\dots}{further arguments to pass. \code{lsf.str} passes them to
49 \code{ls.str} and \code{lsf.str} return an object of class
51 (functions only for \code{lsf.str}), similarly to
62 lsf.str() #- how do the functions look like which I am using?
71 lsf.str(pos = length(search()), pattern = "file")
/dports/math/libRmath/R-4.1.1/src/library/utils/man/
H A Dls_str.Rd12 lsf.str(pos = -1, envir, \dots)
18 \alias{lsf.str}
21 \code{ls.str} and \code{lsf.str} are variations of \code{\link{ls}}
42 \item{\dots}{further arguments to pass. \code{lsf.str} passes them to
49 \code{ls.str} and \code{lsf.str} return an object of class
51 (functions only for \code{lsf.str}), similarly to
62 lsf.str() #- how do the functions look like which I am using?
71 lsf.str(pos = length(search()), pattern = "file")
/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/
H A Dlsp.c51 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size) in ff_set_min_dist_lsf() argument
56 prev = lsf[i] = FFMAX(lsf[i], prev + min_spacing); in ff_set_min_dist_lsf()
83 void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order) in ff_acelp_lsf2lsp() argument
90 lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14) in ff_acelp_lsf2lsp()
93 void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) in ff_acelp_lsf2lspd() argument
98 lsp[i] = cos(2.0 * M_PI * lsf[i]); in ff_acelp_lsf2lspd()
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavcodec/
H A Dlsp.c51 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size) in ff_set_min_dist_lsf() argument
56 prev = lsf[i] = FFMAX(lsf[i], prev + min_spacing); in ff_set_min_dist_lsf()
83 void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order) in ff_acelp_lsf2lsp() argument
90 lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14) in ff_acelp_lsf2lsp()
93 void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) in ff_acelp_lsf2lspd() argument
98 lsp[i] = cos(2.0 * M_PI * lsf[i]); in ff_acelp_lsf2lspd()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/
H A Dlsp.c51 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size) in ff_set_min_dist_lsf() argument
56 prev = lsf[i] = FFMAX(lsf[i], prev + min_spacing); in ff_set_min_dist_lsf()
83 void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order) in ff_acelp_lsf2lsp() argument
90 lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14) in ff_acelp_lsf2lsp()
93 void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) in ff_acelp_lsf2lspd() argument
98 lsp[i] = cos(2.0 * M_PI * lsf[i]); in ff_acelp_lsf2lspd()
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavcodec/
H A Dlsp.c51 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size) in ff_set_min_dist_lsf() argument
56 prev = lsf[i] = FFMAX(lsf[i], prev + min_spacing); in ff_set_min_dist_lsf()
83 void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order) in ff_acelp_lsf2lsp() argument
90 lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14) in ff_acelp_lsf2lsp()
93 void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) in ff_acelp_lsf2lspd() argument
98 lsp[i] = cos(2.0 * M_PI * lsf[i]); in ff_acelp_lsf2lspd()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavcodec/
H A Dlsp.c51 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size) in ff_set_min_dist_lsf() argument
56 prev = lsf[i] = FFMAX(lsf[i], prev + min_spacing); in ff_set_min_dist_lsf()
83 void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order) in ff_acelp_lsf2lsp() argument
90 lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14) in ff_acelp_lsf2lsp()
93 void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) in ff_acelp_lsf2lspd() argument
98 lsp[i] = cos(2.0 * M_PI * lsf[i]); in ff_acelp_lsf2lspd()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavcodec/
H A Dlsp.c51 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size) in ff_set_min_dist_lsf() argument
56 prev = lsf[i] = FFMAX(lsf[i], prev + min_spacing); in ff_set_min_dist_lsf()
83 void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order) in ff_acelp_lsf2lsp() argument
90 lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14) in ff_acelp_lsf2lsp()
93 void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) in ff_acelp_lsf2lspd() argument
98 lsp[i] = cos(2.0 * M_PI * lsf[i]); in ff_acelp_lsf2lspd()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavcodec/
H A Dlsp.c51 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int size) in ff_set_min_dist_lsf() argument
56 prev = lsf[i] = FFMAX(lsf[i], prev + min_spacing); in ff_set_min_dist_lsf()
83 void ff_acelp_lsf2lsp(int16_t *lsp, const int16_t *lsf, int lp_order) in ff_acelp_lsf2lsp() argument
90 lsp[i] = ff_cos(lsf[i] * 20861 >> 15); // divide by PI and (0,13) -> (0,14) in ff_acelp_lsf2lsp()
93 void ff_acelp_lsf2lspd(double *lsp, const float *lsf, int lp_order) in ff_acelp_lsf2lspd() argument
98 lsp[i] = cos(2.0 * M_PI * lsf[i]); in ff_acelp_lsf2lspd()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_quant.c31 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
43 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_quant.c33 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
39 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
45 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
/dports/net/yate/yate-6.4.0-1/libs/miniwebrtc/audio/coding_ilbc/
H A Dsimple_lsf_quant.c31 WebRtc_Word16 *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
43 lsf + LPC_FILTERORDER, (WebRtc_Word16*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_quant.c31 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
43 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_quant.c31 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
43 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
/dports/net/libilbc/libilbc-3.0.4/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_quant.c33 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
39 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
45 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_quant.c31 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ()
43 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()

12345678910>>...76