- 26 Mar, 2013 1 commit
-
-
Martin Storsjö authored
Also move the declaration to internal.h, and add restrict qualifiers to the declaration (as in the implementation). Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 09 Mar, 2013 1 commit
-
-
Anton Khirnov authored
-
- 08 Mar, 2013 2 commits
-
-
Anton Khirnov authored
This is the most that can be represented with the current channel layout system. This limit should be raised/removed when a better system is implemented.
-
Anton Khirnov authored
-
- 06 Mar, 2013 1 commit
-
-
Diego Biurrun authored
-
- 01 Mar, 2013 1 commit
-
-
Michael Niedermayer authored
This is needed for av_dict_* Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 19 Feb, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 16 Feb, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 30 Dec, 2012 2 commits
-
-
Clément Bœsch authored
Both libavformat and libavcodec requires this function.
-
Clément Bœsch authored
This commit also makes sure the extradata and subtitle_header are NUL terminated, without taking into account the trailing '\0' in account in the size. At the same time, it should fix 'warning: dereferencing type-punned pointer will break strict-aliasing rules' warning for compilers who don't consider uint8_t** and char** compatibles.
-
- 05 Dec, 2012 1 commit
-
-
Reimar Döffinger authored
Will be used in future patches, together with the variable that allows checking whether the lock is held. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 04 Dec, 2012 2 commits
-
-
Anton Khirnov authored
Any performance gain from this is negligible and not worth the extra code.
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
- 13 Nov, 2012 1 commit
-
-
Luca Barbato authored
It is used only in one place and is unlikely it would be needed elsewhere.
-
- 01 Nov, 2012 1 commit
-
-
Justin Ruggles authored
-
- 19 Oct, 2012 1 commit
-
-
Ash Hughes authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 03 Aug, 2012 1 commit
-
-
Stefano Sabatini authored
The new name is more expressive, given that the frame is not necessarily a picture but may be an audio frame.
-
- 14 Jul, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 02 Jul, 2012 1 commit
-
-
Michael Niedermayer authored
This function exports the exact sps.num_reorder_frames value Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 22 Jun, 2012 2 commits
-
-
Michael Niedermayer authored
Compared to the decoder side, this code is able to change both the delay and the number of threads seamlessly during encoding. Also any idle thread can pick up tasks, the strict round robin in order limit is gone too. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 09 May, 2012 1 commit
-
-
Anton Khirnov authored
-
- 11 Apr, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 23 Mar, 2012 1 commit
-
-
Michael Niedermayer authored
This fixes race conditions that ultimately lead to memory corruption. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 22 Mar, 2012 2 commits
-
-
Michael Niedermayer authored
The new API allows (optionally and on by default) using a internal buffer to encode, avoiding the need to allocate large buffers or risking failure on too small buffers. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
This contains a AVCodecContext thus allowing us to prevent the error message duplication Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 20 Feb, 2012 1 commit
-
-
Justin Ruggles authored
-
- 01 Feb, 2012 1 commit
-
-
Justin Ruggles authored
This will simplify encoders which use this function to request the exact packet size rather than the maximum size.
-
- 16 Jan, 2012 1 commit
-
-
Justin Ruggles authored
This allows audio encoders to optionally take an AVFrame as input and write encoded output to an AVPacket. This also adds AVCodec.encode2() which will also be usable by video and subtitle encoders once support is implemented in the public functions.
-
- 14 Jan, 2012 1 commit
-
-
Reimar Döffinger authored
While we correctly "register" the side data when we split it, the application (in this case FFmpeg) might not update the AVPacket pool it uses to finally free the packet, thus causing a leak. This also makes the av_dup_packet unnecessary which could cause an even worse leak in this situation. Also change the code to not modify the user-provide AVPacket at all. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 12 Jan, 2012 1 commit
-
-
Alex Converse authored
-
- 18 Dec, 2011 1 commit
-
-
Mans Rullgard authored
This was intended as an optimisation for skipped blocks in MPEG2 P-frames and never used elsewhere. Removing this "optimisation" speeds up MPEG2 decoding by 1-2% (ARM Cortex-A9). Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 02 Dec, 2011 1 commit
-
-
Justin Ruggles authored
Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
-
- 19 Nov, 2011 1 commit
-
-
Justin Ruggles authored
A new field, AVCodecContext.internal is used to hold a new struct AVCodecInternal, which has private fields that are not codec-specific and are used by general libavcodec functions. Moved internal_buffer, internal_buffer_count, and is_copy.
-
- 05 Nov, 2011 1 commit
-
-
Martin Storsjö authored
This extends the lock manager in avcodec to manage two separate mutexes via the user-specified lock functions. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 20 Oct, 2011 1 commit
-
-
Anton Khirnov authored
It's used in lavf.
-
- 07 Oct, 2011 1 commit
-
-
Michael Niedermayer authored
Fixes seeking per fileposition in ffplay. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 10 Jul, 2011 1 commit
-
-
Anton Khirnov authored
-