[issue1569] flvenc.c audio_codec_ids error.

2009-12-13 Thread Daniel Verkamp
Daniel Verkamp added the comment: Applied, thanks. -- status: open -> closed substatus: approved -> fixed _ FFmpeg issue tracker __

[issue1569] flvenc.c audio_codec_ids error.

2009-12-13 Thread Michael Niedermayer
Michael Niedermayer added the comment: [...] > flvdec.c |4 ++-- > flvenc.c |6 +++--- > 2 files changed, 5 insertions(+), 5 deletions(-) > bbc640b0c1f38389ac43a054a8eec4cc62bc0349 > 0001-FLV-8-bit-PCM-is-unsigned-not-signed.patch > >>From dc1fc04a56b5c9baa770f481a6f26de2151002db Mon

[issue1569] flvenc.c audio_codec_ids error.

2009-12-13 Thread Daniel Verkamp
Daniel Verkamp added the comment: Add me to nosy -- nosy: +DrV _ FFmpeg issue tracker _

[issue1569] flvenc.c audio_codec_ids error.

2009-12-13 Thread Daniel Verkamp
Daniel Verkamp added the comment: Sample created by ffmpeg with patch applied _ FFmpeg issue tracker _FLVยจ

[issue1569] flvenc.c audio_codec_ids error.

2009-12-13 Thread Daniel Verkamp
Daniel Verkamp added the comment: Attached patch fixes the issue in the FLV muxer and the equivalent problem in the demuxer. Tested with the Windows Flash browser plugin - unsigned sounds correct, signed does not. _ FFmpeg issue tracker

[issue1569] flvenc.c audio_codec_ids error.

2009-11-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos added the comment: Fix status. -- status: new -> open substatus: new -> needs_more_info _ FFmpeg issue tracker ___

[issue1569] flvenc.c audio_codec_ids error.

2009-11-26 Thread Michael Niedermayer
Michael Niedermayer added the comment: On Thu, Nov 26, 2009 at 07:59:33AM +, regits wrote: > from flv spec, pcm 8bits are unsigned. > > so we need to change all "CODEC_ID_PCM_S8" in > libavformat/flvenc.c to "CODEC_ID_PCM_U8". please upload a sample flv that shows this bug [...] ___

[issue1569] flvenc.c audio_codec_ids error.

2009-11-25 Thread regits
New submission from regits : from flv spec, pcm 8bits are unsigned. so we need to change all "CODEC_ID_PCM_S8" in libavformat/flvenc.c to "CODEC_ID_PCM_U8". -- messages: 8002 priority: normal status: new substatus: new title: flvenc.c audio_codec_ids error. type: bug _