[FFmpeg-cvslog] mss2: Fix buffer overflow.

2016-02-28 Thread Reimar Döffinger
ffmpeg | branch: master | Reimar Döffinger | Thu Feb 25 21:04:36 2016 +0100| [0f199f0ad01ea4504edcfd947c85cfa69292f881] | committer: Reimar Döffinger mss2: Fix buffer overflow. Reported as https://trac.mplayerhq.hu/ticket/2264 but have not been able to reproduce with FFmpeg-only. I have no ide

[FFmpeg-cvslog] Document and validate AVFrame plane pointers.

2016-02-28 Thread Reimar Döffinger
ffmpeg | branch: master | Reimar Döffinger | Fri Feb 26 18:38:19 2016 +0100| [4dd4d535313016cf934a187ba8f46e51b583cfb9] | committer: Reimar Döffinger Document and validate AVFrame plane pointers. Check that the required plane pointers and only those are set up. Currently does not enforce anyth

[FFmpeg-cvslog] mjpegdec: Do not assume unused plane pointer are NULL.

2016-02-28 Thread Reimar Döffinger
ffmpeg | branch: master | Reimar Döffinger | Fri Feb 26 00:11:12 2016 +0100| [45fa03b1f9b0475df666f7592f250c37763b7d64] | committer: Reimar Döffinger mjpegdec: Do not assume unused plane pointer are NULL. We do neither document nor check such a requirement and for application-provided get_buff

[FFmpeg-cvslog] avformat/Makefile: Fixed missing rawutils.o reference ( required by movenc.c)

2016-02-28 Thread Roman Ryltsov
ffmpeg | branch: master | Roman Ryltsov | Sun Feb 28 14:32:15 2016 +0100| [af2568a675a72b1715d2852a59199ee63b406556] | committer: Michael Niedermayer avformat/Makefile: Fixed missing rawutils.o reference (required by movenc.c) Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitw

[FFmpeg-cvslog] lavf/mp3: Properly check return values of seeks and reads while reading the header

2016-02-28 Thread Derek Buitenhuis
ffmpeg | branch: master | Derek Buitenhuis | Fri Feb 26 17:10:08 2016 +| [1c9215e580b6436d1aff3c0118ef01269712ebd9] | committer: Derek Buitenhuis lavf/mp3: Properly check return values of seeks and reads while reading the header Fixes large amounts of seeking past EOF, which could be extr

[FFmpeg-cvslog] x86/vf_blend: Add SSE2 optimization for divide

2016-02-28 Thread Timothy Gu
ffmpeg | branch: master | Timothy Gu | Wed Feb 10 09:04:51 2016 +| [222e6da605eadd9afa386f0a6c3142b16e16cf74] | committer: Timothy Gu x86/vf_blend: Add SSE2 optimization for divide 4.5x faster than C float version with autovectorization 10 x faster than C int version 25 x faster than C

[FFmpeg-cvslog] LICENSE: Thorough editing

2016-02-28 Thread Timothy Gu
ffmpeg | branch: master | Timothy Gu | Sun Jan 24 09:17:36 2016 -0800| [bbf7500df99c52e5cecfbe32fbd0b682b6b28fac] | committer: Timothy Gu LICENSE: Thorough editing The changes in "Incompatible libraries" section are strictly based on what our configure script says. > http://git.videolan.org/g

[FFmpeg-cvslog] avcodec/mjpegdec: Fix decoding slightly odd progressive jpeg

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Sun Feb 28 18:10:23 2016 +0100| [c6f4720b8664e6e22eb5b3da6bb48ed5b113f746] | committer: Michael Niedermayer avcodec/mjpegdec: Fix decoding slightly odd progressive jpeg Fixes: ebd58db6-dc86-11e5-91c2-59daeddf50c7.jpg Signed-off-by: Michael Niede

[FFmpeg-cvslog] avfilter/vf_vectorscope: add color5 mode, mode like color but with higher saturation

2016-02-28 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Feb 28 19:20:50 2016 +0100| [2ad1c87bb260fc921878b04fa7729ab6cc7130e3] | committer: Paul B Mahol avfilter/vf_vectorscope: add color5 mode, mode like color but with higher saturation Signed-off-by: Paul B Mahol > http://git.videolan.org/gitweb.cgi/

[FFmpeg-cvslog] vc2enc: use 32 bits for quantized coefficients LUT

2016-02-28 Thread Rostislav Pehlivanov
ffmpeg | branch: master | Rostislav Pehlivanov | Sat Feb 27 18:27:18 2016 +| [fc1d3cbfdc66edd3eea996fb5280520e55b8a5b1] | committer: Rostislav Pehlivanov vc2enc: use 32 bits for quantized coefficients LUT 16 bits were definitely not enough and caused artifacts to appear on images at barely

