Re: [FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2019-03-30 Thread James Almer
On 3/28/2019 6:12 PM, Paul B Mahol wrote: > This work is sponsored by VideoLAN. > > Signed-off-by: Paul B Mahol > --- > libavcodec/Makefile | 1 + > libavcodec/agm.c| 701 > libavcodec/allcodecs.c | 1 + > libavcodec/avcodec.h| 1 +

Re: [FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2019-03-30 Thread Pedro Arthur
Em sáb, 30 de mar de 2019 às 12:43, Paul B Mahol escreveu: > > On 3/30/19, Pedro Arthur wrote: > > Em qui, 28 de mar de 2019 às 18:12, Paul B Mahol > > escreveu: > >> > >> +static int decode_motion_vectors(AVCodecContext *avctx, GetBitContext > >> *gb) > >> +{ > >> +AGMContext *s = avctx->pr

Re: [FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2019-03-30 Thread Paul B Mahol
On 3/30/19, Pedro Arthur wrote: > Em qui, 28 de mar de 2019 às 18:12, Paul B Mahol > escreveu: >> >> +static int decode_motion_vectors(AVCodecContext *avctx, GetBitContext >> *gb) >> +{ >> +AGMContext *s = avctx->priv_data; >> +int nb_mvs = ((avctx->height + 15) >> 4) * ((avctx->width + 1

Re: [FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2019-03-30 Thread Pedro Arthur
Em qui, 28 de mar de 2019 às 18:12, Paul B Mahol escreveu: > > +static int decode_motion_vectors(AVCodecContext *avctx, GetBitContext *gb) > +{ > +AGMContext *s = avctx->priv_data; > +int nb_mvs = ((avctx->height + 15) >> 4) * ((avctx->width + 15) >> 4); > +int ret, skip = 0, value, en

Re: [FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2019-03-30 Thread Paul B Mahol
On 3/28/19, Paul B Mahol wrote: > This work is sponsored by VideoLAN. > > Signed-off-by: Paul B Mahol > --- Will apply soon. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit l

[FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2019-03-28 Thread Paul B Mahol
This work is sponsored by VideoLAN. Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/agm.c| 701 libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h| 1 + libavcodec/codec_desc.c | 7 + libavformat/riff.c

[FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2018-10-13 Thread Paul B Mahol
This work is partially sponsored by VideoLAN. Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/agm.c| 701 libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h| 1 + libavcodec/codec_desc.c | 7 + libavformat/ri

Re: [FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2018-10-13 Thread Paul B Mahol
On 10/13/18, Michael Niedermayer wrote: > On Wed, Oct 10, 2018 at 01:22:24PM +0200, Paul B Mahol wrote: >> This work is partially sponsored by VideoLAN. >> >> Signed-off-by: Paul B Mahol >> --- >> > >> The AGM3 variant decodes with some artifacts. > > I looked a bit as you asked on IRC but wasnt

Re: [FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2018-10-13 Thread Michael Niedermayer
On Wed, Oct 10, 2018 at 01:22:24PM +0200, Paul B Mahol wrote: > This work is partially sponsored by VideoLAN. > > Signed-off-by: Paul B Mahol > --- > > The AGM3 variant decodes with some artifacts. I looked a bit as you asked on IRC but wasnt able to really fix it in the time i had available

[FFmpeg-devel] [PATCH] avcodec: add Amuse Graphics decoder

2018-10-10 Thread Paul B Mahol
This work is partially sponsored by VideoLAN. Signed-off-by: Paul B Mahol --- The AGM3 variant decodes with some artifacts. --- libavcodec/Makefile | 1 + libavcodec/agm.c| 692 libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h|