[FFmpeg-cvslog] avcodec/codec_desc: sort codec_descriptors

2018-02-09 Thread Muhammad Faiz
ffmpeg | branch: master | Muhammad Faiz | Sat Feb 3 01:07:44 2018 +0700| [5a2abf00f1949fa3dd64e55ae1963b1fd566e9ab] | committer: Muhammad Faiz avcodec/codec_desc: sort codec_descriptors Use bsearch on avcodec_descriptor_get(). Reviewed-by: Michael Niedermayer Signed-off-by: Muhammad Faiz

[FFmpeg-cvslog] checkasm/Makefile: add EXTRALIBS-swresample

2018-02-09 Thread Muhammad Faiz
ffmpeg | branch: master | Muhammad Faiz | Fri Feb 9 17:50:44 2018 +0700| [81d6501be77b273053a66eeced94d78e2021f1d1] | committer: Muhammad Faiz checkasm/Makefile: add EXTRALIBS-swresample Should fix https://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225058.html Signed-off-by: Muhammad Fa

[FFmpeg-cvslog] aptx: factorize FFABS calculation

2018-02-09 Thread Aurelien Jacobs
ffmpeg | branch: master | Aurelien Jacobs | Sat Jan 6 01:22:31 2018 +0100| [fea8e119a2bc103b64faba6b5e1f3defe0c344c2] | committer: Aurelien Jacobs aptx: factorize FFABS calculation > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fea8e119a2bc103b64faba6b5e1f3defe0c344c2 --- libav

[FFmpeg-cvslog] aptx: do some clipping to match original codec in extreme cases

2018-02-09 Thread Aurelien Jacobs
ffmpeg | branch: master | Aurelien Jacobs | Sat Jan 6 01:31:02 2018 +0100| [96b217f5e878fabc142fc198b1e297b624f5c17e] | committer: Aurelien Jacobs aptx: do some clipping to match original codec in extreme cases > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=96b217f5e878fabc142fc1

[FFmpeg-cvslog] aptx: implement the aptX HD bluetooth codec

2018-02-09 Thread Aurelien Jacobs
ffmpeg | branch: master | Aurelien Jacobs | Sat Jan 6 17:11:48 2018 +0100| [6fd110a0940f9177d33db4e98b2a66742cc29988] | committer: Aurelien Jacobs aptx: implement the aptX HD bluetooth codec > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6fd110a0940f9177d33db4e98b2a66742cc29988 -

[FFmpeg-cvslog] aptx: simplify by pre-calculating factor_max

2018-02-09 Thread Aurelien Jacobs
ffmpeg | branch: master | Aurelien Jacobs | Sat Jan 6 00:23:43 2018 +0100| [b7915f8a149aaa3cdd72a5f126a30bf2e0bf1738] | committer: Aurelien Jacobs aptx: simplify by pre-calculating factor_max > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b7915f8a149aaa3cdd72a5f126a30bf2e0bf1738

[FFmpeg-cvslog] aptx: add raw muxer and demuxer for aptX HD

2018-02-09 Thread Aurelien Jacobs
ffmpeg | branch: master | Aurelien Jacobs | Sat Jan 6 17:33:01 2018 +0100| [d8258489c87e5571337056be6ce1c2aa739e6873] | committer: Aurelien Jacobs aptx: add raw muxer and demuxer for aptX HD > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d8258489c87e5571337056be6ce1c2aa739e6873 -

[FFmpeg-cvslog] aptx: indentation (cosmetics only)

2018-02-09 Thread Aurelien Jacobs
ffmpeg | branch: master | Aurelien Jacobs | Sat Jan 6 17:56:21 2018 +0100| [c69054fa24f5125eea3c817e8a76fe6422ea165d] | committer: Aurelien Jacobs aptx: indentation (cosmetics only) > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c69054fa24f5125eea3c817e8a76fe6422ea165d --- liba

[FFmpeg-cvslog] examples: Don't call deprecated functions which don't do anything

2018-02-09 Thread Mark Thompson
ffmpeg | branch: master | Mark Thompson | Wed Feb 7 19:36:57 2018 +| [10bcc41bb40ba479bfc5ad29b1650a6b335437a8] | committer: Mark Thompson examples: Don't call deprecated functions which don't do anything > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=10bcc41bb40ba479bfc5ad29

[FFmpeg-cvslog] avformat/format: temporarily use old next api

2018-02-09 Thread Muhammad Faiz
ffmpeg | branch: master | Muhammad Faiz | Fri Feb 9 17:03:42 2018 +0700| [909e00ae816df9b6a05b1c4d0cafb794d4d0ca28] | committer: Muhammad Faiz avformat/format: temporarily use old next api Should fix https://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225066.html Signed-off-by: Muhammad

[FFmpeg-cvslog] avformat/mov: Fix ctts_index calculation

2018-02-09 Thread Xiaohan Wang
ffmpeg | branch: master | Xiaohan Wang | Fri Feb 2 17:33:56 2018 -0800| [dd5208aaf5bf229915a4c0e4d58cb063dfcb3b9a] | committer: Michael Niedermayer avformat/mov: Fix ctts_index calculation An index should never be equal to the count. Hence we must make sure *ctts_index < ctts_count. Reviewed