[FFmpeg-devel] [PATCH] avcodec: add VMX1 decoder

2023-06-08 Thread Paul B Mahol
Attached. From 2e0bbbc73afeac43e8cb7e2d5c78647725c764ba Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 4 Jun 2023 20:30:59 +0200 Subject: [PATCH] avcodec: add VMX1 decoder Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/codec_

Re: [FFmpeg-devel] [PATCH] avcodec: add VMX1 decoder

2023-06-08 Thread Jean-Baptiste Kempf
On Thu, 8 Jun 2023, at 19:39, Paul B Mahol wrote: > Attached. Missing version bumping? -- Jean-Baptiste Kempf - President +33 672 704 734 ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubs

Re: [FFmpeg-devel] [PATCH] avcodec: add VMX1 decoder

2023-06-09 Thread Paul B Mahol
On Fri, Jun 9, 2023 at 7:57 AM Jean-Baptiste Kempf wrote: > On Thu, 8 Jun 2023, at 19:39, Paul B Mahol wrote: > > Attached. > > Missing version bumping? > That is done when committing. To prevent potential need for rebase if in meantime someone changes version. > -- > Jean-Baptiste Kempf - P

Re: [FFmpeg-devel] [PATCH] avcodec: add VMX1 decoder

2023-06-10 Thread Andreas Rheinhardt
Paul B Mahol: > +static av_cold int decode_init(AVCodecContext *avctx) > +{ > +VMIXContext *s = avctx->priv_data; > + > +avctx->bits_per_raw_sample = 8; > +avctx->pix_fmt = AV_PIX_FMT_YUV422P; > + > +avctx->coded_width = FFALIGN(avctx->width, 16); > +avctx->coded_height = FFALIG

Re: [FFmpeg-devel] [PATCH] avcodec: add VMX1 decoder

2023-06-12 Thread Paul B Mahol
On Sat, Jun 10, 2023 at 12:24 PM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > Paul B Mahol: > > +static av_cold int decode_init(AVCodecContext *avctx) > > +{ > > +VMIXContext *s = avctx->priv_data; > > + > > +avctx->bits_per_raw_sample = 8; > > +avctx->pix_fmt = AV_PIX