[FFmpeg-cvslog] vc2enc: clip and warn when user bitrate set too low

2016-02-28 Thread Rostislav Pehlivanov
ffmpeg | branch: master | Rostislav Pehlivanov | Sat Feb 27 18:38:09 2016 +| [6e5c6d61bddab12b1d9002ac422cbd2506a30177] | committer: Rostislav Pehlivanov vc2enc: clip and warn when user bitrate set too low The encoder crashed on verly low bitrates since there wasn't enough space allocated.

[FFmpeg-cvslog] vc2enc: cache bits per quantizer, calculate wasted bits

2016-02-28 Thread Rostislav Pehlivanov
ffmpeg | branch: master | Rostislav Pehlivanov | Sat Feb 27 18:24:28 2016 +| [5cc53c2e530d128d80c94320a7263521e43257d2] | committer: Rostislav Pehlivanov vc2enc: cache bits per quantizer, calculate wasted bits Needed for following commits, also a speed increase. Signed-off-by: Rostislav P

[FFmpeg-cvslog] vc2enc: carry over quantization index across frames as a starting point

2016-02-28 Thread Rostislav Pehlivanov
ffmpeg | branch: master | Rostislav Pehlivanov | Sat Feb 27 18:34:03 2016 +| [0a2adf0f47ce6f7acc53e633e0544d4e05448346] | committer: Rostislav Pehlivanov vc2enc: carry over quantization index across frames as a starting point Previously a global average was used. Using the previous quantiz

[FFmpeg-cvslog] vc2enc: redistribute leftover bytes

