Re: [FFmpeg-devel] [PATCH v5 2/2] libavformat/webp: add WebP demuxer

2020-09-23 Thread Zlomek, Josef
On Sat, Sep 12, 2020 at 3:01 PM Lynne wrote: > On 11/09/2020 08:36, Josef Zlomek wrote: > > Adds the demuxer of animated WebP files. > > It supports non-animated, animated, truncated, and concatenated files. > > Reading from a pipe (and other non-seekable inputs) is also supported. > > > > The We

Re: [FFmpeg-devel] [PATCH v5 2/2] libavformat/webp: add WebP demuxer

2020-09-12 Thread Zlomek, Josef
Dne so 12. 9. 2020 22:35 uživatel Carl Eugen Hoyos napsal: > Am Fr., 11. Sept. 2020 um 08:36 Uhr schrieb Josef Zlomek : > > This is not the requested review, I am just curious about the > behaviour: > > > +static int webp_probe(const AVProbeData *p) > > +{ > > +const uint8_t *b = p->buf; > >

Re: [FFmpeg-devel] [PATCH v5 2/2] libavformat/webp: add WebP demuxer

2020-09-12 Thread Carl Eugen Hoyos
Am Fr., 11. Sept. 2020 um 08:36 Uhr schrieb Josef Zlomek : This is not the requested review, I am just curious about the behaviour: > +static int webp_probe(const AVProbeData *p) > +{ > +const uint8_t *b = p->buf; > + > +if (AV_RB32(b) == MKBETAG('R', 'I', 'F', 'F') && > +AV_R

Re: [FFmpeg-devel] [PATCH v5 2/2] libavformat/webp: add WebP demuxer

2020-09-12 Thread Lynne
On 11/09/2020 08:36, Josef Zlomek wrote: > Adds the demuxer of animated WebP files. > It supports non-animated, animated, truncated, and concatenated files. > Reading from a pipe (and other non-seekable inputs) is also supported. > > The WebP demuxer splits the input stream into packets containing

[FFmpeg-devel] [PATCH v5 2/2] libavformat/webp: add WebP demuxer

2020-09-10 Thread Josef Zlomek
Adds the demuxer of animated WebP files. It supports non-animated, animated, truncated, and concatenated files. Reading from a pipe (and other non-seekable inputs) is also supported. The WebP demuxer splits the input stream into packets containing one frame. It also marks the key frames properly.