Displaying 20 results from an estimated 200 matches similar to: "FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC"
2006 Oct 09
2
understanding decorrelation
Hi FLACers
I'm studying music production and am currently doing an analysis of the FLAC format. If anyone has the knowledge and a minute to explain i would greatly appreciate any help. One thing that i cannot make sense from in the FLAC documentation (a thing that is hard to find info on in general) is how the decorrelation fase works exactly. I understand that the two channels in a stereo
2004 Sep 10
1
make headers C++ compatible?
Hello FLACers,
I'm working on implementing FLAC support for Audacity, a cross-platform
audio editor (audacity.sourceforge.net). We're experimenting with using
FLAC as the internal data representation.
Unfortunately, the FLAC headers cannot be used in C++ programs because of
the use of 'private' and 'protected' as variable names in
stream_decoder.h, stream_encoder.h, and
2013 Jan 10
1
Fixing corrupt flac files
Here you are:
soa2ii at thor /mnt/files/music/Slime/Alle gegen Alle $ metaflac --list 02\
St?rtebecker.flac
METADATA block #0
type: 0 (STREAMINFO)
is last: false
length: 34
minimum blocksize: 4608 samples
maximum blocksize: 4608 samples
minimum framesize: 14 bytes
maximum framesize: 15637 bytes
sample_rate: 44100 Hz
channels: 2
bits-per-sample: 16
total samples: 5857656
2007 May 02
16
ZFS Support for remote mirroring
Does ZFS support any type of remote mirroring? It seems at present my only two options to achieve this would be Sun Cluster or Availability Suite. I thought that this functionality was in the works, but I haven''t heard anything lately.
Thanks!
Aaron Newcomb
http://opennewsshow.org
http://thesourceshow.org
This message posted from opensolaris.org
2014 Nov 25
1
Two new CVEs against FLAC
Miroslav Lichvar wrote:
> I'm trying to figure out how this one works. It seems the problem is
> integer underflow in the "frame.header.blocksize-order" expression
> used in read_subframe_fixed_() and read_subframe_lpc_() to get the
> number of encoded samples, which causes a buffer overflow in the
> LPC/fixed subframe decoding.
>
> The fix prevents that by
2013 Jan 10
4
Fixing corrupt flac files
So, let's provide some information then :-)
----------------------------------------------------------------------------------------------
soa2ii at thor /mnt/files/music/Slime/Alle gegen Alle $ flac -aF 02\
St?rtebecker.flac
flac 1.2.1, Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome
2014 Nov 25
9
Two new CVEs against FLAC
Hi all,
Google Security Team member, Michele Spagnuolo, recently found two potential
problems in the FLAC code base. They are :
CVE-2014-9028 : Heap buffer write overflow
CVE-2014-8962 : Heap buffer read overflow
For Linux distributions, the specific fixes for these two CVEs are available
from Git here:
2006 Jul 24
3
Problem with CRAM and flac-1.1.2
A user of CRAM (http://swami.sourceforge.net/cram.php) sent in a bug
report related to decoding of CRAM files. This issue occurs with
flac-1.1.2 but not previous versions (such as flac-1.1.1). Note that
the same file is used for this test (hopefully ruling out any issue with
the encoder).
Details of the issue:
When calling FLAC__stream_decoder_process_single() the error callback is
triggered
2014 Dec 09
5
Two new CVEs against FLAC
On 25.11.2014 12:14, Miroslav Lichvar wrote:
> I think the case with non-zero partition order may need to be fixed
> too. For example, with partition order of 1, predictor order of 16 and
> blocksize of 4, the function would return true and blocksize-order in
> the caller would still underflow.
>
> --- a/src/libFLAC/stream_decoder.c
> +++ b/src/libFLAC/stream_decoder.c
> @@
2011 Oct 26
2
SpatialLines
I'm hoping to use R for spatial analysis. In working through examples in Chapt. 4 of Applied Spatial Data Analysis with R I've come across the following error in trying to plot lines with the meuse data set. The text is verbatim from the book.
> m.sl <- SpatialLines(list(Lines(list(Line(cc)))))
Error in Lines(list(Line(cc))) : Single ID required
What does "Single ID
2008 Feb 06
2
wav to flac corruption
Thank you for the reply! I know that my system can play flac files, I've
played others I've managed to convert using both of those programs. I'm
only running into difficulty when it comes to these large WAV files. By
"Does not work" I mean that they do not play, and instead I receive the
errors I mentioned in my original post. I wasn't actually intending to use
2023 Jun 08
0
The flacdiff and flactimer utils
Hi all,
In an attempt to clean up the FLAC repository, I was trying to work
out the importance of the flactimer and flacdiff utils. I think the
flactimer util can be removed, but I don't fully understand the use of
the flacdiff util.
It seems I can't get it to work. I always get something like this:
./flacdiff file1.flac file2.flac
got diff offset = 17
get error
2006 Oct 09
0
understanding decorrelation
--- Ulrik Nissen <obbarius@rediffmail.com> wrote:
>
> Hi FLACers
>
> I'm studying music production and am currently doing an analysis of
> the FLAC format. If anyone has the knowledge and a minute to explain
> i would greatly appreciate any help. One thing that i cannot make
> sense from in the FLAC documentation (a thing that is hard to find
> info on in
2018 Dec 30
3
Aw: Re: rsync remote raw block device with --inplace
> There have been addons to rsync in the past to do that but rsync really
> isn't the correct tool for the job.
why not correct tool ?
if rsync can greatly keep two large files in sync between source and destination
(using --inplace), why should it (generally spoken) not also be used to keep two
blockdevices in sync ?
maybe these links are interesting in that context:
2018 Dec 30
2
rsync remote raw block device with --inplace
It would be very nice to be able to rsync the raw data content of, e.g., a
non-mounted disk partition, particularly in combination with --inplace.
Our reality: several dual-boot machines running Windows during the day and
Linux at night, during backups. Windows is very tedious and iffy to
re-reinstall without a raw disk image to start from. Disks fail, and the
ensuing downtime must be
2014 Dec 15
1
[PATCH] src/libFLAC/stream_decoder.c : Rework fix for seeking bug.
To avoid crash caused by an unbound LPC decoding when predictor order is
larger than blocksize, the sanity check needs to be moved to the subframe
decoding functions.
---
src/libFLAC/stream_decoder.c | 30 ++++++++++++------------------
1 file changed, 12 insertions(+), 18 deletions(-)
diff --git a/src/libFLAC/stream_decoder.c b/src/libFLAC/stream_decoder.c
index d13b23b..211b4db 100644
---
2024 Apr 25
1
how to block brute force attacks on reverse tunnels?
On 25.04.24 17:15, openssh-unix-dev-request at mindrot.org digested:
> Subject: how to block brute force attacks on reverse tunnels?
> From: Steve Newcomb <srn at coolheads.com>
> Date: 25.04.24, 17:14
>
> For many years I've been running ssh reverse tunnels on portable Linux,
> OpenWRT, Android etc. hosts so they can be accessed from a server whose
> IP is stable
2009 Oct 06
1
Detecting FLAC file type
Hello,
I have a program that is given a random file and needs to determine
whether it is Vorbis or FLAC. For Vorbis, there are various places
where I can infer that I have a bad stream. But for FLAC, when I call
either FLAC__stream_decoder_process_until_end_of_metadata or
FLAC__stream_decoder_process_single, it searches the entire file
before giving up. I'd like it to stop searching as soon
2019 Jan 02
1
rsync remote raw block device with --inplace
More notes about diskrsync <https://github.com/dop251/diskrsync> :
(0) It seems to work well and efficiently. The README.md now explains how
to install it and it's a lot easier than the script I included in my last
note would seem to indicate. (I didn't and still don't know Go.)
(1) Effectively, inherently, and non-optionally, diskrsync has rsync's
--inplace feature. IOW,
2024 Apr 25
1
how to block brute force attacks on reverse tunnels?
For many years I've been running ssh reverse tunnels on portable Linux,
OpenWRT, Android etc. hosts so they can be accessed from a server whose
IP is stable (I call such a server a "nexus host"). Increasingly there's
a problem with brute force attacks on the nexus host's tunnel ports. The
attack is forwarded to the portable tunneling host, where it fails, but
it chews up