[FFmpeg-cvslog] lavc/hevc_ps: fix crop info for monochrome

2018-08-22 Thread Zhao Zhili
ffmpeg | branch: master | Zhao Zhili | Wed Aug 22 17:37:15 2018 +0800| [70d2bab80b38adf6d9a1430992c33dd2e3efa93f] | committer: James Almer lavc/hevc_ps: fix crop info for monochrome The values of SubWidthC and SubHeightC are 1 in the ITU-T H.265. The current code use the value of 2.

[FFmpeg-cvslog] avformat/mov: Allow saio/saiz in clear content.

2018-08-22 Thread Jacob Trimble
ffmpeg | branch: master | Jacob Trimble | Tue Aug 14 10:18:55 2018 -0700| [eb350ab738e7e2590b26d97c465da1138fe54598] | committer: Michael Niedermayer avformat/mov: Allow saio/saiz in clear content. If there is a saio/saiz in clear content, we shouldn't create the encryption index if we don't

[FFmpeg-cvslog] avformat/utils: avoid undefined integer overflow behavior in update_stream_timings()

2018-08-22 Thread Fredrik Hubinette
ffmpeg | branch: master | Fredrik Hubinette | Mon Aug 20 12:59:32 2018 -0700| [5ecd580953bbed48e144c364d3cdf7ea1f3e7ddf] | committer: Michael Niedermayer avformat/utils: avoid undefined integer overflow behavior in update_stream_timings() Signed-off-by: Michael Niedermayer >

[FFmpeg-cvslog] avformat/mxfenc: automatically update descriptors klv size

2018-08-22 Thread Baptiste Coudurier
ffmpeg | branch: master | Baptiste Coudurier | Wed Mar 21 08:37:59 2018 -0700| [130de9142edd8f0ab2001fbedb839649fed0b9b6] | committer: Baptiste Coudurier avformat/mxfenc: automatically update descriptors klv size >

[FFmpeg-cvslog] avformat/hls: support decryption AES128 fmp4 m3u8 list

2018-08-22 Thread Steven Liu
ffmpeg | branch: master | Steven Liu | Mon Aug 13 18:15:23 2018 +0800| [9e61141905b5197c8fbab2a651b4013361c8550f] | committer: Steven Liu avformat/hls: support decryption AES128 fmp4 m3u8 list Signed-off-by: Steven Liu >

[FFmpeg-cvslog] lavf/hlsenc: fix mixed declarations and code warning.

2018-08-22 Thread Jun Zhao
ffmpeg | branch: master | Jun Zhao | Mon Aug 20 14:36:20 2018 +0800| [c4608d225faf0c14b5decdfb73f14bc58ddcb380] | committer: Jun Zhao lavf/hlsenc: fix mixed declarations and code warning. fix the build warning for "ISO C90 forbids mixed declarations and code" Reviewed-by: Steven Liu

[FFmpeg-cvslog] lavc/libkvazaar: fix incompatible pointer type.

2018-08-22 Thread Jun Zhao
ffmpeg | branch: master | Jun Zhao | Mon Aug 20 14:39:32 2018 +0800| [e2921578c09ebbaa86b1659bc6076049f573e349] | committer: Jun Zhao lavc/libkvazaar: fix incompatible pointer type. fix the waring: libavcodec/libkvazaar.c:210:27: warning: passing argument 3 of ‘av_image_copy’ from

[FFmpeg-cvslog] swscale : treat float input data as uint 16bpc

2018-08-22 Thread Martin Vignali
ffmpeg | branch: master | Martin Vignali | Mon Aug 20 15:28:00 2018 +0200| [3af1c4ea7d18c54738cd93f09b376d2228fdbce0] | committer: Martin Vignali swscale : treat float input data as uint 16bpc Currently float are converted to 16b uint in input part using src depth (32 bits) in hScale16To19

[FFmpeg-cvslog] avcodec/psd : add support for gray float

2018-08-22 Thread Martin Vignali
ffmpeg | branch: master | Martin Vignali | Mon Aug 20 15:26:07 2018 +0200| [9e64ee3936b1a49842add8dbd5e5d016f4f32103] | committer: Martin Vignali avcodec/psd : add support for gray float > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9e64ee3936b1a49842add8dbd5e5d016f4f32103 ---

[FFmpeg-cvslog] swscale/swscale : small cosmetic

2018-08-22 Thread Martin Vignali
ffmpeg | branch: master | Martin Vignali | Mon Aug 20 15:31:01 2018 +0200| [bdd67546482bd3bdd67b4ae2d855fd1ff989d0d0] | committer: Martin Vignali swscale/swscale : small cosmetic > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bdd67546482bd3bdd67b4ae2d855fd1ff989d0d0 ---

[FFmpeg-cvslog] lavc/qsvenc: add quality status to side_data

2018-08-22 Thread Zhong Li
ffmpeg | branch: master | Zhong Li | Wed Aug 8 22:42:47 2018 +0800| [900487043b6e531fe3edf8c8d38288ef915f6f25] | committer: Zhong Li lavc/qsvenc: add quality status to side_data Add fix a memory leak issue as James's comments. V2: use a local pict_type since coded_frame is deprecated.