search for: wave_format_extensible

Displaying 20 results from an estimated 24 matches for "wave_format_extensible".

2008 May 30
0
Request for Comments: multi-channel/32 bit WAV patch for oggenc
...;I have some improvements reflected in the attached file vorbis120.patch: 1) Major bug remapping channels. The values in wav_permute_matrix (oggenc\audio.c line 380) must be (instead the commented ones): {0,2,1,3,4}, // {0,1,2,3,4} {0,2,1,4,5,3} // {0,2,1,5,3,4} 2) New feature. Support for WAVE_FORMAT_EXTENSIBLE wav headers with only: if (format.format == WAVE_FORMAT_EXTENSIBLE && len > 25) format.format = READ_U16_LE(buf+24); 3) New feature. Support wav files 32 bits int. 4) New parameter --ignorelength. To support wav files > 4 GB or STDIN with datalength ignored." "...
2009 Aug 26
2
oggenc patch for extensible WAV support
Hello, I created a patch for oggenc that gives it minimal support for WAV files with the WAVE_FORMAT_EXTENSIBLE format. What's the right way to submit this? http://www.microsoft.com/whdc/device/audio/multichaud.mspx Joe Holt
2013 Jan 02
1
Define 6.1 and 7.1 channel mappings
...several possibilities on page 27. DTS-HD seems to specify 7 different possible 7.1 layouts (http://www.scribd.com/doc/17630423/21/Channel-Layout). I think my preference for the Apple/Core Audio layouts is known but obviously any standard would be better than none. Do I understand correctly that WAVE_FORMAT_EXTENSIBLE simply defines a standard channel order and FLAC would specify compatible channel masks? http://msdn.microsoft.com/en-us/library/windows/hardware/gg463006.aspx hasn't been updated since 2007 so I may have been looking at an old document. Stephen On Wednesday, January 2, 2013 at 6:54 AM, Erik...
2007 May 06
2
96k/24-bit BWF encoding
...les play successfully in winamp and windows media player. The flac encoder does give a warning during the encoding process: WARNING: legacy WAVE file has format type 1 but bits-per-sample=24 Looking at the specs for WAV files, it appears that for 24-bit files should have their format code set to WAVE_FORMAT_EXTENSIBLE, but these files are still set to WAVE_FORMAT_PCM. Could this be the source of the problem? If not, do you have any other ideas? I can provide example files if wanted. Thanks, Justin
2014 Mar 20
2
Wrong warning in encoder for 24bits WAV
Hi Guys, I've just faced a wrong warning trying to encode a 24 bits WAV file if(wFormatTag == 1) { if(bps != 8 && bps != 16) { if(bps == 24 || bps == 32) { /* let these slide with a warning since they're unambiguous */ flac__utils_printf(stderr, 1, "%s: WARNING: legacy WAVE file has
2011 Nov 24
1
Wrong WAV AudioFormat
Hi, I am using vorbis-tools 1.4.0 on Fedora 14 to convert Ogg Vorbis files to MS WAV format. It seems that ogg123 is encoding the wrong AudioFormat value. For Uncompressed PCM, the AudioFormat should be 1 but for some reason, it is being encoded in the WAV file as -1. This used to work on some prior version of either Fedora or vorbis-tools. I thought I'd ask in the email list in case
2004 Sep 10
1
ACM codec
Hi Ingo, >It is just a WAVEFORMATEX with a GUID in it. For the ACM system it is just a format with the id >WAVE_FORMAT_EXTENSIBLE and since ACM drivers are not registered by wFormatTag it should be working. >For testing purposes I've written a Vorbis ACM driver, that uses a WAVEFORMATEXTENSIBLE and I experienced >a problem when opening files with Media Player. It spend quite some time at 100 % CPU doing nothing (fro...
2004 Sep 10
1
Re: ACM codec
...apture >filters, not to intermediate filters like compressors. Especially all >standard AVI and WAV filters support the WAVEFORMATEXTENSIBLE structure, >whether the docs state something different or not. If you say it is, so it is. But then I ask you, did your Vorbis ACM driver work? Will WAVE_FORMAT_EXTENSIBLE id be recognized in old 16bits Windows systems? >So when the driver has to decompress the second file it creates a marker >and the metadata and feeds it to the FLAC encoder. Or do you use a lower >level API than the stream en/decoder from libFLAC? Actually, I had not thought about it unt...
2007 May 06
0
96k/24-bit BWF encoding
...les play successfully in winamp and windows media player. The flac encoder does give a warning during the encoding process: WARNING: legacy WAVE file has format type 1 but bits-per-sample=24 Looking at the specs for WAV files, it appears that for 24-bit files should have their format code set to WAVE_FORMAT_EXTENSIBLE, but these files are still set to WAVE_FORMAT_PCM. Could this be the source of the problem? If not, do you have any other ideas? I can provide example files if wanted. Thanks, Justin
2009 Aug 26
0
oggenc patch for extensible WAV support
On 8/26/09, Joe Holt <joe07734 at gmail.com> wrote: > Hello, I created a patch for oggenc that gives it minimal support for > WAV files with the WAVE_FORMAT_EXTENSIBLE format. Hello, and thank you for approaching us. Please confirm that your patch is still required after this change[1], which is part of the unreleased vorbis-tools 1.3.0 -Ivo [1] https://trac.xiph.org/changeset/15003/trunk/vorbis-tools/oggenc
2015 Feb 19
0
[PATCH] oggenc: validate count of channels in the header
...lign = READ_U16_LE(buf+12); format.samplesize = READ_U16_LE(buf+14); + if(channels <= 0L || SHRT_MAX < channels) + { + fprintf(stderr, _("Warning: Unsupported count of channels in WAV header\n")); + return 0; + } + if(format.format == -2) /* WAVE_FORMAT_EXTENSIBLE */ { if(len<40) -- 2.1.0
2015 Feb 04
0
[PATCH] oggenc: Fix crash by invalid channels in WAV files
...ormat.align = READ_U16_LE(buf+12); format.samplesize = READ_U16_LE(buf+14); + if(format.channels <= 0) + { + fprintf(stderr,"ERROR: Invalid number of channels (%d) found in WAV file\n", format.channels); + return 0; + } + if(format.format == -2) /* WAVE_FORMAT_EXTENSIBLE */ { if(len<40)
2014 Sep 12
0
opus Digest, Vol 68, Issue 6
...be done along the lines that FFmpeg used for > Vorbis (though how you would handle issues like pre-skip, end trimming, > and pre-roll, I have no idea). > > Why do you ask?********************************** I'm investigating the possibility of adding Opus to ASF. I will probably use WAVE_FORMAT_EXTENSIBLE instead: "WAVEFORMATEXTENSIBLE allows you to avoid having to register a new format tag with Microsoft." Preroll is supported by ASF. But I'm unsure if pre-skip and end trimming can be supported. I guess one could live without it.
2007 Jun 10
0
Flac woes
...quently. It isn't clear > what the issue is there? WARNING: legacy WAVE file has format type 1 but bits-per-sample=24? Some of my programs' wav files get that warning, too. I just looked into that, and apparently Microsoft's latest spec urges the use of an alternate header format (WAVE_FORMAT_EXTENSIBLE) for bit depths other than 8 and 16. I'm not sure why, as I know of no program that has trouble with these 24-bit files, and no program besides FLAC that warns about them. Other wave file documentation I've seen -- for example, http://www.sonicspot.com/guide/ -- doesn't include that re...
2004 Sep 10
2
Re: FLAC format
Hi, >That's what I wanted to say a month ago. Mr. Blum, I'm really sorry for misunderstanding you. My mistake. I choose an ACM codec because it's the only option that works on every Windows Platform, and since the DirectShow has a generic wrapper that allows it to use ACM codecs, it appeared a good idea. I didn't note that the file format was going to be a problem. But I think
2007 Jun 10
4
Flac woes
Howdy, Flac-1.1.4 is refusing to encode some WAV files (amd64, gentoo): % flac Song\ Name-Track01.wav Song Name-Track01.wav: WARNING: legacy WAVE file has format type 1 but bits-per-sample=24 Song Name-Track01.wav: 100% complete, ratio=0.546Song Name-Track01.wav: ERROR during read of data pad byte % sfinfo Song\ Name-Track01.wav File Name Song Name-Track01.wav File Format Microsoft RIFF
2007 Mar 19
1
Problem with WAVE_FORMAT_ADPCM sound files
Hi all, I recently managed to install "multimedia German dictionary", which I get with the local newspaper , under wine and it works OK. The problem it is when I try to use the most important feature for me - the pronunciation. When I try to listen to any word , no sound is played and wine outputs the following to the console: wodOpen unimplemented format: WAVE_FORMAT_ADPCM I rewieved
2008 Sep 18
2
vorbis-tools 1.3.0 BETA - Help testing.
...3: return value to stop decoding after buffer is shut down (#1357) * oggdec: gettextized help text (#1385) * oggenc: fixed a core dump while resampling from FLAC (#1316) * oggenc: fixed a typo in the Skeleton handling routine * oggenc: fixed remapping channels bug (#1326) * oggenc: support for WAVE_FORMAT_EXTENSIBLE headers (#1326) * oggenc: support for 32 bit Wave files (#1326) * oggenc: --ignorelength; support for Wave files > 4 GB (#1326) * oggenc: split help text into manageable chunks to help translators (#1385) * oggenc: --utf8 command similar to vorbiscomment's --raw (#268) * oggenc: fixed t...
2007 Jun 11
1
7.1 FLAC...But hao?
...he Waves into to be able to encode them to 7.1 FLAC, or does the reference encoder just not currently support 7.1? I have also tried using the utility called Wavewizard to output the file as plain Wave PCM, but then it gives an error along the lines that there are more then 2 channels and it is not WAVE_FORMAT_EXTENSIBLE, so it cannot assign channels on its own. Most confusing part of all is that someone sent me a 7.1 FLAC sample from a BR movie. For some reason the reference CLI is unable to decode the file even for experimentation. I get the error "Inosensu Kkaku kidtai-sample-track2.ogg: ERROR: stream is t...
2013 Jan 02
4
Define 6.1 and 7.1 channel mappings
I apologize for the terribly long message, but here goes. ------------------------------------------------------------------------------------------------- First, regarding existing tools that I now about. libavcodec and users (e.g. HandBrake): - if there are 6 channels or less, the layout is set by the decoder as per the FLAC specification - if there are more than 6 channels, the layout is