Re: [FFmpeg-devel] [PATCH] avcodec/als: use planar sample formats

2017-07-05 Thread wm4
On Tue, 4 Jul 2017 21:34:26 +0200 Thilo Borgmann wrote: > Am 02.07.17 um 16:17 schrieb Paul B Mahol: > > On 7/2/17, Thilo Borgmann wrote: > >> Am 01.07.17 um 22:23 schrieb Paul B Mahol: > >>> This is native layout of this codec. > >> > >> From where is that definition? > > > > See how s

Re: [FFmpeg-devel] [PATCH] avcodec/als: use planar sample formats

2017-07-04 Thread Paul B Mahol
On 7/4/17, Thilo Borgmann wrote: > Am 02.07.17 um 16:17 schrieb Paul B Mahol: >> On 7/2/17, Thilo Borgmann wrote: >>> Am 01.07.17 um 22:23 schrieb Paul B Mahol: This is native layout of this codec. >>> >>> From where is that definition? >> >> See how samples are stored in raw buffers. > > Th

Re: [FFmpeg-devel] [PATCH] avcodec/als: use planar sample formats

2017-07-04 Thread Thilo Borgmann
Am 02.07.17 um 16:17 schrieb Paul B Mahol: > On 7/2/17, Thilo Borgmann wrote: >> Am 01.07.17 um 22:23 schrieb Paul B Mahol: >>> This is native layout of this codec. >> >> From where is that definition? > > See how samples are stored in raw buffers. The raw buffers are our own construct and as su

Re: [FFmpeg-devel] [PATCH] avcodec/als: use planar sample formats

2017-07-02 Thread Paul B Mahol
On 7/2/17, Thilo Borgmann wrote: > Am 01.07.17 um 22:23 schrieb Paul B Mahol: >> This is native layout of this codec. > > From where is that definition? See how samples are stored in raw buffers. Many codecs do not do interleaving and that work is left to another library. ___

Re: [FFmpeg-devel] [PATCH] avcodec/als: use planar sample formats

2017-07-02 Thread Thilo Borgmann
Am 01.07.17 um 22:23 schrieb Paul B Mahol: > This is native layout of this codec. From where is that definition? -Thilo ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] avcodec/als: use planar sample formats

2017-07-01 Thread Paul B Mahol
This is native layout of this codec. Signed-off-by: Paul B Mahol --- libavcodec/alsdec.c | 23 +-- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 4a8f13d..31e95e2 100644 --- a/libavcodec/alsdec.c +++ b/libavcode

[FFmpeg-devel] [PATCH] avcodec/als: use planar sample formats

2017-07-01 Thread Paul B Mahol
This is native layout of this codec. Signed-off-by: Paul B Mahol --- libavcodec/alsdec.c | 23 +-- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 4a8f13d..31e95e2 100644 --- a/libavcodec/alsdec.c +++ b/libavcode