[libav-devel] [PATCH V3] libavcodec/mjpeg_qsv: Add QSV MJPEG encoder

2017-07-20 Thread Huang, Zhengxu
--- Changes from v2: * modify some coding-style and comments as per Diego's review --- --- Changes from v1: * separate the mjpeg encoder from h264/hevc/mpeg2 as per Luca's review * reuse the global_quality option as per Luca's review * modify some coding-style and add changlog as per Diego's

Re: [libav-devel] [PATCH V2] libavcodec/mjpeg_qsv: Add the QSV MJPEG encoder

2017-07-20 Thread Huang, Zhengxu
On 2017/7/20 20:07, Diego Biurrun wrote: On Wed, Jul 19, 2017 at 02:41:31PM +0800, Huang, Zhengxu wrote: --- Changes from v1: * separate the mjpeg encoder from h264/hevc/mpeg2 as per Luca's review * reuse the global_quality option as per Luca's review * modify some coding-style and add

[libav-devel] [PATCH] rmdec: properly initialize ret to 0

2017-07-20 Thread Sean McGovern
After 95ce02b35d3d1bb16111031df1d82a6e4d894d36, the value of ret was not guaranteed to be 0 by some compilers. --- I am so sorry about this one. :/ I only modified the value of ret for the functions I changed in 95ce02b35, should I make the rest of the file consistent? --- libavformat/rmdec.c |

Re: [libav-devel] [libav-commits] rmdec: don't ignore the return value of av_get_packet()

2017-07-20 Thread Sean McGovern
Hi Martin, On Thu, Jul 20, 2017 at 2:58 PM, Martin Storsjö wrote: > On Mon, 17 Jul 2017, Sean McGovern wrote: > >> Module: libav >> Branch: master >> Commit: 95ce02b35d3d1bb16111031df1d82a6e4d894d36 >> >> Author:Sean McGovern >> Committer: Sean

[libav-devel] [PATCH] avconv: Do not issue a warning if no specific devices are selected

2017-07-20 Thread Luca Barbato
The hardware encoders currently do pick the first compatible device available by themselves. --- avtools/avconv_hw.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/avtools/avconv_hw.c b/avtools/avconv_hw.c index 36ef866927..85fae91586 100644 --- a/avtools/avconv_hw.c

Re: [libav-devel] [libav-commits] rmdec: don't ignore the return value of av_get_packet()

2017-07-20 Thread Martin Storsjö
On Mon, 17 Jul 2017, Sean McGovern wrote: Module: libav Branch: master Commit: 95ce02b35d3d1bb16111031df1d82a6e4d894d36 Author:Sean McGovern Committer: Sean McGovern Date: Wed Jul 12 19:45:46 2017 -0400 rmdec: don't ignore the return value

Re: [libav-devel] [PATCH] hevc: Make sure to update the current frame transfer characteristic

2017-07-20 Thread Luca Barbato
On 20/07/2017 14:43, Vittorio Giovara wrote: > Otherwise the first decoded frame will still be tagged with the > original transfer instead of the alternative one. > > Signed-off-by: Vittorio Giovara > --- > libavcodec/hevcdec.c | 2 +- > 1 file changed, 1

[libav-devel] [PATCH] hevc: Make sure to update the current frame transfer characteristic

2017-07-20 Thread Vittorio Giovara
Otherwise the first decoded frame will still be tagged with the original transfer instead of the alternative one. Signed-off-by: Vittorio Giovara --- libavcodec/hevcdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/hevcdec.c

Re: [libav-devel] [PATCH V2] libavcodec/mjpeg_qsv: Add the QSV MJPEG encoder

2017-07-20 Thread Diego Biurrun
On Wed, Jul 19, 2017 at 02:41:31PM +0800, Huang, Zhengxu wrote: > --- > Changes from v1: > * separate the mjpeg encoder from h264/hevc/mpeg2 as per Luca's review > * reuse the global_quality option as per Luca's review > * modify some coding-style and add changlog as per Diego's review > --- >