2016-02-28 Thread Rostislav Pehlivanov
ffmpeg | branch: master | Rostislav Pehlivanov | Sat Feb 27 18:40:17 2016 +| [e7345abe052b497cb9e143d64872d5d18d00f147] | committer: Rostislav Pehlivanov vc2enc: redistribute leftover bytes This commit redistributes the leftover bytes amongst the top 150 slices in terms of size (in the hop

[FFmpeg-cvslog] vc2enc: allocate the DWT context with the current plane size

2016-02-28 Thread Rostislav Pehlivanov
ffmpeg | branch: master | Rostislav Pehlivanov | Sat Feb 27 18:39:32 2016 +| [bbcd5e99c303726e2bb8716d20580b0994430e79] | committer: Rostislav Pehlivanov vc2enc: allocate the DWT context with the current plane size Previously used the luma size only. Signed-off-by: Rostislav Pehlivanov

[FFmpeg-cvslog] 2enc: clip and warn when user bitrate set too low

2016-02-28 Thread Rostislav Pehlivanov
ffmpeg | branch: master | Rostislav Pehlivanov | Sun Feb 28 19:05:15 2016 +| [2f19583911eb4d67afaa72ec2bdbef583087f3f7] | committer: Rostislav Pehlivanov 2enc: clip and warn when user bitrate set too low The encoder crashed on verly low bitrates since there wasn't enough space allocated.

[FFmpeg-cvslog] lavf/mov: downgrade sidx errors to non-fatal warnings; fixes trac #5216

2016-02-28 Thread Rodger Combs
ffmpeg | branch: master | Rodger Combs | Mon Feb 22 18:34:01 2016 -0600| [22dbc1caaf13e4bb17c9e0164a5b1ccaf490e428] | committer: Rodger Combs lavf/mov: downgrade sidx errors to non-fatal warnings; fixes trac #5216 > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=22dbc1caaf13e4bb17c9

[FFmpeg-cvslog] lavf/mov: fix sidx with edit lists

2016-02-28 Thread Rodger Combs
ffmpeg | branch: master | Rodger Combs | Thu Feb 18 12:57:37 2016 -0600| [3617e69d50dd9dd07b5011dfb9477a9d1a630354] | committer: Rodger Combs lavf/mov: fix sidx with edit lists > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3617e69d50dd9dd07b5011dfb9477a9d1a630354 --- libavforma

[FFmpeg-cvslog] avformat/dashenc: Enable dash output to work when the output isn' t a local file

2016-02-28 Thread Raymond Hilseth
ffmpeg | branch: master | Raymond Hilseth | Wed Jan 6 09:57:41 2016 +0100| [c66a6369e4880434c3476866aa8996c3c309edae] | committer: Michael Niedermayer avformat/dashenc: Enable dash output to work when the output isn't a local file Use avpriv_io_move instead of ff_rename to support more than o

[FFmpeg-cvslog] avformat/file: enable file_move() without unistd.h

2016-02-28 Thread Raymond Hilseth
ffmpeg | branch: master | Raymond Hilseth | Wed Jan 6 09:57:41 2016 +0100| [20e4863ab14a6bcf00d469322075ff5e5c61e483] | committer: Michael Niedermayer avformat/file: enable file_move() without unistd.h it only requires the rename function from os_support.h. Signed-off-by: Michael Niedermayer

[FFmpeg-cvslog] avformat/mov: merge mov_read_custom functions

2016-02-28 Thread Marton Balint
ffmpeg | branch: master | Marton Balint | Sat Feb 20 01:34:42 2016 +0100| [4840effe4222e5cf3fe78840f9815a613a64c9f8] | committer: Marton Balint avformat/mov: merge mov_read_custom functions This also fixes reading gapless metadata when the entries do not start with the mean atom. Such samples

[FFmpeg-cvslog] avformat/mov: do not leak memory on ffio_read_size failure

2016-02-28 Thread Marton Balint
ffmpeg | branch: master | Marton Balint | Sat Feb 20 01:52:25 2016 +0100| [e22bd239c046014652a3487f542f2ab7b34f7a62] | committer: Marton Balint avformat/mov: do not leak memory on ffio_read_size failure Reviewed-by: Michael Niedermayer Signed-off-by: Marton Balint > http://git.videolan.org/

[FFmpeg-cvslog] ffmpeg_vdpau: Remove unused variable

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Sun Feb 28 23:02:55 2016 +0100| [1492507208786e03732a604e1a797d5e90bbeae3] | committer: Michael Niedermayer ffmpeg_vdpau: Remove unused variable Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1492

[FFmpeg-cvslog] avfilter/avf_showvolume: support unknown channel layouts too

2016-02-28 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Feb 28 22:52:44 2016 +0100| [65cc3915db66f39cb717636ac2355a398641694f] | committer: Paul B Mahol avfilter/avf_showvolume: support unknown channel layouts too Signed-off-by: Paul B Mahol > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=65

[FFmpeg-cvslog] avcodec/libzvbi-teletextdec: Remove unused variable

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Sun Feb 28 23:17:33 2016 +0100| [3e42c1128fe7784afb360b9c01f65fb558642274] | committer: Michael Niedermayer avcodec/libzvbi-teletextdec: Remove unused variable Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?

[FFmpeg-cvslog] tests/fate/lossless-video: Add test for ticket4119

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Sun Feb 28 23:56:06 2016 +0100| [a11258b73234031bcd0fec197f8af586adbddbd9] | committer: Michael Niedermayer tests/fate/lossless-video: Add test for ticket4119 The reference file is very small, and there was no previous test for the -vsync values

[FFmpeg-cvslog] fate/filter-video: add test for Ticket1578

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Mon Feb 29 00:52:26 2016 +0100| [993d622d007017a589438f58fd7dbb97fa69c922] | committer: Michael Niedermayer fate/filter-video: add test for Ticket1578 reference test sample is tiny Signed-off-by: Michael Niedermayer > http://git.videolan.org/g

[FFmpeg-cvslog] fate/vp8: add test for Ticket2451

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Mon Feb 29 02:12:42 2016 +0100| [4d338f9b64da7428a1495d55eeb9df0fc7a08e82] | committer: Michael Niedermayer fate/vp8: add test for Ticket2451 Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4d338f9

[FFmpeg-cvslog] avformat/utils: Be slightly more tolerant with fps vs. stream timebase

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Mon Feb 29 02:56:50 2016 +0100| [77524ee2dce92e5d82453d3ab2a616100d5df079] | committer: Michael Niedermayer avformat/utils: Be slightly more tolerant with fps vs. stream timebase Fixes regression with ticket2451 Signed-off-by: Michael Niedermaye

[FFmpeg-cvslog] fate/gif: add Test for Ticket3052

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Mon Feb 29 01:41:11 2016 +0100| [1b659101852b5384717f3b1053b5fabb216f8eee] | committer: Michael Niedermayer fate/gif: add Test for Ticket3052 Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1b65910

[FFmpeg-cvslog] fate/mpeg4: add mpeg4-es with codec timestamps (vlc ticket 7571)

2016-02-28 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Mon Feb 29 04:24:52 2016 +0100| [080be982e9e5d1ef52b5c425d00acb7cc30caffc] | committer: Michael Niedermayer fate/mpeg4: add mpeg4-es with codec timestamps (vlc ticket 7571) Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi