aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * drawtext: add braces around initialisers for option defaultsStefano Sabatini2011-06-201-29/+29
| | | | | | | | | | | | | | | | | | | | | | | | Fix warnings of the type: vf_drawtext.c:NNN: warning: missing braces around initializer vf_drawtext.c:NNN: warning: (near initialization for ‘drawtext_options[X].default_val’) Signed-off-by: Anton Khirnov <anton@khirnov.net>
| | * 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
| | |
| * | mpegaudio_parser: be less picky on the start positionMichael Niedermayer2011-06-211-1/+2
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | ppc32: Fix movrelKim Nguyen2011-06-211-1/+5
| | | | | | | | | | | | Fixes ticket272
| * | Fix bink audio playback outside of FFmpeg.Ivan Kalvachev2011-06-202-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are 2 known Bink audio codecs. Additionally they have a different flavor if they are found inside Bink-b "BIKb" file. In order to guess the correct flavor, the demuxer sets the audio codec_tag to be the same as the file format tag. This causes problem because same tag is used for both audio codecs. The hack works in FFmpeg because audio codecs are identified by their codec_id, but other players rely on standard behavior. This fix removes the codec_tag hack and instead uses artificial extradata format to signal the codec flavor. This would also allow proper embedding of Bink audio in other containers. Signed-off-by: Ivan Kalvachev <ikalvachev@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | ffmpeg: print warning if encoding would duplicate massive amounts of framesMichael Niedermayer2011-06-201-0/+5
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | cmdutils: remove outcommented merge trashMichael Niedermayer2011-06-201-36/+0
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-06-207-8/+60
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: Drop git- prefix from version labels Use the contents of RELEASE as version fallback instead of 'UNKNOWN' path64/open64: filter out unsupported flags Add Release Notes sipr: Drop unused DSPContext sipr: include string.h for mem*() sipr: Use memmove() to copy overlapped buffers. h264: drop some ugly casts Conflicts: version.sh Merged-by: Michael Niedermayer <michaelni@gmx.at>
| | * 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
| | |
| * | dump_metadata: Fix 0xd in metadataMichael Niedermayer2011-06-201-2/+7
| | | | | | | | | | | | | | | | | | Fixed ticket245 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | Attempt to fix ticket266Michael Niedermayer2011-06-201-0/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | eval: Fix 32bit unsigned parsingMichael Niedermayer2011-06-201-1/+1
| | | | | | | | | | | | | | | | | | Fixes ticket264 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | avidec: consider non video to contain only keyframes when seeking.Michael Niedermayer2011-06-201-2/+2
| | | | | | | | | | | | | | | | | | Fixes Ticket271 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | ffplay: dont drop frames by default when there is no audio streamMichael Niedermayer2011-06-201-2/+2
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | lavfi: add layout negotiation fields and helper functions.Mina Nagy Zaki2011-06-1929-67/+129
| | |
| * | lavfi: use int64_t lists in AVFilteFormatsMina Nagy Zaki2011-06-193-15/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | The list type was changed to int64_t to be able to hold channel layouts. avfilter_make_format_list() still takes a int32_t array and converts it to int64_t. A new function, avfilter_make_format64_list, that takes int64_t arrays has been added.
| * | lavfi: fix realloc size computation in avfilter_add_format()Stefano Sabatini2011-06-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace sizeof((*avff)->formats) with sizeof(*(*avff)->formats) as the size of the array element is given by the pointed element rather than by its pointer. In particular fix computation with the pending patch when sizeof(int64_t) != sizeof(int64_t *).
| * | lavfi: fix Makefile HEADERSStefano Sabatini2011-06-191-1/+1
| | | | | | | | | | | | | | | Add a missing space between vsink_buffer.h and vsrc_buffer.h. 1000l.
| * | lavfi: add vsink_buffer, and use it in ff* toolsStefano Sabatini2011-06-1912-99/+199
| | | | | | | | | | | | Also add the public interface libavfilter/vsink_buffer.h.
| * | vsrc_color: use internal timebaseStefano Sabatini2011-06-191-1/+2
| | | | | | | | | | | | Avoid timescale conversion, simplify.
| * | opt: do not crash in av_set_options_string() if opts == NULLStefano Sabatini2011-06-193-1/+4
| | | | | | | | | | | | Add missing NULL check, and update documentation accordingly.
| * | lavfi: add negate filterStefano Sabatini2011-06-196-1/+34
| | | | | | | | | | | | This filter is a simple wrapper around the LUT filter.
| * | lavfi: add LUT (LookUp Table) generic filtersStefano Sabatini2011-06-196-1/+488
| | |
| * | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-06-195-3/+318
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: lavf: prevent crash in av_open_input_file() if ap == NULL. more Changelog additions lavf: add a forgotten NULL check in convert_format_parameters(). Fix build if yasm is not available. H.264: Add x86 assembly for 10-bit MC Chroma H.264 functions. Conflicts: Changelog Merged-by: Michael Niedermayer <michaelni@gmx.at>
| | * 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>
| * | swscale: fix mono input for width%8Michael Niedermayer2011-06-191-0/+10
| | | | | | | | | | | | | | | | | | Fixes ticket193 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | avidec: Ignore unknown stream typesami_stuff2011-06-191-2/+1
| | | | | | | | | | | | | | | | | | Improves ticket131 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | h264: print actual slice number in "Too many slices" warningMichael Niedermayer2011-06-191-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | jpegdec: include mjpb_skiptosod in debug outputMichael Niedermayer2011-06-191-2/+2
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | jpegdec: fix CJPG decoding.Michael Niedermayer2011-06-191-2/+5
| | | | | | | | | | | | | | | | | | Fixes ticket133 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | w32threads: with only 1 thread there cant be a active threading mode.Michael Niedermayer2011-06-191-2/+2
| | | | | | | | | | | | | | | | | | Fixes ticket284 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | ffmpeg: warn if samples need to be converted in a lossy way for lossless ↵Michael Niedermayer2011-06-191-0/+2
| | | | | | | | | | | | | | | | | | encoders. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | flacenc: mark as lossless codecMichael Niedermayer2011-06-191-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | libavcodec: add CODEC_CAP_LOSSLESSMichael Niedermayer2011-06-191-0/+4
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | dcaenc: small quantization simplification.Clément Bœsch2011-06-181-2/+1
| | |