Re: [FFmpeg-devel] [PATCH v3 2/2] avformat: add demuxer for LEGO Racers' ALP format

2020-03-08 Thread Carl Eugen Hoyos
Am So., 8. März 2020 um 13:09 Uhr schrieb Zane van Iperen : > +static int alp_probe(const AVProbeData *p) > +{ > +uint32_t i; > + > +if (AV_RL32(p->buf) != ALP_TAG) > +return 0; > + > +/* Only allowed header sizes are 8 and 12. */ > +i = AV_RL32(p->buf + 4); > +if (i !=

Re: [FFmpeg-devel] [PATCH v3 2/2] avformat: add demuxer for LEGO Racers' ALP format

2020-03-08 Thread Michael Niedermayer
On Sun, Mar 08, 2020 at 03:31:48PM +0100, Paul B Mahol wrote: > lgtm will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The educated differ from the uneducated as much as the living from the dead. -- Aristotle signature.asc Description: PGP signa

Re: [FFmpeg-devel] [PATCH v3 2/2] avformat: add demuxer for LEGO Racers' ALP format

2020-03-08 Thread Paul B Mahol
lgtm On 3/8/20, Zane van Iperen wrote: > Signed-off-by: Zane van Iperen > --- > Changelog| 1 + > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/alp.c| 146 +++ > libavformat/version.h| 4 +-

[FFmpeg-devel] [PATCH v3 2/2] avformat: add demuxer for LEGO Racers' ALP format

2020-03-08 Thread Zane van Iperen
Signed-off-by: Zane van Iperen --- Changelog| 1 + libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/alp.c| 146 +++ libavformat/version.h| 4 +- 5 files changed, 151 insertions(+), 2 deletions(-) c