summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 10l: Add misssing CR/LF.Carl Eugen Hoyos2011-04-231-2/+2
|
* Support channel layout when demuxing aif files.Carl Eugen Hoyos2011-04-232-1/+7
|
* Support channel layout when demuxing caf files.Carl Eugen Hoyos2011-04-233-0/+67
|
* Extend unknown CAF chunk warning message: Print size.Carl Eugen Hoyos2011-04-231-2/+2
|
* Fix compilation with libcelt on Apple OS X.Carl Eugen Hoyos2011-04-231-0/+2
| | | | Fixes ticket #97.
* Fix compilation after version bump.Carl Eugen Hoyos2011-04-231-1/+1
|
* Merge remote branch 'qatar/master'Michael Niedermayer2011-04-239-21/+29
|\ | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: Use av_log_ask_for_sample() to request samples from users. Make av_log_ask_for_sample() accept a variable number of arguments. vqavideo: We no longer need to ask for version 1 samples. aacdec: indentation cosmetics Conflicts: libavcodec/utils.c Merged-by: Michael Niedermayer <[email protected]>
| * Use av_log_ask_for_sample() to request samples from users.Diego Biurrun2011-04-225-6/+11
| |
| * Make av_log_ask_for_sample() accept a variable number of arguments.Diego Biurrun2011-04-222-3/+9
| |
| * vqavideo: We no longer need to ask for version 1 samples.Diego Biurrun2011-04-221-2/+0
| |
| * aacdec: indentation cosmeticsYoung Han Lee2011-04-221-10/+9
| | | | | | | | Signed-off-by: Diego Biurrun <[email protected]>
* | Rm duplicated define for OPT_STR.Robert Leatherwood2011-04-221-9/+0
| |
* | FLV muxing is supported.Carl Eugen Hoyos2011-04-221-1/+1
| |
* | Cosmetics: Rename variable daemon as run_as_daemon.Carl Eugen Hoyos2011-04-221-5/+5
| | | | | | | | daemon() is defined in unistd.h for BSD and Cygwin.
* | Support Canopus SD50 with fourcc "CDV5".Carl Eugen Hoyos2011-04-221-0/+1
| | | | | | | | Fixes ticket #93.
* | rv10: set flags, Fixes Ticket90Michael Niedermayer2011-04-221-0/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | error: remove symbols which were deprecated before the big bumpStefano Sabatini2011-04-221-9/+0
| | | | | | | | | | | | | | The removal was not applied when merging the Libav patches, because there was still code referencing the symbols. Signed-off-by: Stefano Sabatini <[email protected]>
* | matroskaenc: replace AVERROR_NOTSUPP with AVERROR(EINVAL)Stefano Sabatini2011-04-221-1/+1
| | | | | | | | | | | | | | | | AVERROR_NOTSUPP has been dropped with the major bump. Since the signalled error denotes a configuration problem, AVERROR(EINVAL) looks an adequate replacement. Signed-off-by: Stefano Sabatini <[email protected]>
* | Merge remote branch 'qatar/master'Michael Niedermayer2011-04-2233-56/+134
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: APIChanges: document git revision for CODEC_CAP_SLICE_THREADS addition. Introduce slice threads flag. FATE: allow forcing thread-type when doing threaded fate runs. Use av_log_ask_for_sample() where appropriate. error: sort, pack, and align error code and string definitions The stabilization period after version bumps should be one month, not one week. applehttp: Expose the stream bitrate via metadata doc: Add some initial docs on the applehttp demuxer Provide a fallback version of the libm function trunc libavdevice: Define _XOPEN_SOURCE for usleep lavc: provide deprecated avcodec_thread_init until next major version lavc: provide the opt.h header until the next bump error: change AVERROR_EOF value error: remove AVERROR_NUMEXPECTED error: add error code AVERROR_OPTION_NOT_FOUND, and use it in opt.c Conflicts: libavcodec/h264.c libavutil/error.c libavutil/error.h Merged-by: Michael Niedermayer <[email protected]>
| * APIChanges: document git revision for CODEC_CAP_SLICE_THREADS addition.Ronald S. Bultje2011-04-211-1/+1
| |
| * Introduce slice threads flag.Ronald S. Bultje2011-04-2112-10/+23
| | | | | | | | Signed-off-by: Ronald S. Bultje <[email protected]>
| * FATE: allow forcing thread-type when doing threaded fate runs.Ronald S. Bultje2011-04-212-3/+4
| | | | | | | | Signed-off-by: Ronald S. Bultje <[email protected]>
| * Use av_log_ask_for_sample() where appropriate.Diego Biurrun2011-04-214-11/+12
| |
| * error: sort, pack, and align error code and string definitionsStefano Sabatini2011-04-212-24/+20
| | | | | | | | Signed-off-by: Diego Biurrun <[email protected]>
| * The stabilization period after version bumps should be one month, not one week.Diego Biurrun2011-04-211-2/+3
| |
| * applehttp: Expose the stream bitrate via metadataMartin Storsjö2011-04-214-1/+7
| | | | | | | | | | | | | | This helps callers to intelligently switch between bitrate variants. Signed-off-by: Martin Storsjö <[email protected]>
| * doc: Add some initial docs on the applehttp demuxerMartin Storsjö2011-04-211-0/+9
| | | | | | | | Signed-off-by: Martin Storsjö <[email protected]>
| * Provide a fallback version of the libm function truncMartin Storsjö2011-04-212-0/+9
| | | | | | | | | | | | This fixes compilation on DOS. Signed-off-by: Martin Storsjö <[email protected]>
| * libavdevice: Define _XOPEN_SOURCE for usleepMartin Storsjö2011-04-211-0/+1
| | | | | | | | | | | | This hopefully fixes build failures on Dragonfly BSD. Signed-off-by: Martin Storsjö <[email protected]>
| * lavc: provide deprecated avcodec_thread_init until next major versionAnton Khirnov2011-04-213-0/+19
| | | | | | | | It was deprecated only recently.
| * lavc: provide the opt.h header until the next bumpAnton Khirnov2011-04-213-1/+20
| | | | | | | | AVOptions were moved to libavutil only recently.
| * error: change AVERROR_EOF valueAnton Khirnov2011-04-211-1/+1
| | | | | | | | | | | | | | | | | | | | The current value is masking the POSIX error code EPIPE, which has a different semantics. This breaks API. Signed-off-by: Stefano Sabatini <[email protected]> Signed-off-by: Anton Khirnov <[email protected]>
| * error: remove AVERROR_NUMEXPECTEDStefano Sabatini2011-04-214-4/+2
| | | | | | | | | | | | | | | | | | | | | | AVERROR_NUMEXPECTED is used only in the image muxer and demuxer, and has a too much specific meaning, which is better explained through a log message. Thus it can be replaced by AVERROR(EINVAL). This breaks API. Signed-off-by: Stefano Sabatini <[email protected]> Signed-off-by: Anton Khirnov <[email protected]>
| * error: add error code AVERROR_OPTION_NOT_FOUND, and use it in opt.cStefano Sabatini2011-04-213-3/+5
| | | | | | | | | | | | | | | | The new error code is better than AVERROR(ENOENT), which has a completely different semantics ("No such file or directory"). Signed-off-by: Stefano Sabatini <[email protected]> Signed-off-by: Anton Khirnov <[email protected]>
* | AMV: Fix possibly exploitable crash.Michael Niedermayer2011-04-211-2/+1
| | | | | | | | | | | | Reported-at: Thu, 21 Apr 2011 14:38:25 +0000 Reported-by: Dominic Chell <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* | mjpeg: Detect overreads in mjpeg_decode_scan() and error out.Michael Niedermayer2011-04-211-0/+4
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | mp: remove unused variable outlink in end_frameStefano Sabatini2011-04-211-1/+0
| | | | | | | | | | | | | | | | Fix warning: vf_mp.c: In function ‘end_frame’: vf_mp.c:870: warning: unused variable ‘outlink’ Signed-off-by: Stefano Sabatini <[email protected]>
* | mp: remove use of deprecated old eval APIStefano Sabatini2011-04-212-3/+3
| | | | | | | | | | | | | | The old API was deprecated and will be possibly removed, fix warnings in libavfilter/libmpcodecs/vf_geq.c and libavfilter/libmpcodecs/vf_qp.c. Signed-off-by: Stefano Sabatini <[email protected]>
* | In libx264 wrapper, detect default settings and use medium profile to avoid ↵Baptiste Coudurier2011-04-211-0/+28
| | | | | | | | failure.
* | img2: return AVERROR(EINVAL) in case of invalid filename patternStefano Sabatini2011-04-211-1/+1
| | | | | | | | | | | | | | | | | | | | In write_packet(), return AVERROR(EINVAL) rather than AVERROR(EIO) if the provided output filename pattern is not valid. Indeed this has to be considered a configuration error rather than an I/O error. Allow a less confusing error report. Signed-off-by: Stefano Sabatini <[email protected]>
* | ffmpeg: call pre_process_video_frame() only if decoding is neededStefano Sabatini2011-04-211-7/+3
| | | | | | | | | | | | | | | | | | | | | | In output_packet(), move the pre_process_video_frame() call inside the if (ist->decoding_needed) { } block. This way pre_process_video_frame() is not called when stream-copy has been selected. Also simplify. Signed-off-by: Stefano Sabatini <[email protected]>
* | ocv: replace FF_INTERNAL_MEM_TYPE_MAX_VALUE with SIZE_MAXStefano Sabatini2011-04-211-1/+1
| | | | | | | | | | | | Fix compilatin after removal of FF_INTERNAL_MEM_TYPE_MAX_VALUE. Signed-off-by: Stefano Sabatini <[email protected]>
* | Merge remote branch 'qatar/master'Michael Niedermayer2011-04-2115-133/+29
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: Makefile: Include dependencies for test tools, too Remove a version check in av_log made unnecessary by the big bump. update last major version increase dates in APIchanges Reduce picture size for yadif. oggdec: use av_freep() instead of av_free() avio: Fix sanity checks in ffurl_read* libavformat: Free AVFormatContext->streams libavformat: Make protocols pass URLContext as log context where available asf: remove commented out code in asf_read_seek not pulled: libpostproc: Remove crufty code disabled by the big bump. Reflect 0.7_beta1 release in the Changelog not pulled: sws: remove disabled cruft. lavu: remove disabled ff_random_get_seed cruft. lavu: remove disabled sha1 cruft. Conflicts: Changelog libavutil/sha1.h Merged-by: Michael Niedermayer <[email protected]>
| * Makefile: Include dependencies for test tools, tooMartin Storsjö2011-04-201-0/+1
| | | | | | | | | | | | | | | | | | This makes seek_test to be rebuilt when its dependencies has changed. The changes to the dependencies didn't usually matter in practice, but the introduction of side data in AVPacket required a recompilation. Signed-off-by: Martin Storsjö <[email protected]>
| * Remove a version check in av_log made unnecessary by the big bump.Diego Biurrun2011-04-201-1/+1
| |
| * update last major version increase dates in APIchangesJustin Ruggles2011-04-201-7/+7
| |
| * Reduce picture size for yadif.Michael Niedermayer2011-04-201-2/+2
| | | | | | | | Signed-off-by: Anton Khirnov <[email protected]>
| * oggdec: use av_freep() instead of av_free()Michael Niedermayer2011-04-201-2/+2
| | | | | | | | Signed-off-by: Anton Khirnov <[email protected]>
| * avio: Fix sanity checks in ffurl_read*Martin Storsjö2011-04-201-2/+2
| | | | | | | | | | | | | | This fixes e.g. reading data over HTTP, where the underlying socket is set to read/write. Signed-off-by: Anton Khirnov <[email protected]>
| * libavformat: Free AVFormatContext->streamsMartin Storsjö2011-04-201-0/+1
| | | | | | | | | | | | | | | | After switching this from a statically allocated array to a dynamically allocated one in the major bump, this needs explicit freeing. Signed-off-by: Martin Storsjö <[email protected]>