summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* drawtext: reindent after the previous commitStefano Sabatini2011-06-201-20/+20
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* drawtext: fix strftime() text expansionStefano Sabatini2011-06-201-18/+27
| | | | | | | The feature was dropped after the filter was partially rewritten and recommitted. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Bump major version for b8e893399ff8755721dc117695ec5ff183c1e07bReinhard Tartler2011-06-201-4/+4
| | | | | | | | | | | On architectures such as x86 (both 32 bit and 64bit), the stack element size is fixed, which maintains alignment. Here, this change does not break anything. However, we also support also other architectures where this property is not maintained and therefore, applications will crash horribly. This change effectively forces all applications to be recompiled against libswscale.
* h264-mt: fix deadlock in packets with multiple slices (e.g. MP4).Ronald S. Bultje2011-06-201-0/+2
|
* mov: Fix empty edit detection.Yusuke Nakamura2011-06-191-1/+1
|
* Drop git- prefix from version labelsMans Rullgard2011-06-191-1/+0
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Use the contents of RELEASE as version fallback instead of 'UNKNOWN'Reinhard Tartler2011-06-192-1/+2
| | | | | | This makes binaries produced by source tarballs identify themselves with the version number of the corresponding release series, unless overriden by a 'VERSION' file.
* path64/open64: filter out unsupported flagsMans Rullgard2011-06-191-0/+2
| | | | | | | These flags are accepted without error but produce an annoying warning. Filtering them out makes the build less noisy. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add Release NotesReinhard Tartler2011-06-191-0/+52
|
* sipr: Drop unused DSPContextAlex Converse2011-06-182-3/+0
|
* sipr: include string.h for mem*()Alex Converse2011-06-181-0/+1
|
* sipr: Use memmove() to copy overlapped buffers.Alex Converse2011-06-181-1/+1
|
* h264: drop some ugly castsAlex Converse2011-06-181-2/+2
|
* lavf: prevent crash in av_open_input_file() if ap == NULL.Ronald S. Bultje2011-06-181-1/+1
| | | | Needed for proper behaviour in our old API compatibility code.
* more Changelog additionsReinhard Tartler2011-06-181-2/+6
|
* lavf: add a forgotten NULL check in convert_format_parameters().Anton Khirnov2011-06-181-0/+3
|
* Fix build if yasm is not available.Ronald S. Bultje2011-06-181-1/+3
|
* H.264: Add x86 assembly for 10-bit MC Chroma H.264 functions.Daniel Kang2011-06-183-0/+306
| | | | | | Mainly ported from 8-bit H.264 MC Chroma. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavc: add opt_find to AVCodecContext class.Anton Khirnov2011-06-171-1/+20
| | | | | Fixes encoder private options, which are broken now in ffmpeg, because opt_default2() can't find them, thus making opt_default() to fail.
* h264: Complexify frame num gap shortening codeAlexander Strange2011-06-161-3/+14
| | | | | | | | By observation it did not seem to handle prev_frame_num > frame_num. This does not affect any files I have. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* intreadwrite.h: fix AV_RL32/AV_RB32 signedness.Uoti Urpala2011-06-161-10/+10
| | | | | | | | | The output type of the AV_RL32/AV_RB32 macros was signed int. The resulting overflow broke at least some ASF streams with large timestamps. Fix by adding a cast to uint32_t. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Fix decoding of mpegts streams with h264 video that does *NOT* have b framesMike Scheutzow2011-06-161-1/+2
| | | | | | | | | | | | | | | One of the causes of this bug is that the h264 parser defaults low_delay to 1, but the h264 codec defaults low_delay to 0. Really Ugly. After many hours of looking at this, I'm still not sure how has_b_frames is *intended* to behave, but to me the implementation appears way more complicated than it ought to be. My patch relies on the encoder to set an optional field in the SPS. This works for libx264 streams, but I'm not sure that all h264 encoders will set it. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Add minor bumps and APIChanges entries for lavf private options.Anton Khirnov2011-06-163-3/+13
|
* ffmpeg: deprecate -vc and -tvstdAnton Khirnov2011-06-161-10/+6
| | | | They've been replaced by demuxer private options.
* ffmpeg: use new avformat_open_* API.Anton Khirnov2011-06-162-31/+48
|
* ffserver: use new avformat_open_* API.Anton Khirnov2011-06-161-20/+17
|
* ffprobe: use new avformat_open_* API.Anton Khirnov2011-06-161-5/+8
|
* ffplay: use new avformat_open_* API.Anton Khirnov2011-06-161-15/+9
|
* cmdutils: add opt_default2().Anton Khirnov2011-06-162-4/+47
| | | | | | It stores options in a dictionary to be passed to new open calls. It will replace opt_default once all the pieces are in place.
* dict: add AV_DICT_APPEND flag.Anton Khirnov2011-06-162-1/+14
|
* lavf: add avformat_write_header() as a replacement for av_write_header().Anton Khirnov2011-06-163-15/+80
| | | | It supports more convenient setting of AVOptions.
* Deprecate av_open_input_* and remove their uses.Anton Khirnov2011-06-168-122/+89
| | | | Deprecate the last remaining member of AVFormatParameters.
* lavf: add avformat_open_input() as a replacement for av_open_input_*Anton Khirnov2011-06-163-1/+153
| | | | Add support for demuxer private options.
* AVOptions: add av_opt_find() as a replacement for av_find_opt.Anton Khirnov2011-06-166-9/+70
|
* AVOptions: add av_opt_set_dict() mapping a dictionary struct to a context.Anton Khirnov2011-06-162-0/+39
| | | | This way the caller can pass all the options in one nice package.
* ffmpeg: don't abuse a global for passing frame size from input to outputAnton Khirnov2011-06-161-6/+10
| | | | It's broken with multiple files or video streams.
* ffmpeg: don't abuse a global for passing pixel format from input to outputAnton Khirnov2011-06-161-3/+5
| | | | It's broken with multiple files or video streams.
* ffmpeg: initialise encoders earlier.Anton Khirnov2011-06-161-6/+6
| | | | Fixes choosing supported samplerate and framerate.
* ffmpeg: merge output_codecs array into AVOutputStream members.Anton Khirnov2011-06-161-11/+7
| | | | There's no point in keeping them separate.
* rtpenc_latm: Consistently use "Libav" in license boilerplate.Diego Biurrun2011-06-161-2/+2
|
* rtsp: Don't pass string pointer as format string to ff_url_joinMartin Storsjö2011-06-161-2/+2
| | | | | | | | | In this case, the string that was passed couldn't contain user-defined data and thus there was no risk for injection bugs, but it's safer this way, if we later change the content of the options string. Signed-off-by: Martin Storsjö <martin@martin.st>
* mmsh: fixed printf injection bug in mmsh requestKirill Zorin2011-06-161-1/+1
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* codec-regression: remove pointless -r options for dnxhdAnton Khirnov2011-06-161-3/+3
|
* ac3enc: use correct alignment and length in channel coupling dsp functions.Justin Ruggles2011-06-151-11/+13
| | | | This fixes a segfault when using the C version of ac3dsp.float_to_fixed24().
* ffmpeg: don't abuse a global for passing framerate from input to outputAnton Khirnov2011-06-151-9/+13
| | | | It's broken with multiple files or video streams.
* ffmpeg: don't abuse a global for passing channels from input to outputAnton Khirnov2011-06-151-6/+9
| | | | It's broken with multiple files or audio streams.
* ffmpeg: don't abuse a global for passing samplerate from input to outputAnton Khirnov2011-06-154-19/+21
| | | | | | | It's broken with multiple files or audio streams. This removes the default samplerate of 44100 for raw input, hence all the FATE changes.
* ARM: update ff_h264_idct8_add4_neon for 4:4:4 changesMans Rullgard2011-06-152-19/+25
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* swscale: use SwsContext for av_log when availableJanne Grunau2011-06-151-4/+4
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* swscale: Remove HAVE_MMX from files that are only compiled with MMX enabled.Diego Biurrun2011-06-152-2/+2
|
OpenPOWER on IntegriCloud