- 18 Oct, 2014 1 commit
-
-
Anton Khirnov authored
-
- 15 Oct, 2014 1 commit
-
-
Anton Khirnov authored
When decoding, this field holds the inverse of the framerate that can be written in the headers for some codecs. Using a field called 'time_base' for this is very misleading, as there are no timestamps associated with it. Furthermore, this field is used for a very different purpose during encoding. Add a new field, called 'framerate', to replace the use of time_base for decoding.
-
- 15 Aug, 2014 1 commit
-
-
Gabriel Dume authored
Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 18 May, 2014 1 commit
-
-
Anton Khirnov authored
Right now, the caller has to manually manage some allocated AVCodecContext fields, like extradata or subtitle_header. This is fragile and prone to leaks, especially if we want to add more such fields in the future. The only reason for this behaviour is so that the AVStream codec context can be reused for decoding. Such reuse is discouraged anyway, so this commit is the first step to deprecating it.
-
- 15 May, 2014 2 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
If a non-NULL codec was passed to avcodec_alloc_context3(), private data will be already allocated in dest.
-
- 04 Nov, 2013 1 commit
-
-
Anton Khirnov authored
It's a private field, it should not be visible to callers. Deprecate AVCodecContext.thread_opaque
-
- 02 Aug, 2013 1 commit
-
-
Diego Biurrun authored
-
- 08 Mar, 2013 1 commit
-
-
Anton Khirnov authored
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 18 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 15 Aug, 2012 1 commit
-
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 20 Mar, 2012 1 commit
-
-
Anton Khirnov authored
This will allow us to automatically generate manpages for them.
-
- 04 Mar, 2012 1 commit
-
-
Anton Khirnov authored
In most places where it's used, it's as a pointless write-only field. Only rv10 decoder actually reads from it, but it stores some internal version info in it. There is no reason for it to be in a public field.
-
- 29 Feb, 2012 9 commits
-
-
Justin Ruggles authored
- enable the options for audio encoding - properly check for user-set maxrate - use correct calling order in vorbis_encode_setup_managed()
-
Anton Khirnov authored
Deprecate corresponding AVCodecContext field.
-
Anton Khirnov authored
It's unused.
-
Anton Khirnov authored
It's currently only used as temporary storage by the mov demuxer. Make it use a local variable instead.
-
Anton Khirnov authored
Deprecate corresponding AVCodecContext fields.
-
Anton Khirnov authored
Deprecate CODEC_FLAG_CBP_RD.
-
Anton Khirnov authored
Deprecate CODEC_FLAG_QP_RD.
-
Anton Khirnov authored
Deprecate CODEC_FLAG2_STRICT_GOP.
-
Anton Khirnov authored
Deprecate CODEC_FLAG2_SKIP_RD in favor of the corresponding mpv_flags flag.
-
- 13 Feb, 2012 1 commit
-
-
Diego Biurrun authored
Also give a more suitable name to the MMI-optimized IDCT; it is not PS2-specific, as the name currently suggests.
-
- 08 Feb, 2012 1 commit
-
-
Diego Biurrun authored
It is obscure, most likely unused and not bit-exact compared to libavcodec due to a different IDCT transform algorithm.
-
- 31 Jan, 2012 2 commits
-
-
Anton Khirnov authored
This way, if the AVCodecContext is allocated for a specific codec, the caller doesn't need to store this codec separately and then pass it again to avcodec_open2(). It also allows to set codec private options using av_opt_set_* before opening the codec.
-
Anton Khirnov authored
It allows to check whether an AVCodecContext is open in a documented way. Right now the undocumented way this check is done in lavf/lavc is by checking whether AVCodecContext.codec is NULL. However it's desirable to be able to set AVCodecContext.codec before avcodec_open2().
-
- 27 Jan, 2012 11 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 21 Jan, 2012 2 commits
-
-
Janne Grunau authored
Using threaded decoding by default breaks backward compatibility if AVHWAccel is used or if an appliction sets threadunsafe callbacks. Avconv and avplay still use -threads auto if not specified.
-
Dustin Brody authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-