- 18 Aug, 2017 1 commit
-
-
Carl Eugen Hoyos authored
Fixes Ubuntu bug 1710849
-
- 03 Dec, 2016 1 commit
-
-
Diego Biurrun authored
The libdc1394 API transition was finished close to a decade ago.
-
- 15 Sep, 2016 1 commit
-
-
Josh de Kock authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 25 Jul, 2016 1 commit
-
-
Josh de Kock authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 20 Jul, 2016 1 commit
-
-
Vittorio Giovara authored
Drop the packet embedded in the context.
-
- 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.
-
- 21 Oct, 2015 1 commit
-
-
Vittorio Giovara authored
avpicture_get_size() -> av_image_get_buffer_size() Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 20 Sep, 2015 1 commit
-
-
Michael Niedermayer authored
avdevice/libdc1394: add const to suppress "assignment discards const qualifier from pointer target type" warnings See: http://fate.ffmpeg.org/log.cgi?time=20150919100330&log=compile&slot=x86_64-archlinux-gcc-enablesharedFound-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 30 Aug, 2015 1 commit
-
-
Michael Niedermayer authored
These are not used outside nor are in installed headers Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 11 Apr, 2015 1 commit
-
-
Michael Kostylev authored
-
- 09 Apr, 2015 1 commit
-
-
Diego Biurrun authored
Also reshuffle headers into canonical order where appropriate.
-
- 28 Jan, 2015 1 commit
-
-
Clay McClure authored
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
- 03 Mar, 2014 1 commit
-
-
Lukasz Marek authored
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 04 Sep, 2012 1 commit
-
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 27 Jan, 2012 1 commit
-
-
Anton Khirnov authored
-
- 07 Dec, 2011 1 commit
-
-
Diego Biurrun authored
-
- 30 Nov, 2011 1 commit
-
-
Anton Khirnov authored
It's supposed to be called only from (de)muxers.
-
- 19 Oct, 2011 1 commit
-
-
Anton Khirnov authored
Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
-
- 12 Oct, 2011 1 commit
-
-
Anton Khirnov authored
-
- 15 Aug, 2011 1 commit
-
-
Anton Khirnov authored
AVFormatParameters are converted into corresponding private options in av_open_input_file/stream() compat wrappers, so accessing them from demuxers is redundant.
-
- 05 Jul, 2011 1 commit
-
-
Diego Biurrun authored
-
- 23 Jun, 2011 1 commit
-
-
Stefano Sabatini authored
Show the invalid string in the error message. While at it also prefer "Could not" over "Couldn't", plain forms are preferred over contractions (simplify readability, especially for non English-savvy people). Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 05 Jun, 2011 1 commit
-
-
Anton Khirnov authored
It's simpler and less error-prone. Fixes some memleaks along the way.
-
- 03 Jun, 2011 1 commit
-
-
Stefano Sabatini authored
This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 02 Jun, 2011 1 commit
-
-
Anton Khirnov authored
-
- 27 May, 2011 6 commits
-
-
Anton Khirnov authored
-
Martin Lambers authored
-
Martin Lambers authored
Versions >= 2.0 have been around for a very long time now.
-
Stefano Sabatini authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 26 May, 2011 1 commit
-
-
Anton Khirnov authored
Add a forgotten comma and move options/class definition outside of HAVE_LIBDC1394_1.
-
- 25 May, 2011 2 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 28 Jan, 2011 1 commit
-
-
Diego Elio Pettenò authored
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts. (cherry picked from commit c6610a21)
-
- 26 Jan, 2011 1 commit
-
-
Diego Elio Pettenò authored
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
-