[FFmpeg-cvslog] http: Send a Range header even when the offset is 0

2022-02-11 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Wed Feb 2 10:39:23 2022 -0500| [0dd1ff67c8a5b687f4b9beb51b425ef7fb8b72c1] | committer: Vittorio Giovara http: Send a Range header even when the offset is 0 Using Range allows for getting the full file size from the Content-Range header in the

[FFmpeg-cvslog] http: Improve handling of Content-Range with Transfer-Encoding:chunked

2022-02-11 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Wed Feb 2 10:39:07 2022 -0500| [c1228315c97acbe7a6220b4a5f282bd93edbeb42] | committer: Vittorio Giovara http: Improve handling of Content-Range with Transfer-Encoding:chunked When Transfer-Encoding:chunked is used, the client must ignore a Content

[FFmpeg-cvslog] movenc: add movie_timescale option instead of hardcoding 1000

2021-05-04 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Tue Apr 27 12:15:11 2021 -0400| [c75dfa043585db7f5e20f5cab2ca8be1771ca7b6] | committer: Vittorio Giovara movenc: add movie_timescale option instead of hardcoding 1000 There are cases where using 1000 as the MP4 timescale is not accurate enough, for

[FFmpeg-cvslog] Allow using only the mfra info for seeking using the fragment index

2020-10-11 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Fri Oct 2 08:51:19 2020 -0400| [2be3eb7f77a3b6433016f5691ed504f99e0377da] | committer: Derek Buitenhuis Allow using only the mfra info for seeking using the fragment index The mfra has enough information to enable seeking, and reading it is behind

[FFmpeg-cvslog] http: Do not try to make a new request when seeking past the end of the file

2019-02-26 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Wed Feb 20 09:52:43 2019 -0500| [69fcc093c1241b5ee7711c56c9cd558832a7e491] | committer: Vittorio Giovara http: Do not try to make a new request when seeking past the end of the file This avoids making invalid HTTP Range requests for a byte range past

[FFmpeg-cvslog] mov: Fix start_time for streams with empty edits in the middle

2019-02-26 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Fri Feb 22 17:21:00 2019 -0500| [97f47fd601d0e380109f501e4aabff71ffbad052] | committer: Vittorio Giovara mov: Fix start_time for streams with empty edits in the middle Empty edits can occur at any position within the edit list except for at the end

[FFmpeg-cvslog] Use QT format for audio sample descriptors depending on stsd version.

2018-09-09 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Wed Sep 5 17:54:57 2018 -0400| [d2047c14c0789ce3059b840472fb96fd8bd854a9] | committer: Derek Buitenhuis Use QT format for audio sample descriptors depending on stsd version. ISOBMFF does not allow AudioSampleEntryV1 in stsd version 0, so assume the

[FFmpeg-cvslog] avformat/concatdec: add fallback for calculating file duration

2017-08-31 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Mon Aug 28 22:45:20 2017 -0400| [1a0d9b503d2e9c4278d6e93d40873dff9d191a25] | committer: Derek Buitenhuis avformat/concatdec: add fallback for calculating file duration If a file does not have a known duration, this leads to the timestamps starting

[FFmpeg-cvslog] ac3dsp: x86: Replace inline asm for in-decoder downmixing with standalone asm

2017-03-22 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Wed Oct 28 15:38:22 2015 +0100| [b57e38f52cc3f31a27105c28887d57cd6812c3eb] | committer: Diego Biurrun ac3dsp: x86: Replace inline asm for in-decoder downmixing with standalone asm Adds a wrapper function for downmixing which detects channel count

[FFmpeg-cvslog] ac3dsp: Add some special-case handling for the C downmix function

2017-03-22 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Wed Oct 28 15:38:21 2015 +0100| [a9ba59591ed509fb7e6decfde8da4cbfd4ddf4b8] | committer: Diego Biurrun ac3dsp: Add some special-case handling for the C downmix function This is about 200% faster for in-decoder downmixing of 5.0 and 5.1 content

[FFmpeg-cvslog] ac3dsp: Reverse matrix in/out order in downmix()

