Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Carl Eugen Hoyos
2019-03-20 23:20 GMT+01:00, Aidan R : > From: ffmpeg-devel on behalf of Michael > Niedermayer > Sent: 20 March 2019 19:08 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM > format demux. > >> fail

Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Aidan R
From: ffmpeg-devel on behalf of Michael Niedermayer Sent: 20 March 2019 19:08 To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux. > fails probetest: > > > tools/probetest 256 4096 > testing size=1

Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Michael Niedermayer
On Tue, Mar 19, 2019 at 10:53:11PM +, Aidan R wrote: > PCM format AUD files are found in Westwood's Blade Runner game. > --- > libavformat/westwood_aud.c | 83 > -- > 1 file changed, 66 insertions(+), 17 deletions(-) > > diff --git a/libavformat/we

Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Tomas Härdin
ons 2019-03-20 klockan 15:56 + skrev Aidan R: > tis 2019-03-19 klockan 22:53 + skrev Aidan R: > > > @@ -130,20 +161,24 @@ static int wsaud_read_packet(AVFormatContext *s, > > >   AVPacket *pkt) > > >  { > > >  AVIOContext *pb = s->pb; > > > +AUDDemuxConte

Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Aidan R
tis 2019-03-19 klockan 22:53 + skrev Aidan R: > @@ -69,13 +75,25 @@ static int wsaud_probe(AVProbeData *p) >> if (p->buf[10] & 0xFC) >> return 0; >> >> -if (p->buf[11] != 99 && p->buf[11] != 1) >> +/* valid format values are 99 == adpcm, 1 == snd1 and 0 == pcm */ >> +

Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Tomas Härdin
tis 2019-03-19 klockan 22:53 + skrev Aidan R: > @@ -69,13 +75,25 @@ static int wsaud_probe(AVProbeData *p) >  if (p->buf[10] & 0xFC) >  return 0; >   > -if (p->buf[11] != 99 && p->buf[11] != 1) > +/* valid format values are 99 == adpcm, 1 == snd1 and 0 == pcm */ > +if (p

[FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-19 Thread Aidan R
PCM format AUD files are found in Westwood's Blade Runner game. --- libavformat/westwood_aud.c | 83 -- 1 file changed, 66 insertions(+), 17 deletions(-) diff --git a/libavformat/westwood_aud.c b/libavformat/westwood_aud.c index 9c2d35cb8a..b25d299bf0 1