- 09 Oct, 2017 1 commit
-
-
bnnm authored
Signed-off-by:
bnnm <bananaman255@gmail.com> Now accepts any combination of 1/2ch streams, described in the RIFF chunks/extradata
-
- 10 May, 2017 1 commit
-
-
李赞 authored
Fixes integer overflow and out of array access Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 29 Mar, 2017 1 commit
-
-
Clément Bœsch authored
-
- 20 Jan, 2017 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 18 Jan, 2017 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 22 Dec, 2016 1 commit
-
-
Paul B Mahol authored
Fixes #5602 and #5603. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 16 Dec, 2016 1 commit
-
-
Mark Harris authored
Clang is not able to eliminate the reference to ff_spdif_probe() when there is a goto target in the same block and optimization is disabled. This fixes the following build failure on OS X: ./configure --disable-everything --disable-doc \ --enable-decoder=pcm_s16le --enable-demuxer=wav \ --enable-protocol=file --disable-optimizations --cc=clang make ... Undefined symbols for architecture x86_64: "_ff_spdif_probe", referenced from: _set_spdif in libavformat.a(wavdec.o) ld: symbol(s) not found for architecture x86_64 Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 30 Sep, 2016 1 commit
-
-
Anton Khirnov authored
It is supposed to be a flag. The only currently defined value is AVIO_SEEKABLE_NORMAL, but other ones may be added in the future. However all the current lavf code treats this field as a bool (mainly for historical reasons). Change all those cases to properly check for AVIO_SEEKABLE_NORMAL.
-
- 03 Apr, 2016 2 commits
-
-
Michael Niedermayer authored
Found-by: carl Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 02 Apr, 2016 1 commit
-
-
Derek Buitenhuis authored
WAV is not a NOHEADER format, and thus should not be changing stream codec IDs and probing in read_packet. Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 23 Feb, 2016 1 commit
-
-
Anton Khirnov authored
Currently, AVStream contains an embedded AVCodecContext instance, which is used by demuxers to export stream parameters to the caller and by muxers to receive stream parameters from the caller. It is also used internally as the codec context that is passed to parsers. In addition, it is also widely used by the callers as the decoding (when demuxer) or encoding (when muxing) context, though this has been officially discouraged since Libav 11. There are multiple important problems with this approach: - the fields in AVCodecContext are in general one of * stream parameters * codec options * codec state However, it's not clear which ones are which. It is consequently unclear which fields are a demuxer allowed to set or a muxer allowed to read. This leads to erratic behaviour depending on whether decoding or encoding is being performed or not (and whether it uses the AVStream embedded codec context). - various synchronization issues arising from the fact that the same context is used by several different APIs (muxers/demuxers, parsers, bitstream filters and encoders/decoders) simultaneously, with there being no clear rules for who can modify what and the different processes being typically delayed with respect to each other. - avformat_find_stream_info() making it necessary to support opening and closing a single codec context multiple times, thus complicating the semantics of freeing various allocated objects in the codec context. Those problems are resolved by replacing the AVStream embedded codec context with a newly added AVCodecParameters instance, which stores only the stream parameters exported by the demuxers or read by the muxers.
-
- 10 Nov, 2015 2 commits
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 11 Sep, 2015 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 13 Aug, 2015 2 commits
-
-
Michael Niedermayer authored
Fixes Ticket703 Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 31 Jul, 2015 1 commit
-
-
Ganesh Ajjanagadde authored
Can be used to fix Ticket4577 Signed-off-by:
Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 29 Jul, 2015 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Ganesh Ajjanagadde authored
May be used to fix Ticket4577 Signed-off-by:
Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 11 Jul, 2015 1 commit
-
-
Luca Barbato authored
-
- 23 May, 2015 2 commits
-
-
Rodger Combs authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes DTS detection of b2429e5ba9.dts Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 17 May, 2015 1 commit
-
-
Carl Eugen Hoyos authored
Fixes second part of ticket #4543.
-
- 19 Dec, 2014 3 commits
-
-
Clément Bœsch authored
av_get_codec_tag_string() uses more that 1 char for unprintable characters.
-
Thomas Volkert authored
use av_get_codec_tag_string() in wav_read_header() for printing the faulty start code from riff header Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Thomas Volkert authored
Make it more readable and display an error message in case an invalid header is detected (the current version just returns AVERROR_INVALIDDATA) Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 17 Dec, 2014 1 commit
-
-
Thomas Volkert authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 18 Aug, 2014 1 commit
-
-
James Almer authored
Fixes ticket #3862. As a side effect, this also fixes aac_latm in wav. Signed-off-by:
James Almer <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Aug, 2014 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 14 Jul, 2014 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket3708 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 19 Apr, 2014 1 commit
-
-
csheng authored
fix issue https://trac.ffmpeg.org/ticket/3550Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 23 Nov, 2013 1 commit
-
-
Diego Biurrun authored
-
- 25 Oct, 2013 1 commit
-
-
Michael Niedermayer authored
This strips the relative timestamp "flag" off. Fixes Ticket2849 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 Oct, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 09 Oct, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket3033 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 26 Sep, 2013 1 commit
-
-
Michael Niedermayer authored
Values outside would not be possible due to limitations of jpeg itself Fixes very long running loop Fixes Ticket2977 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 03 Sep, 2013 1 commit
-
-
Paul B Mahol authored
Noticed-by: James Almer Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 02 Sep, 2013 1 commit
-
-
Paul B Mahol authored
Regression since 14d50c19. Fixes #2932. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 14 Aug, 2013 1 commit
-
-
Alexander Strasser authored
A file with a prepended ID3 tag of an uneven length was found in the wild. Check if the wav data starts at an uneven offset and use that information to correct the seeking calculation in wav_seek_tag, which used to only seek to even byte positions. Regression since ac87eaf8Signed-off-by:
Alexander Strasser <eclipse7@gmx.net>
-