search for: golomb

Displaying 16 results from an estimated 16 matches for "golomb".

2010 Apr 23
2
Ogg Index A-mod
...o the skeleton track, so maybe we should increment the version to 4.0, include those fields, and change the rest of the index format? Benjamin: have you made any index A-mod prototype encoders to get an encoded-index size comparison? I also have a few questions about your proposal... > The Golomb-Rice encoded integers are encoded by subtracting 1, > dividing by the > Golomb-Rice parameter, representing first the quotient in unary (1s), > then a 0, > and then the remainder in binary. We subtract 1 because a Golomb-Rice code > naturally represents 0, but 0 is not a valid delt...
2017 May 23
1
flac-dev Digest, Vol 149, Issue 5
​Can you guys clarify that by Rice you don't mean unary coding, but exponential golomb coding? that issue has confused me before, and probably others.​ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/flac-dev/attachments/20170523/525651dc/attachment.html>
2017 Jun 06
3
[Cellar] FLAC Markdown
Hello all! (cc-ing the flac-dev list) I would like to give an update as to the recent CELLAR work on the FLAC specification. • Work has been done to make internal and external links more accurate and reliable. • 'Rice Coding' has been clarified as 'Exponential Golomb Coding.' • Clarifications have been made for binary representation. • Typos and other small changes have been fixed for clarity. Lastly, a version 00 release has been made (available at https://github.com/privatezero/flac_markdown/releases) and the draft document has been uploaded to the IETF...
2015 Oct 01
3
Supporting 32 bit data
Op 01-10-15 om 18:14 schreef lvqcl: > Currently libFLAC stores residual signal as 32-bit signed int. And there > are the following comments in stream_encoder.c: The residual is stored as a Golomb/Rice code. As far as I know, that is not limited to 32-bit in the format itself, only in the implementation. However, there are two residual coding methods now: rice and rice2. rice2 was added when it turned out rice (with a 4 bit rice parameter) wasn't able to cope with the larger residua...
2013 May 15
0
[PATCH] Fix dead links and update news
...rten</a>; his paper is a good starting point on some of the basic methods used by FLAC. FLAC trivially extends and improves the fixed predictors, LPC coefficient quantization, and Rice coding used in Shorten. </li> <li> - <a href="http://commsci.usc.edu/faculty/golomb.html">S. W. Golomb</a> and Robert F. Rice; their universal codes are used by FLAC's entropy coder. + <a href="http://csi.usc.edu/faculty/golomb.html">S. W. Golomb</a> and Robert F. Rice; their universal codes are used by FLAC's entropy coder. </...
2013 May 15
0
[PATCH 2/2] Fix dead links and update news
...rten</a>; his paper is a good starting point on some of the basic methods used by FLAC. FLAC trivially extends and improves the fixed predictors, LPC coefficient quantization, and Rice coding used in Shorten. </li> <li> - <a href="http://commsci.usc.edu/faculty/golomb.html">S. W. Golomb</a> and Robert F. Rice; their universal codes are used by FLAC's entropy coder. + <a href="http://csi.usc.edu/faculty/golomb.html">S. W. Golomb</a> and Robert F. Rice; their universal codes are used by FLAC's entropy coder. </...
2017 Jun 06
1
[Cellar] FLAC Markdown
...(cc-ing the flac-dev list) > > I would like to give an update as to the recent CELLAR work on the FLAC > specification. > > • Work has been done to make internal and external links more accurate and > reliable. > • 'Rice Coding' has been clarified as 'Exponential Golomb Coding.' > • Clarifications have been made for binary representation. > • Typos and other small changes have been fixed for clarity. > > Lastly, a version 00 release has been made (available at > https://github.com/privatezero/flac_markdown/releases) and the draft > document...
2017 Jun 07
0
[Cellar] FLAC Markdown
...all! > (cc-ing the flac-dev list) > > I would like to give an update as to the recent CELLAR work on the FLAC specification. > > • Work has been done to make internal and external links more accurate and reliable. > • 'Rice Coding' has been clarified as 'Exponential Golomb Coding.' > • Clarifications have been made for binary representation. > • Typos and other small changes have been fixed for clarity. > > Lastly, a version 00 release has been made (available at https://github.com/privatezero/flac_markdown/releases <https://github.com/privatezero...
2007 Sep 03
1
FLAC: compressing data
...ny input will work correctly. With music data, most algorithms rely on the fact that adjacent samples are close to each other in value, so flac works out an equation that fits the data closely, then relies on knowing that the error (the residuals) are small, so it uses a nifty encoding scheme (Golomb-Rice I think) using extra 'padding' bits at the start to efficiently store the small numbers without needing to write the leading zeros as well. This process will work on any data, but for most inputs the output will probably be a bit bigger, as the polynomials will not fit the data we...
2017 May 02
0
NHW Project and wavelet codecs
...ember the author post there is furthermore an interesting fast context modeling based on the 2x2 variance of wavelet coefficients in order to reduce the context cost per coeff, associated with an also interesting range coder (division-free) that can be skipped to code raw bits or with huffman, rice-golomb... Wavelet transforms, SPIHT, context modeling have improved since 2008, so why no new updated wavelet codec, as it was the case of HEVC for H.264 (Rududu is similar in performance with x264 intra, PSNR- and SSIM- wise)? -Do wavelets have so much bad reputation?- Ok that's right the NHW codec...
2004 Sep 10
1
Rice coding parameter
Date: Sun, 19 Oct 2003 00:59:22 +0200 > On Sat, Oct 18, 2003 at 07:21:08PM +0000, Dan Stowell wrote: > > I asked a few questions about the flac format a couple of weeks ago. > > One more (if you don't mind) about the Rice coding. The Rice > > parameter "k" can't be zero (unless I'm mistaken), yet the FLAC spec > > says the Rice parameter can range
2007 Sep 03
3
FLAC: compressing data
hi can the flac encoder be used to compress non-wave data? So suppose I rename a data file to *.wav, can i compress it then using the flac encoder to make it smaller? just wondering if this is possible -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/flac/attachments/20070903/b3091c47/attachment.html
2016 Mar 24
1
NHW codec - progress 2
Hello, Just a quick message to correct what I have said in my previous post.It finally seems not that easy to code small wavelet coefficients to have a good precision, and SPIHT is certainly a very good algorithm for that, -and I know there are SPIHT experts that can make very good SPIHT-based codecs-.I have chosen a new and different approach, the multistage residual coding, so I will try to
2009 Mar 09
1
audio data encoding in FLAC: how complex ?
Hello ! The following algorithm describes Golomb(=Rice?) encoding: http://en.wikipedia.org/wiki/Golomb_coding#Simple_algorithm What is unclear to me is how many audio samples encoded with a fixed parameter (denoted 'M' in the wiki, which i presume is equivalent to the 'Rice parameter' invohed here): http://flac.sourceforge.net/do...
2015 Sep 26
9
Supporting 32 bit data
Hi all, I just noticed this: https://sourceforge.net/p/flac/feature-requests/91/ a request for support of 32 bit audio data. The request has been around since 2008. Had two inial impressions: * Would adding this break brackwards compatibility too badly? Obviously decoding of 32 bit encoded data would not work with older versions of flac. * This is nuts. 24 bits has a dynamic range of
2017 May 12
2
[Cellar] FLAC Markdown
Hi all, And cc'ing flac-dev. > On May 10, 2017, at 12:15 PM, Dave Rice <dave at dericed.com> wrote: > > Hi Andrew, > >> On May 10, 2017, at 11:19 AM, Andrew James Weaver <weevz at uw.edu <mailto:weevz at uw.edu>> wrote: >> >> Hello all! >> >> In a previous discussions on this list about people interested in working on the FLAC