Displaying 3 results from an estimated 3 matches for "l2118".
Did you mean:
2118
2023 Jun 30
1
Disable all checksum verification in flac/metaflac
Hi,
Is it possible for you to compile flac/metaflac yourself? Then you'll only
need to remove a few lines, namely these 4:
https://github.com/xiph/flac/blob/28e4f0528c76b296c561e922ba67d43751990599/src/libFLAC/stream_decoder.c#L2118-L2121
and these 7:
https://github.com/xiph/flac/blob/28e4f0528c76b296c561e922ba67d43751990599/src/libFLAC/stream_decoder.c#L2141-L2147
As you can see these lines are also disabled on fuzzing.
I think providing an API function and flac+metaflac command line option is
going to be confusing and they...
2009 Oct 11
2
empty quotes for rsync parameter
Why does inserting an empty quote ("") into a rsync command cause the current directory to be backed up?
Not sure if this is a UNIX-syntax question or rsync-syntax question.
Code:
#!/bin/sh
echo "\nspace between quotes has no effect; only music is backed up:"
rsync -ilrtn " " /home/wolf/music /backups/backup1
echo "\nempty quotes backs up current directory
2023 Jun 29
1
Disable all checksum verification in flac/metaflac
Hello all,
I?m trying to use flac and metaflac as tooling to analyze the generated FLAC
files of a new encoder implementation. However, while my own third-party
decoder can handle the output just fine, flac, metaflac, and other tools
discard the output since the frame checksum (footer CRC-16) is invalid. This
is expected, since I have no checksum generation implemented apart from the
frame