[FFmpeg-cvslog] avutil/mips: loongson add mmi utils header file

2016-10-22 Thread Zhou Xiaoyong
ffmpeg | branch: master | Zhou Xiaoyong | Mon Oct 10 16:07:59 2016 +0800| [b9cd9226609bd2d8bfd3a706c345a9a890e973e5] | committer: Michael Niedermayer avutil/mips: loongson add mmi utils header file 1.mmiutils.h defined MMI_ load/store macros for loongson2e/2f/3a 2.mmiutils.h defined some mmi a

[FFmpeg-cvslog] avcodec/mips: loongson optimize mmi load and store operators

2016-10-22 Thread Zhou Xiaoyong
ffmpeg | branch: master | Zhou Xiaoyong | Mon Oct 10 16:09:12 2016 +0800| [89ec4adad6cb8c8bb4ecd61b51d42ebde424bcfb] | committer: Michael Niedermayer avcodec/mips: loongson optimize mmi load and store operators 1.MMI_ load/store macros are defined in libavutil/mips/mmiutils.h 2.Replace some un

[FFmpeg-cvslog] lavf/mpegts: add missed fixes to scte35 section callback

2016-10-22 Thread Carlos Fernandez
ffmpeg | branch: master | Carlos Fernandez | Sat Oct 22 12:03:32 2016 +0200| [728ccae8a2c9910298e711be00e49eac988a31e5] | committer: Marton Balint lavf/mpegts: add missed fixes to scte35 section callback They somehow got lost along the patch versions. Signed-off-by: Marton Balint > http://g

[FFmpeg-cvslog] avcodec/cuvid: Allow reinitialization of decoder

2016-10-22 Thread Philip Langdale
ffmpeg | branch: master | Philip Langdale | Sat Oct 22 14:31:41 2016 -0700| [ee7d6738ca694872f84ed62dd33342d187d76464] | committer: Philip Langdale avcodec/cuvid: Allow reinitialization of decoder In practice, this works fine. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ee7d67

[FFmpeg-cvslog] avformat/matroskaenc: write DisplayWidth and DisplayHeight elements only if they differ from PixelWidth and PixelHeight

2016-10-22 Thread James Almer
ffmpeg | branch: master | James Almer | Mon Oct 17 14:17:35 2016 -0300| [cc71fa319fd7edc54c02a1c552a72cebd0fc4287] | committer: James Almer avformat/matroskaenc: write DisplayWidth and DisplayHeight elements only if they differ from PixelWidth and PixelHeight Signed-off-by: James Almer > htt

[FFmpeg-cvslog] mpegts: handle AVMEDIA_TYPE_UNKNOWN correctly

2016-10-22 Thread Andreas Cadhalpun
ffmpeg | branch: master | Andreas Cadhalpun | Sat Oct 22 01:18:38 2016 +0200| [178eebd79e5bf3f4a4471576cd1a48bf9df59e09] | committer: Andreas Cadhalpun mpegts: handle AVMEDIA_TYPE_UNKNOWN correctly It is negative, so can't be used for left shifting. This fixes ubsan runtime error: shift expon

[FFmpeg-cvslog] avutil/avassert: Add av_assertX_fpu()

2016-10-22 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Oct 21 12:50:03 2016 +0200| [f5495c970cf2a8745a2f4520d543cb215c06e545] | committer: Michael Niedermayer avutil/avassert: Add av_assertX_fpu() Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f54

[FFmpeg-cvslog] avcodec/svq1enc: Clear MMX state after svq1_encode_plane()

2016-10-22 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Oct 21 14:33:42 2016 +0200| [70dc6bbf1bf0c78d6d5f8a0a195b57b6d66a56c0] | committer: Michael Niedermayer avcodec/svq1enc: Clear MMX state after svq1_encode_plane() svq1_encode_plane() uses SIMD and we call libc memory allocation functions aft

[FFmpeg-cvslog] avcodec/utils: Move emms_c() before memory allocation functions in avcodec_encode_video2()

2016-10-22 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Oct 21 14:47:34 2016 +0200| [966c5c7bb8bad6fef3efce935b943d05ccea0eaa] | committer: Michael Niedermayer avcodec/utils: Move emms_c() before memory allocation functions in avcodec_encode_video2() Signed-off-by: Michael Niedermayer > http://

[FFmpeg-cvslog] avcodec/mpegvideo_enc: Add missing emms_c() to clear MMX state after SIMD use

2016-10-22 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Oct 21 15:01:36 2016 +0200| [de0cd0ffc9e4b7780d0cae5f969aca4e3bdf7e48] | committer: Michael Niedermayer avcodec/mpegvideo_enc: Add missing emms_c() to clear MMX state after SIMD use Fixes undefined behavior due to calling libc allocation with

[FFmpeg-cvslog] avcodec/snowenc: Clear MMX state after edge drawing and picture encode

2016-10-22 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Oct 21 15:10:48 2016 +0200| [2c1d38d1e1c2617f51bbb833bb7fe1298644cd21] | committer: Michael Niedermayer avcodec/snowenc: Clear MMX state after edge drawing and picture encode Fixes undefined behavior from calling libc allocation with unclean

[FFmpeg-cvslog] avcodec/cavsdec: Clear MMX state after MB decode loop

2016-10-22 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Oct 21 14:38:52 2016 +0200| [493ad519ddee260200f7a00a2e5ed8cbd28b7f67] | committer: Michael Niedermayer avcodec/cavsdec: Clear MMX state after MB decode loop The MMX state must be cleared between using MMX and using memory allocation thats ba