On Tue, Aug 25, 2020 at 01:28:56AM +0200, Paul B Mahol wrote:
> Signed-off-by: Paul B Mahol
> ---
> [WIP] Missing video decoder.
[...]
> +static int moflex_probe(const AVProbeData *p)
> +{
> +if (p->buf[0] != 0x4C && p->buf[1] != 0x32)
> +return 0;
> +
> +return AVPROBE_SCORE_MAX
Paul B Mahol:
> On 8/25/20, Andreas Rheinhardt wrote:
>> Paul B Mahol:
>>> Signed-off-by: Paul B Mahol
>>> ---
>>> [WIP] Missing video decoder.
>>> ---
>>> libavformat/Makefile | 1 +
>>> libavformat/allformats.c | 1 +
>>> libavformat/moflex.c | 291 +
On 8/25/20, Andreas Rheinhardt wrote:
> Paul B Mahol:
>> Signed-off-by: Paul B Mahol
>> ---
>> [WIP] Missing video decoder.
>> ---
>> libavformat/Makefile | 1 +
>> libavformat/allformats.c | 1 +
>> libavformat/moflex.c | 291 +++
>> 3 files chang
Paul B Mahol:
> Signed-off-by: Paul B Mahol
> ---
> [WIP] Missing video decoder.
> ---
> libavformat/Makefile | 1 +
> libavformat/allformats.c | 1 +
> libavformat/moflex.c | 291 +++
> 3 files changed, 293 insertions(+)
> create mode 100644 libav
Signed-off-by: Paul B Mahol
---
[WIP] Missing video decoder.
---
libavformat/Makefile | 1 +
libavformat/allformats.c | 1 +
libavformat/moflex.c | 291 +++
3 files changed, 293 insertions(+)
create mode 100644 libavformat/moflex.c
diff --git a/li