Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Provide a fallback version of the libm function trunc | Martin Storsjö | 2011-04-21 | 2 | -0/+9 |
| | | | | | | This fixes compilation on DOS. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | libavdevice: Define _XOPEN_SOURCE for usleep | Martin Storsjö | 2011-04-21 | 1 | -0/+1 |
| | | | | | | This hopefully fixes build failures on Dragonfly BSD. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | lavc: provide deprecated avcodec_thread_init until next major version | Anton Khirnov | 2011-04-21 | 3 | -0/+19 |
| | | | | It was deprecated only recently. | ||||
* | lavc: provide the opt.h header until the next bump | Anton Khirnov | 2011-04-21 | 3 | -1/+20 |
| | | | | AVOptions were moved to libavutil only recently. | ||||
* | error: change AVERROR_EOF value | Anton Khirnov | 2011-04-21 | 1 | -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 <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | error: remove AVERROR_NUMEXPECTED | Stefano Sabatini | 2011-04-21 | 4 | -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 <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | error: add error code AVERROR_OPTION_NOT_FOUND, and use it in opt.c | Stefano Sabatini | 2011-04-21 | 3 | -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 <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | Makefile: Include dependencies for test tools, too | Martin Storsjö | 2011-04-20 | 1 | -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ö <martin@martin.st> | ||||
* | Remove a version check in av_log made unnecessary by the big bump. | Diego Biurrun | 2011-04-20 | 1 | -1/+1 |
| | |||||
* | update last major version increase dates in APIchanges | Justin Ruggles | 2011-04-20 | 1 | -7/+7 |
| | |||||
* | Reduce picture size for yadif. | Michael Niedermayer | 2011-04-20 | 1 | -2/+2 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | oggdec: use av_freep() instead of av_free() | Michael Niedermayer | 2011-04-20 | 1 | -2/+2 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | avio: Fix sanity checks in ffurl_read* | Martin Storsjö | 2011-04-20 | 1 | -2/+2 |
| | | | | | | | This fixes e.g. reading data over HTTP, where the underlying socket is set to read/write. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | libavformat: Free AVFormatContext->streams | Martin Storsjö | 2011-04-20 | 1 | -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ö <martin@martin.st> | ||||
* | libavformat: Make protocols pass URLContext as log context where available | Martin Storsjö | 2011-04-20 | 5 | -14/+14 |
| | | | | | | | Since the libavformat major bump, URLContext contains an AVClass, making it a usable log context. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | asf: remove commented out code in asf_read_seek | Vladimir Pantelic | 2011-04-20 | 1 | -21/+0 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | libpostproc: Remove crufty code disabled by the big bump. | Diego Biurrun | 2011-04-20 | 2 | -10/+0 |
| | |||||
* | Reflect 0.7_beta1 release in the Changelog | Reinhard Tartler | 2011-04-20 | 1 | -0/+5 |
| | |||||
* | sws: remove disabled cruft. | Anton Khirnov | 2011-04-19 | 5 | -69/+0 |
| | |||||
* | lavu: remove disabled ff_random_get_seed cruft. | Anton Khirnov | 2011-04-19 | 1 | -8/+0 |
| | |||||
* | lavu: remove disabled sha1 cruft. | Anton Khirnov | 2011-04-19 | 3 | -82/+0 |
| | |||||
* | In avcodec_open(), set return code to an error value only when an error occurs | Justin Ruggles | 2011-04-19 | 1 | -3/+8 |
| | | | | | | | | | instead of unconditionally at the start of the function. This fixes a bug where a successful call to ff_thread_init() masks errors that occur after that point in the function. It also makes future bugs like this less likely since the error code is now set near to the point in the code where the error is found. | ||||
* | lavc: remove reference to opt.h from Makefile. | Anton Khirnov | 2011-04-19 | 1 | -1/+1 |
| | | | | Fixes make install after 3453a231a6cebe5989c213be0f9fd6c71ec5ea23. | ||||
* | prefer avio_check() over url_exist() | Stefano Sabatini | 2011-04-19 | 3 | -6/+6 |
| | | | | | | | | | | | | | | The problem with url_exist() is that it tries to open a resource in RDONLY mode. If the file is a FIFO and there is already a reading client, the open() call will hang. By using avio_check() with access mode of 0, the second reading process will check if the file exists without attempting to open it, thus avoiding the lock. Fix issue #1663. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | avio: remove AVIO_* access symbols in favor of new AVIO_FLAG_* symbols | Stefano Sabatini | 2011-04-19 | 25 | -66/+65 |
| | | | | | | | | Make AVIO_FLAG_ access constants work as flags, and in particular fix the behavior of functions (such as avio_check()) which expect them to be flags rather than modes. This breaks API. | ||||
* | lavu: remove misc disabled cruft | Anton Khirnov | 2011-04-19 | 5 | -33/+8 |
| | |||||
* | lavu: remove FF_API_OLD_IMAGE_NAMES cruft | Anton Khirnov | 2011-04-19 | 3 | -56/+0 |
| | |||||
* | lavu: remove FF_API_OLD_EVAL_NAMES cruft | Anton Khirnov | 2011-04-19 | 3 | -68/+0 |
| | |||||
* | lavc: remove misc disabled cruft. | Anton Khirnov | 2011-04-19 | 9 | -345/+4 |
| | |||||
* | lavc: remove the FF_API_INOFFICIAL cruft. | Anton Khirnov | 2011-04-19 | 3 | -9/+0 |
| | |||||
* | lavc: remove the FF_API_SET_STRING_OLD cruft. | Anton Khirnov | 2011-04-19 | 9 | -74/+6 |
| | |||||
* | lavc: remove the FF_API_USE_LPC cruft. | Anton Khirnov | 2011-04-19 | 4 | -27/+0 |
| | |||||
* | lavc: remove the FF_API_SUBTITLE_OLD cruft. | Anton Khirnov | 2011-04-19 | 3 | -26/+0 |
| | |||||
* | lavc: remove the FF_API_VIDEO_OLD cruft. | Anton Khirnov | 2011-04-19 | 3 | -38/+0 |
| | |||||
* | lavc: remove the FF_API_AUDIO_OLD cruft. | Anton Khirnov | 2011-04-19 | 4 | -55/+0 |
| | |||||
* | lavc: remove the FF_API_OPT_SHOW cruft. | Anton Khirnov | 2011-04-19 | 3 | -16/+0 |
| | |||||
* | lavc: remove the FF_API_MM_FLAGS cruft. | Anton Khirnov | 2011-04-19 | 2 | -22/+0 |
| | |||||
* | lavf: remove misc disabled cruft. | Anton Khirnov | 2011-04-19 | 1 | -13/+0 |
| | |||||
* | lavf: remove FF_API_INDEX_BUILT cruft | Anton Khirnov | 2011-04-19 | 2 | -6/+0 |
| | |||||
* | lavf: remove FF_API_URL_CLASS cruft. | Anton Khirnov | 2011-04-19 | 4 | -42/+26 |
| | |||||
* | lavf: remove FF_API_SYMVER cruft | Anton Khirnov | 2011-04-19 | 2 | -35/+0 |
| | |||||
* | lavf: remove FF_API_FIRST_FORMAT cruft | Anton Khirnov | 2011-04-19 | 3 | -16/+2 |
| | |||||
* | lavf: remove FF_API_PARAMETERS_CODEC_ID cruft | Anton Khirnov | 2011-04-19 | 2 | -7/+0 |
| | |||||
* | lavf: remove FF_API_LAVF_UNUSED cruft | Anton Khirnov | 2011-04-19 | 2 | -12/+0 |
| | |||||
* | lavf: remove FF_API_PARSE_FRAME_PARAM cruft | Anton Khirnov | 2011-04-19 | 3 | -37/+0 |
| | |||||
* | lavf: remove FF_API_ALLOC_FORMAT_CONTEXT cruft | Anton Khirnov | 2011-04-19 | 3 | -17/+0 |
| | |||||
* | lavf: remove FF_API_URL_SPLIT cruft | Anton Khirnov | 2011-04-19 | 3 | -33/+0 |
| | |||||
* | lavf: remove FF_API_UDP_GET_FILE cruft | Anton Khirnov | 2011-04-19 | 3 | -11/+1 |
| | |||||
* | lavf: remove FF_API_GUESS_FORMAT cruft | Anton Khirnov | 2011-04-19 | 3 | -44/+0 |
| | |||||
* | lavf: remove FF_API_REGISTER_PROTOCOL cruft | Anton Khirnov | 2011-04-19 | 3 | -42/+0 |
| |