- 11 Dec, 2013 15 commits
-
-
Anton Khirnov authored
Also bump libavcodec micro and add an APIchanges entry saying that av_frame_* should now be used instead of the lavc AVFrame functions.
-
Anton Khirnov authored
This is a temporary workaround to allow deprecating avcodec_get_frame_defaults(). The proper solution will be using a properly allocated AVFrame in Picture.
-
Anton Khirnov authored
avcodec_decode_audio4() resets the frame itself.
-
Anton Khirnov authored
avcodec_decode_*() resets the frame itself.
-
Anton Khirnov authored
This is a temporary workaround to allow deprecating avcodec_get_frame_defaults(). The proper solution will be using a properly allocated AVFrame in Picture.
-
Anton Khirnov authored
ff_mpeg_unref_picture() already resets the frame.
-
Anton Khirnov authored
avcodec_decode_audio4() will reset the frame itself.
-
Anton Khirnov authored
avcodec_get_frame_defaults() will be deprecated.
-
Anton Khirnov authored
Strictly speaking it is not correct to call it on refcounted frames, in any case it is unnecessary, since filtered_frame is always unreferenced after poll_filter() returns.
-
Anton Khirnov authored
av_frame_free() should be used instead.
-
Anton Khirnov authored
-
Guillaume Martres authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Gildas Cocherel authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Michael Niedermayer authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Diego Biurrun authored
This enables a more POSIX-compliant printf implementation, that allows using length modifiers like 'z'.
-
- 10 Dec, 2013 2 commits
-
-
Reinhard Tartler authored
Fix writing over the end Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Addresses: CVE-2013-0845
-
Diego Biurrun authored
It was incorrectly moved in c869fcde.
-
- 09 Dec, 2013 23 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Vittorio Giovara authored
-
Diego Biurrun authored
Simplifies host/target libc detection splitting.
-
Sean McGovern authored
Add preprocessor flags for API availability as necessary. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Alexandra Khirnova authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
-
John Stebbins authored
The a52 spec suggests that "partial compression" should scale the drc value in this manner. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
Use only proper AVFrame API (no assigning of whole frames, since that hardcodes sizeof(AVFrame) into lavc). Make a copy of the side data, so the caller can use av_frame_unref/free on non-refcounted frames, eliminating the need for avcodec_get_frame_defaults()/avcodec_free_frame().
-
Anton Khirnov authored
-
Anton Khirnov authored
Flags can be considered metadata (at least those that are defined now).
-
Anton Khirnov authored
Not just on failure. This is the same thing that is done in the audio path and should prevent leaks in decoders that allocate a frame, but then end up not writing into it.
-
Anton Khirnov authored
av_frame_unref() works fine on unallocated frames.
-
Anton Khirnov authored
data[0] may be NULL for valid frames with hwaccel pixel formats.
-
Anton Khirnov authored
All decoders should now handle it properly.
-
Anton Khirnov authored
Remove the extended_data workaround, all decoders should now handle this properly.
-
Anton Khirnov authored
-
Anton Khirnov authored
-