aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* avconv: basic playlists input support.playlistsAnton Khirnov2011-10-11
|
* matroskadec: export ordered chapters files as a playlist.Anton Khirnov2011-10-11
|
* file protocol: support for opening dirs.Anton Khirnov2011-10-11
|
* lavf: add libxml2-based ASX playlist demuxer.Anton Khirnov2011-10-11
|
* lavf: add M3U playlist demuxer.Anton Khirnov2011-10-11
|
* lavf: add a basic API for playlist input.Anton Khirnov2011-10-11
|
* AVOptions: refactor set_number/write_numberAnton Khirnov2011-10-10
| | | | | | write_number() does the actual writing of the supplied number to destination. Move finding the option and choosing destination address out of it.
* AVOptions: cosmetics, rename static av_set_number2() to write_number().Anton Khirnov2011-10-10
|
* AVOptions: cosmetics, move and rename static av_set_number().Anton Khirnov2011-10-10
|
* AVOptions: split av_set_string3 into opt type-specific functionsAnton Khirnov2011-10-10
| | | | | | Also stop attempting to honor the alloc parameter, as things break horribly in that case. It will be removed in upcoming successor to av_set_string3.
* avidec: fix signed overflow in avi_sync()Mans Rullgard2011-10-10
| | | | | | | | Keeping byte values read from the file as unsigned is consistent with how they are subsequently used and avoids an undefined left shift by 24 when bit 7 is set. Signed-off-by: Mans Rullgard <mans@mansr.com>
* mxfdec: Fix some buffer overreads caused by the misuse of AVPacket related ↵Alex Converse2011-10-10
| | | | functions.
* dnxhddec: handle cid change in bitstream.Baptiste Coudurier2011-10-10
|
* vc1: K&R reformatting cosmeticsKostya Shishkov2011-10-10
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* ra288: log an error message when output buffer is too small.Justin Ruggles2011-10-10
| | | | also return AVERROR(EINVAL) instead of -1.
* ra288: use a more descriptive calculation for output data sizeJustin Ruggles2011-10-10
|
* ra144: use macro constants to make the code more understandable.Justin Ruggles2011-10-10
|
* ra144dec: log an error message when output buffer is too small.Justin Ruggles2011-10-10
| | | | also return AVERROR(EINVAL) instead of -1.
* ra144dec: use a more descriptive calculation for output data sizeJustin Ruggles2011-10-10
|
* lavc: Micro version bump for VC1 interlaced decoding supportMashiat Sarker Shakkhar2011-10-10
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vc1dec: interlaced stream decoding support 3/3Mashiat Sarker Shakkhar2011-10-10
| | | | | | Cosmetics: break some lines and reformat TODOs Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vc1dec: interlaced stream decoding support 2/3Mashiat Sarker Shakkhar2011-10-10
| | | | | | Cosmetics: reformat some data tables in vc1data.c Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vc1dec: interlaced stream decoding support 1/3Mashiat Sarker Shakkhar2011-10-10
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vaapi: Fix VC-1 decoding (reconstruct bitstream TTFRM correctly).Gwenole Beauchesne2011-10-10
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* configure: Add -Wstrict-prototypes to CFLAGS if available.Diego Biurrun2011-10-10
|
* avidec: simplify size parameter in memset()Janne Grunau2011-10-10
|
* mpeg4dec: use unsigned type for startcode in ff_mpeg4_decode_picture_headerMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* mpeg124: use sign_extend() functionMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ac3dec: use get_sbits() instead of manually sign-extendingMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* 4xm: fix signed overflowMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* wmavoice: fix a signed overflowMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* mpegvideo_enc: fix a signed overflowMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* crc: fix signed overflowMans Rullgard2011-10-09
| | | | | | | | This fixes a signed overflow from i << 24 when i == 255 by making i unsigned. The result of the shift is already assigned to an variable of unsigned type. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: run avconv with -nostats flagMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avtools: add -v as alias for -loglevelMans Rullgard2011-10-09
| | | | | | This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com>
* avconv: always print stats with AV_LOG_INFOAnton Khirnov2011-10-09
| | | | | | It's now possible to disable printing stats during encoding with -nostats, so there's no reason to print them differently depending on whether it's last report or not.
* doc/avconv: add forgotten output/per-stream info to -filterAnton Khirnov2011-10-09
|
* avconv: add -stats option to enable/disable printing encoding progressAnton Khirnov2011-10-09
|
* avconv: in output_packet() don't set decoded_data_size for video.Anton Khirnov2011-10-09
| | | | It's only used for audio.
* avconv: remove pointless always true conditionAnton Khirnov2011-10-09
|
* avconv: factorize common code in transcode_init()Anton Khirnov2011-10-09
|
* zmbv: remove memcpy() of decoded frameMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* mpeg12enc: use sign_extend() functionMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* h264pred: use unsigned types for pixel values, fix signed overflowsMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* h264: fix signed overflows in x*0x01010101 expressionsMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* h264pred: remove unused variablesMans Rullgard2011-10-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: fix signed overflow in avformat_find_stream_info()Mans Rullgard2011-10-08
| | | | | | | | | | On the first iteration through this code, last_dts is always INT64_MIN (AV_NOPTS_VALUE) and the subtraction overflows in an invalid manner. Although the result is only used if the input values are valid, performing the subtraction is still not allowed in a strict environment. Signed-off-by: Mans Rullgard <mans@mansr.com>
* vp8: fix signed overflowsMans Rullgard2011-10-08
| | | | | | | In addition to avoiding undefined behaviour, an unsigned type makes more sense for packing multiple 8-bit values. Signed-off-by: Mans Rullgard <mans@mansr.com>
* motion_est: fix some signed overflowsMans Rullgard2011-10-08
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* dca: fix signed overflow in shiftMans Rullgard2011-10-08
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>