- 15 Mar, 2010 7 commits
-
-
Martin Storsjö authored
Originally committed as revision 22541 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
Currently intended to be used by the RTP muxer Originally committed as revision 22540 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Anton Khirnov authored
Patch by Anton Khirnov mirror(moc liamg saksyw) Originally committed as revision 22539 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
Originally committed as revision 22538 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Alexander Strange authored
Originally committed as revision 22537 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Alexander Strange authored
Originally committed as revision 22536 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Aurelien Jacobs authored
Originally committed as revision 22535 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 14 Mar, 2010 18 commits
-
-
Aurelien Jacobs authored
those functions are not part of the public API Originally committed as revision 22534 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Carl Eugen Hoyos authored
Originally committed as revision 22533 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Micah F. Galizia authored
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
-
Måns Rullgård authored
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
-
Måns Rullgård authored
C99 doesn't require EINVAL, only EDOM, EILSEQ, and ERANGE. Originally committed as revision 22530 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22529 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
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
-
Reimar Döffinger authored
Originally committed as revision 22527 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22526 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Reimar Döffinger authored
Originally committed as revision 22525 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Reimar Döffinger authored
Originally committed as revision 22524 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
Originally committed as revision 22523 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Måns Rullgård authored
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
-
Reimar Döffinger authored
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
-
Michael Niedermayer authored
Originally committed as revision 22520 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
The symbol is currently unused, AVERROR(ENOENT) must be used instead. Originally committed as revision 22519 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 22518 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Michael Niedermayer authored
Originally committed as revision 22517 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 13 Mar, 2010 15 commits
-
-
Alex Converse authored
Originally committed as revision 22516 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Alex Converse authored
Originally committed as revision 22515 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
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
-
Stefano Sabatini authored
AVERROR_EIO for deletion at the next major bump. Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
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
-
Aurelien Jacobs authored
Originally committed as revision 22511 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Aurelien Jacobs authored
Originally committed as revision 22510 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
picref. Originally committed as revision 22509 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
addition of the AVFilterPicRef.pos field. Originally committed as revision 22508 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
again from the filterchain and pass it back to output_picture2(). Originally committed as revision 22507 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
byte position information, as stored in the pkt.pos, through the filterchain. Note that the pos field is added *non* at the end of the AVFilterPicRef struct, thus breaking ABI compatibility, which is allowed as the API is still considered non-stable. Originally committed as revision 22506 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
choosen between 8 and 32 when the supplied parameter is the string "random". This is useful for testing the slice support, but it is not supposed to be used for other purposes and this interface may change in the future, thus it is not documented. The randomization algorithm adopted is the standard Numerical Recipes LCG. Originally committed as revision 22505 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
David Conrad authored
1.5% faster overall decode on my penryn Originally committed as revision 22504 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 22503 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
definition. Originally committed as revision 22502 to svn://svn.ffmpeg.org/ffmpeg/trunk
-