- 21 Mar, 2019 1 commit
-
-
Carl Eugen Hoyos authored
Reviewed-by: Lauri Kasanen Reviewed-by: Tomas Härdin
-
- 05 Oct, 2017 1 commit
-
-
Lukas Stabe authored
These changes store id3 chapter data in ID3v2ExtraMeta and introduce ff_id3v2_parse_chapters to parse them into the format context if needed. Encoders using ff_id3v2_read, which previously parsed chapters into the format context automatically, were adjusted to call ff_id3v2_parse_chapters. Signed-off-by:
wm4 <nfxjfg@googlemail.com>
-
- 11 Feb, 2017 3 commits
-
-
Carl Eugen Hoyos authored
-
Carl Eugen Hoyos authored
-
Paul B Mahol authored
Only lossy part is decoded for now. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 06 Jan, 2017 1 commit
-
-
Andreas Cadhalpun authored
Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
- 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.
-
- 30 Oct, 2015 1 commit
-
-
Vittorio Giovara authored
-
- 05 Oct, 2015 1 commit
-
-
Michael Niedermayer authored
Fixes CID1324299 Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 13 Sep, 2015 1 commit
-
-
Vittorio Giovara authored
-
- 27 Jul, 2015 1 commit
-
-
Vittorio Giovara authored
Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 20 Feb, 2015 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Feb, 2015 3 commits
-
-
Michael Niedermayer authored
Fixes pts/dts Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes division by zero Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Luca Barbato authored
Reported-By: jb@videolan.org Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- 01 Feb, 2015 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 19 Apr, 2014 1 commit
-
-
Peter Ross authored
Several chunked formats (AIFF, IFF,DSF) store ID3 metadata within an 'ID3 ' chunk tag. If such chunks are stored sequentially, it is possible for the ID3v2 parser to confuse the chunk tag for the ID3 magic number. e.g. [1st chunk tag ('ID3 ') | chunk size] [ID3 magic number | metadata ...] [2nd chunk tag ('ID3 ') | chunk size] [ID3 magic number | metadata ...] Fixes ticket #3530. Signed-off-by:
Peter Ross <pross@xvid.org> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 05 Apr, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 11 Mar, 2014 1 commit
-
-
Diego Biurrun authored
-
- 09 Jan, 2014 1 commit
-
-
Maxim Polijakowski authored
Cleanup by Diego Biurrun. Signed-off-by:
Kostya Shishkov <kostya.shishkov@gmail.com>
-
- 29 Dec, 2013 1 commit
-
-
Maxim Poliakovski authored
Also add a list of supported decoders. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 04 Nov, 2013 3 commits
-
-
David Goldwich authored
Imporoves detection of some files in the wild: - ID3v2 a.k.a. "ea3" header is optional. - Version and flags in ID3v2 header are unspecified. Signed-off-by:
David Goldwich <david.goldwich@gmail.com> Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
David Goldwich <david.goldwich@gmail.com> CC:libav-stable@libav.org Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
David Goldwich <david.goldwich@gmail.com> CC:libav-stable@libav.org Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 13 Oct, 2013 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 29 Sep, 2013 2 commits
-
-
Maxim Poliakovski authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Maxim Poliakovski authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- 23 Sep, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 16 Sep, 2013 1 commit
-
-
Martin Storsjö authored
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 02 Sep, 2013 1 commit
-
-
Diego Biurrun authored
-
- 28 Jul, 2013 3 commits
-
-
Luca Barbato authored
Incomplete crypted files would lead to a read after buffer boundary otherwise. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
Luca Barbato authored
Prevent read after buffer boundary on corrupted tag. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
Luca Barbato authored
Properly propagate seek errors from avio and the generic pcm seek.
-
- 07 May, 2013 2 commits
-
-
Luca Barbato authored
Prevent spurios EIO on EOF. CC:libav-stable@libav.org
-
Luca Barbato authored
-
- 04 May, 2013 1 commit
-
-
Diego Biurrun authored
-
- 27 Apr, 2013 1 commit
-
-
Luca Barbato authored
-
- 31 Mar, 2013 1 commit
-
-
Luca Barbato authored
The sample rate index is 3 bits even if currently index 5, 6 and 7 are not supported. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
- 13 Mar, 2013 1 commit
-
-
Diego Biurrun authored
-
- 28 Nov, 2012 1 commit
-
-
Justin Ruggles authored
-