Re: [FFmpeg-devel] [PATCH] mpegaudiodec_template: add ability to check CRC

2019-03-14 Thread Michael Niedermayer
On Fri, Mar 08, 2019 at 06:48:15PM +0100, Lynne wrote: > > > > 7 Mar 2019, 21:18 by mich...@niedermayer.cc: > > > On Wed, Mar 06, 2019 at 07:09:52PM +0100, Lynne wrote: > > > >> A lot of files have CRC included. > >> The CRC only covers 34 bytes at most from the frame but it should still be > >

Re: [FFmpeg-devel] [PATCH] mpegaudiodec_template: add ability to check CRC

2019-03-13 Thread Lynne
8 Mar 2019, 17:48 by d...@lynne.ee: > > > > 7 Mar 2019, 21:18 by > mich...@niedermayer.cc > > : > >> On Wed, Mar 06, 2019 at 07:09:52PM +0100, Lynne wrote: >> >>> A lot of files have CRC included. >>> The CRC only covers 34 bytes at most from the frame but it should

Re: [FFmpeg-devel] [PATCH] mpegaudiodec_template: add ability to check CRC

2019-03-08 Thread Lynne
7 Mar 2019, 21:18 by mich...@niedermayer.cc: > On Wed, Mar 06, 2019 at 07:09:52PM +0100, Lynne wrote: > >> A lot of files have CRC included. >> The CRC only covers 34 bytes at most from the frame but it should still be >> enough for some amount of error detection. >> >> mpegaudiodec_template.c

Re: [FFmpeg-devel] [PATCH] mpegaudiodec_template: add ability to check CRC

2019-03-07 Thread Michael Niedermayer
On Thu, Mar 07, 2019 at 06:32:00PM -0300, James Almer wrote: > On 3/7/2019 6:18 PM, Michael Niedermayer wrote: > > On Wed, Mar 06, 2019 at 07:09:52PM +0100, Lynne wrote: > >> A lot of files have CRC included. > >> The CRC only covers 34 bytes at most from the frame but it should still be > >> enoug

Re: [FFmpeg-devel] [PATCH] mpegaudiodec_template: add ability to check CRC

2019-03-07 Thread James Almer
On 3/7/2019 6:18 PM, Michael Niedermayer wrote: > On Wed, Mar 06, 2019 at 07:09:52PM +0100, Lynne wrote: >> A lot of files have CRC included. >> The CRC only covers 34 bytes at most from the frame but it should still be >> enough for some amount of error detection. > >> mpegaudiodec_template.c |

Re: [FFmpeg-devel] [PATCH] mpegaudiodec_template: add ability to check CRC

2019-03-07 Thread Michael Niedermayer
On Wed, Mar 06, 2019 at 07:09:52PM +0100, Lynne wrote: > A lot of files have CRC included. > The CRC only covers 34 bytes at most from the frame but it should still be > enough for some amount of error detection. > mpegaudiodec_template.c | 20 +--- > 1 file changed, 17 insertio

[FFmpeg-devel] [PATCH] mpegaudiodec_template: add ability to check CRC

2019-03-06 Thread Lynne
A lot of files have CRC included. The CRC only covers 34 bytes at most from the frame but it should still be enough for some amount of error detection. >From e1f4410f35d3d7f774a0de59ab72764033d14900 Mon Sep 17 00:00:00 2001 From: Lynne Date: Wed, 6 Mar 2019 17:04:04 + Subject: [PATCH] mpegaudi