Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-07-08 Thread Hendrik Leppkes
On Fri, Jul 8, 2016 at 9:26 PM, Roger Pack wrote: > OK where do we find the "Nvidia CUVID decoder" library, is it this? > > https://1f0.de/lav-cuvid/ > Please don't top post. And no, thats not it, its just another implementaiton using the library. The headers and libraries are part of the NVIDIA

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-07-08 Thread Roger Pack
OK where do we find the "Nvidia CUVID decoder" library, is it this? https://1f0.de/lav-cuvid/ On 6/10/16, Timo Rothenpieler wrote: > --- > Changelog | 2 + > MAINTAINERS| 1 + > configure | 34 +++ > libavcodec/Makefile| 5 + > libavcodec/allcode

[FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-10 Thread Timo Rothenpieler
--- Changelog | 2 + MAINTAINERS| 1 + configure | 34 +++ libavcodec/Makefile| 5 + libavcodec/allcodecs.c | 10 + libavcodec/cuvid.c | 698 + libavcodec/version.h | 2 +- 7 files changed, 75

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Hendrik Leppkes
On Sun, Jun 5, 2016 at 8:58 PM, Timo Rothenpieler wrote: > --- > Changelog | 2 + > MAINTAINERS| 1 + > configure | 20 ++ > libavcodec/Makefile| 2 + > libavcodec/allcodecs.c | 4 + > libavcodec/cuvid.c | 550 > +

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Hendrik Leppkes
On Sun, Jun 5, 2016 at 8:58 PM, Timo Rothenpieler wrote: > --- > Changelog | 2 + > MAINTAINERS| 1 + > configure | 20 ++ > libavcodec/Makefile| 2 + > libavcodec/allcodecs.c | 4 + > libavcodec/cuvid.c | 550 > +

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Hendrik Leppkes
On Sun, Jun 5, 2016 at 8:58 PM, Timo Rothenpieler wrote: > --- > Changelog | 2 + > MAINTAINERS| 1 + > configure | 20 ++ > libavcodec/Makefile| 2 + > libavcodec/allcodecs.c | 4 + > libavcodec/cuvid.c | 550 > +

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Andrey Turkin
2016-06-05 21:58 GMT+03:00 Timo Rothenpieler : > + > +avctx->width = format->coded_width; > +avctx->height = format->coded_height; > + > This patch seems to mix bitstream picture dimensions and output picture dimensions in several places. Can you test if the decoder works with input video

[FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-05 Thread Timo Rothenpieler
--- Changelog | 2 + MAINTAINERS| 1 + configure | 20 ++ libavcodec/Makefile| 2 + libavcodec/allcodecs.c | 4 + libavcodec/cuvid.c | 550 + libavcodec/version.h | 4 +- 7 files changed, 581