summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Correctly write last 0 lacing value when packet size is multiple of 255, ↵Greg Maxwell2010-03-15
| | | | | | patch by Greg Maxwell, gmaxwell at gmail dot com Originally committed as revision 22559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H264: fix signed overflow in constant multiplicationMåns Rullgård2010-03-15
| | | | | | This fixes libavcodec/h264.h:1100: warning: integer overflow in expression Originally committed as revision 22558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVSEEK_FORCE flag to indicate that the code should attempt to seekMichael Niedermayer2010-03-15
| | | | | | by any means. Originally committed as revision 22557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefix for mpeg2_dc_scale_table.Michael Niedermayer2010-03-15
| | | | Originally committed as revision 22556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: fix missing dependencyAurelien Jacobs2010-03-15
| | | | Originally committed as revision 22555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support intra_dc_precision>8 in jpegMichael Niedermayer2010-03-15
| | | | Originally committed as revision 22554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow mpeg style yuv in jpeg when strict standard compliance is small enough.Michael Niedermayer2010-03-15
| | | | Originally committed as revision 22553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FATE testsMåns Rullgård2010-03-15
| | | | | | | | | | | | | | This adds a "fate" make target which runs the full FATE test suite. Individual tests can be run with "make fate-$testname". The location of the FATE test samples must be specified with the --samples=PATH option to configure. The tests/fate-update.sh script regenerates the references files and test list from the online FATE database. These are checked in since generating them requires non-standard tools. Originally committed as revision 22552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics : Print newline after error message.Jai Menon2010-03-15
| | | | Originally committed as revision 22551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use mpeg2 quantization bias for mjpeg.Michael Niedermayer2010-03-15
| | | | | | this seems to improve RD performance. Originally committed as revision 22550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-03-15
| | | | Originally committed as revision 22549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in ↵Martin Storsjö2010-03-15
| | | | | | | | rtsp_write_packet. Skip interleaved packets manually and recheck if there's more to be read. Originally committed as revision 22548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make rtsp_skip_packet non-static, add ff prefixMartin Storsjö2010-03-15
| | | | Originally committed as revision 22547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-03-15
| | | | Originally committed as revision 22546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTSP: Synchronize the start time of the chained RTP muxersMartin Storsjö2010-03-15
| | | | | | | | This makes sure that the streams get correctly synchronized when viewed, previously the streams were out of sync by as much time as it took between the initialization of the individual muxers. Originally committed as revision 22545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove avcodec_thread_execute from avcodec.h, and make static functions thatBenoit Fouet2010-03-15
| | | | | | need it in *thread.c. Originally committed as revision 22544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AVFormatContext.start_time_realtime in the RTP muxerMartin Storsjö2010-03-15
| | | | Originally committed as revision 22543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the NTP offset definitions to internal.hMartin Storsjö2010-03-15
| | | | Originally committed as revision 22542 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add APIchanges entry for AVFormatContext.start_time_realtimeMartin Storsjö2010-03-15
| | | | Originally committed as revision 22541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a new field AVFormatContext.start_time_realtimeMartin Storsjö2010-03-15
| | | | | | Currently intended to be used by the RTP muxer Originally committed as revision 22540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* riff: don't pad extradata when writing ASF.Anton Khirnov2010-03-15
| | | | | | Patch by Anton Khirnov mirror(moc liamg saksyw) Originally committed as revision 22539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add dependencies used by the RDT and ASF/RTP codeMartin Storsjö2010-03-15
| | | | Originally committed as revision 22538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: Combine variable declaration and definitionAlexander Strange2010-03-15
| | | | Originally committed as revision 22537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: Factor out redundant sync_ipts calculationAlexander Strange2010-03-15
| | | | Originally committed as revision 22536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: use more appropriate error codeAurelien Jacobs2010-03-15
| | | | Originally committed as revision 22535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_url_split() and ff_url_join() declarations to internal.hAurelien Jacobs2010-03-14
| | | | | | those functions are not part of the public API Originally committed as revision 22534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Fix a comment.Carl Eugen Hoyos2010-03-14
| | | | Originally committed as revision 22533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the probe loop from av_open_input_file() into its own methodMicah F. Galizia2010-03-14
| | | | | | | | | | | | | | | | | | | | | | | | | av_probe_input_buffer() so that it can be reused. Here are a few differences to the original way things were probed: - maximum probe buffer size can be specified as a parameter. - offset within the stream to probe from can be specified as a parameter. - instead of seeking back to the start each time a probe fails, stream data is appended to the reallocated buffer. This lowers the amount of data read from the stream (there is no repetition) and results in fewer closed and reopened streams (when seeking fails). New attempt after r22296, which was revert in r22315 due to a FATE failure. See the thread: Subject: [FFmpeg-devel] [PATCH] Move av_open_input_file probe loop to its own method Date: 2010-03-05 03:23:57 GMT Patch by Micah F. Galizia printf("%s%s@%s.%s", "micah", "galizia", "gmail", "com"). Originally committed as revision 22532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DWT: x86 init should depend on HAVE_MMXMåns Rullgård2010-03-14
| | | | | | | The init function is only compiled if MMX is enabled, the call must use the same condition. Originally committed as revision 22531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* error.h: test EDOM instead of EINVALMåns Rullgård2010-03-14
| | | | | | C99 doesn't require EINVAL, only EDOM, EILSEQ, and ERANGE. Originally committed as revision 22530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing includes to libavutil/error.hMåns Rullgård2010-03-14
| | | | Originally committed as revision 22529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the definition of AVERROR_NUMEXPECTED at the next libavutilStefano Sabatini2010-03-14
| | | | | | | major bump, using an FFmpeg specific error code rather than EDOM, which has a quite different semantics. Originally committed as revision 22528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow hard-coding of the 32kB cubic-root table for AAC.Reimar Döffinger2010-03-14
| | | | Originally committed as revision 22527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix brief make output for generated tablesMåns Rullgård2010-03-14
| | | | Originally committed as revision 22526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow hard-coding several QDM2 tables (about 32 kB size).Reimar Döffinger2010-03-14
| | | | Originally committed as revision 22525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some more table-printing functions needed for future patches.Reimar Döffinger2010-03-14
| | | | Originally committed as revision 22524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefix to dwt functionsMåns Rullgård2010-03-14
| | | | Originally committed as revision 22523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate DWT from snow and dsputilMåns Rullgård2010-03-14
| | | | | | | | This moves the DWT functions from snow.c and dsputil.c to a file of their own. A new struct, DWTContext, holds the function pointers previously part of DSPContext. Originally committed as revision 22522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid creating tiny (possibly only 64 bytes large) audio packets resulting inReimar Döffinger2010-03-14
| | | | | | huge processing and memory usage overhead for avi files with raw PCM audio. Originally committed as revision 22521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure all mvs of a mb are set in the error concealment code.Michael Niedermayer2010-03-14
| | | | Originally committed as revision 22520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark AVERROR_ENOENT for deletion at the next libavutil major bump.Stefano Sabatini2010-03-14
| | | | | | The symbol is currently unused, AVERROR(ENOENT) must be used instead. Originally committed as revision 22519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Lexically sort the error code definitions.Stefano Sabatini2010-03-14
| | | | Originally committed as revision 22518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that the deblock filter accesses the correct MVs for h264.Michael Niedermayer2010-03-14
| | | | Originally committed as revision 22517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacsbr: DSPUtilize analysis input scaling.Alex Converse2010-03-13
| | | | Originally committed as revision 22516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aac: Don't bias output during the IMDCT if SBR will be used.Alex Converse2010-03-13
| | | | Originally committed as revision 22515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark AVERROR_ENOMEM to be deleted at the next major bump.Stefano Sabatini2010-03-13
| | | | | | | AVERROR(ENOMEM) must be used instead, and there are no occurrences of AVERROR_ENOMEM in the FFmpeg basecode so it can be safely dropped. Originally committed as revision 22514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and markStefano Sabatini2010-03-13
| | | | | | AVERROR_EIO for deletion at the next major bump. Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make iff.c:decode_init return the value returned byStefano Sabatini2010-03-13
| | | | | | | | avctx->get_buffer() in case of error, rather than AVERROR_UNKNOWN which is deprecated, and mark AVERROR_UNKNOWN for deletion at the next major bump. Originally committed as revision 22512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CODEC_ID_XVID is not used anywhere, remove it at next major bumpAurelien Jacobs2010-03-13
| | | | Originally committed as revision 22511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bump minor avcodec version for libxvid codec id change (r22489)Aurelien Jacobs2010-03-13
| | | | Originally committed as revision 22510 to svn://svn.ffmpeg.org/ffmpeg/trunk