Re: [libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-28 Thread Anton Khirnov
On Sat, 28 Sep 2013 14:03:19 +0200, Maxim Polijakowski wrote: > Am 28.09.2013 07:35, schrieb Anton Khirnov: > > [...] > > framesize = ((codec_params & 0x3FF) * 8) + 8; > > samplerate = ff_oma_srate_tab[(codec_params >> 13) & 7] * 100; > > if (!samplerate) { > > @@ -3

Re: [libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-27 Thread Anton Khirnov
On Sat, 28 Sep 2013 00:35:27 +0200, Maxim Polijakowski wrote: > > > Hi crews, > > > > the attached patch adds support for multichannel ATRAC3+ streams to > > the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame > > size to right one of 2048 samples. > > > > The patch for ATRAC3+

Re: [libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-27 Thread Maxim Polijakowski
Hi crews, the attached patch adds support for multichannel ATRAC3+ streams to the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame size to right one of 2048 samples. The patch for ATRAC3+ codec itself is in preparation and will be posted shortly... Please find attached th

Re: [libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-25 Thread Diego Biurrun
On Wed, Sep 25, 2013 at 12:36:50PM +0200, Maxim Polijakowski wrote: > > the attached patch adds support for multichannel ATRAC3+ streams to > the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame > size to right one of 2048 samples. > > The patch for ATRAC3+ codec itself is in prepar

[libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-25 Thread Maxim Polijakowski
Hi crews, the attached patch adds support for multichannel ATRAC3+ streams to the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame size to right one of 2048 samples. The patch for ATRAC3+ codec itself is in preparation and will be posted shortly... Please review and commit.