2017-03-22 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Wed Oct 28 15:38:20 2015 +0100| [43717469f9daa402f6acb48997255827a56034e9] | committer: Diego Biurrun ac3dsp: Reverse matrix in/out order in downmix() Also use (float **) instead of (float (*)[2]). This matches the matrix layout in libavresample so

[FFmpeg-cvslog] img2dec: Support Progressive JPEG in jpeg_probe

2016-02-24 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Tue Feb 23 21:37:59 2016 -0500| [e1c15a9475f030d75c46e57d49e09f121c174c9a] | committer: Derek Buitenhuis img2dec: Support Progressive JPEG in jpeg_probe There can be multiple SOS markers, so do not return 0 in that case. Signed-off-by: Derek

[FFmpeg-cvslog] isom: add 'mp1v' fourcc

2015-01-06 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Tue Feb 4 15:40:32 2014 -0500| [8e03ca2fff40ce065ea5a516200e777c96cd785e] | committer: Vittorio Giovara isom: add 'mp1v' fourcc As referenced in the CoreMedia API docs. Signed-off-by: Vittorio Giovara > http://git.videolan.o

[FFmpeg-cvslog] lavf: fix memleaks in avformat_find_stream_info()

2014-09-29 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Mon Sep 16 15:51:46 2013 -0400| [19133e96d30e3f80dbae236ef081aedef419a6bf] | committer: Anton Khirnov lavf: fix memleaks in avformat_find_stream_info() When AVFMT_FLAG_NOBUFFER is set, the packets are not added to the AVFormatContext packet list, so

[FFmpeg-cvslog] Check mp3 header before calling avpriv_mpegaudio_decode_header().

2014-08-08 Thread Justin Ruggles
ffmpeg | branch: release/1.1 | Justin Ruggles | Sun Jun 22 13:19:36 2014 -0400| [d7dbc687e312a91ef2ccf797d57b95c61d0e8a2f] | committer: Luca Barbato Check mp3 header before calling avpriv_mpegaudio_decode_header(). As indicated in the function documentation, the header MUST be checked prior

[FFmpeg-cvslog] Check if an mp3 header is using a reserved sample rate.

2014-08-08 Thread Justin Ruggles
ffmpeg | branch: release/1.1 | Justin Ruggles | Sun Jun 22 13:11:32 2014 -0400| [7997acee0542f6e0bb9ea42ff783f80b70878a2f] | committer: Luca Barbato Check if an mp3 header is using a reserved sample rate. Fixes an invalid read past the end of avpriv_mpa_freq_tab. Fixes divide-by-zero due to

[FFmpeg-cvslog] lavr: Do not change the sample format for mono audio

2014-08-03 Thread Justin Ruggles
ffmpeg | branch: master | Justin Ruggles | Fri Jul 18 17:39:01 2014 -0400| [fbc0b8659967ea54a8472b5f795270d38bb085dd] | committer: Luca Barbato lavr: Do not change the sample format for mono audio This treats mono as planar internally within libavresample rather than changing the sample

[FFmpeg-cvslog] Check mp3 header before calling avpriv_mpegaudio_decode_header().

2014-07-14 Thread Justin Ruggles
ffmpeg | branch: release/2.2 | Justin Ruggles | Sun Jun 22 13:19:36 2014 -0400| [46c477c2a14b04a63ab11d31003b48fab6146a96] | committer: Luca Barbato Check mp3 header before calling avpriv_mpegaudio_decode_header(). As indicated in the function documentation, the header MUST be checked prior

[FFmpeg-cvslog] Check if an mp3 header is using a reserved sample rate.

2014-07-14 Thread Justin Ruggles
ffmpeg | branch: release/2.2 | Justin Ruggles | Sun Jun 22 13:11:32 2014 -0400| [fcbcc561e0fdc95a7dd48b92db53846726aec27e] | committer: Luca Barbato Check if an mp3 header is using a reserved sample rate. Fixes an invalid read past the end of avpriv_mpa_freq_tab. Fixes divide-by-zero due to