- 15 Aug, 2014 12 commits
-
-
Michael Niedermayer authored
* commit '7c371754': atomic_win32: Drop unnecessary atomic.h #include Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '6baeadd1': w32pthreads: Mark functions in compatibility wrapper as av_unused Conflicts: compat/w32pthreads.h Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '7ccb847f': http: Reduce scope of a variable in parse_content_encoding() Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Diego Biurrun authored
The file does not require atomic.h. Also kills function redefinition warnings.
-
Diego Biurrun authored
This avoids annoying warnings about unused functions. The compatibility wrapper is designed to provide a complete (stub) API, so some functions being unused by some files is natural and no reason for a warning.
-
Diego Biurrun authored
Also fixes an unused variable warning with zlib disabled.
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Christophe Gisquet authored
The issue is that, when the main packet data buffer is changed, streamcopy uses a temporary new packet to store that buffer, frees the old packet, and replace it with the new packet. However, in doing so, it forgets about the side data, which gets freed, but is still needed and referenced. Then, when the packet gets freed again in the normal code path, it attempts to free its side data which has already been freed. Therefore, simply avoid the first free on side data by removing that side data from the packet. Fixes ticket #3773. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '552bc42d': h261dec: Fix order of initialization Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'b869eea7': h263dec: Fix order of initialization Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '998c9f15': idct: remove call to ff_idctdsp_init from ff_MPV_common_init Conflicts: libavcodec/dnxhdenc.c libavcodec/h263dec.c libavcodec/mpegvideo.c libavcodec/mpegvideo.h Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 14 Aug, 2014 28 commits
-
-
Michael Niedermayer authored
Fixes some unused variable warnings Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
James Darnley authored
This should help to clarify the API. Reviewed-by:
Christophe Gisquet <christophe.gisquet@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* cigaes/master: lavfi/avf_showspectrum: check RDFT context init. lavfi/avf_showspectrum: add full frame sliding mode. lavfi/avf_showspectrum: use automatic framing. lavfi/avf_showspectrum: do not push the frame at EOF. lavfi/avf_showspectrum: fix output pts computation. lavfi/avf_showspectrum: set output frame rate. Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Clément Bœsch authored
-
Clément Bœsch authored
-
John Stebbins authored
ff_MPV_common_init requires the frame dimensions which get parsed in h261_decode_picture_header.
-
John Stebbins authored
ff_MPV_common_init requires the frame dimensions which get parsed in *_decode_picture_header.
-
John Stebbins authored
One step in untangling the mpegvideo code and fixing some problems in the order that initialization is being done in h263dec and h261dec.
-
Michael Niedermayer authored
Fixes assertion failure Fixes: test42f.jpg Found-by:
Piotr Bandurski <ami_stuff@o2.pl> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Christophe Gisquet authored
The encoder produces files that are no longer compatible with previous versions of the decoder, and may actually cause decoding issues for other software, so indicate that change to allow decoder quirks. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes out of array read Fixes: yuv111_no_compr_crash.avi Found-by:
Piotr Bandurski <ami_stuff@o2.pl> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Nicolas George authored
Fix a segfault with large window size.
-
Nicolas George authored
-
Nicolas George authored
The framework can ensure that each input frame has exactly the correct number of samples, except the last one.
-
Christophe Gisquet authored
The packet buffer allocation considered as dct-coded, while it is actually run-coded and thus requires a larger buffer. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Nicolas George authored
It is always identical to the last pushed frame. The samples in the last incomplete window were ignored, this is unchanged. Possible enhancement: pad the last incomplete window with silence.
-
Nicolas George authored
-
Nicolas George authored
-
Christophe Gisquet authored
SMPTE 268M-2003 specifies that each line starts at a 4-bytes boundary. Therefore, modify correspondingly the input buffer strides and size. Partially fixes ticket #3692: DLAD_8b_3c_big.dpx still has inverted colors, which might be related to endianness. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '93f29948': mpeg4video: Fix doxygen comment syntax to document correct struct member Conflicts: libavcodec/mpeg4video.h Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '0528226a': a64: Return correct error code on invalid data stream Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'e070d0a5': frame: Remove some FF_API_AVFRAME_COLORSPACE leftovers Conflicts: libavutil/frame.c No change, as these leftovers have already been removed Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'ab059f0a': vaapi: set the scaling list correctly. See: 3fec40b6Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Nidhi Makhijani authored
Also fix some comment typos. Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
Nidhi Makhijani authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
-
Edgar Hucek authored
Fixes VAAPI decoding artefacts. CC:libav-stable@libav.org Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-