Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-03-09Kega Game Video (KGV1) decoderDaniel Verkamp
Originally committed as revision 22364 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Preallocate index entries in mov demuxer, huge speedupBaptiste Coudurier
Originally committed as revision 22363 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09In mpegts muxer, write adts header if aac bitstream does not contain itBaptiste Coudurier
Originally committed as revision 22355 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09In mpegts muxer, search for h264 aud nal, it might not be the first nal.Baptiste Coudurier
Improve ther error message when bitstream is malformated and tell user to use the bitstream filter. Originally committed as revision 22354 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Remove definition of match_ext(), which is declared under #ifdefStefano Sabatini
HAVE_AV_CONFIG_H and so not publicly declared, and currently unused. Originally committed as revision 22353 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09mpegts vbr muxing, activated when muxing rate is not supplied by theBaptiste Coudurier
user. Originally committed as revision 22352 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Replace last occurrence of the deprecated match_ext() withStefano Sabatini
av_match_ext(). Originally committed as revision 22351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Start continuity counter at 0 for pmt as wellBaptiste Coudurier
Originally committed as revision 22350 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Start continuity counter at 0 for streamsBaptiste Coudurier
Originally committed as revision 22344 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-0810l typo, fix ts total bit rate computationBaptiste Coudurier
Originally committed as revision 22343 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Move resolve_host() to ffserver.cMåns Rullgård
This deprecated function is only used by ffserver, yet does not have a prototype visible there. In the long term, ffserver should be made IPv6-aware. In the meantime, this change removes cruft from lavf and fixes some warnings in ffserver. Originally committed as revision 22329 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Use ASF supports "markers" which are a name and a time stamp to createVladimir Pantelic
lavf chapters. Patch by Vladimir Pantelic pan (arobase) nt tu (dash) darmstadt de Originally committed as revision 22326 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Add doxygen documentation for ff_url_splitMartin Storsjö
Originally committed as revision 22323 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08ReindentMartin Storsjö
Originally committed as revision 22322 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Rename url_split to ff_url_splitMartin Storsjö
Since this function isn't in the public API, it should have an ff_ prefix. Originally committed as revision 22321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Revert "Move the probe loop from av_open_input_file() into its own method"Måns Rullgård
This reverts r22296. This change made some files to fail to open. The patch submitter has promised to investigate next week. Originally committed as revision 22315 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08IFF: move ff_cmap_read_palette() prototype to a header fileMåns Rullgård
Originally committed as revision 22307 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Fix concat seeking SEEK_END case.Wolfram Gloger
Patch by Wolfram Gloger wmglo ^ dent.med.uni-muenchen.de. Originally committed as revision 22306 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Fix concat seek result.Wolfram Gloger
Patch by Wolfram Gloger wmglo AT-SIGN dent.med.uni-muenchen DOT de. Originally committed as revision 22302 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08av_find_stream_info(): Add a workaround for backwards compatible HE-AAC ↵Alex Converse
signaling. The sample rate, frame size, and channel count from the container are not reliable when backwards compatible signaling is used. Originally committed as revision 22301 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Fix pts->dts conversion init for non-zero initial value for pts.Daniel Kristjansson
Patch by Daniel Kristjansson, danielk cuymedia net Originally committed as revision 22297 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Move the probe loop from av_open_input_file() into its own methodMicah F. Galizia
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). Patch by Micah F. Galizia printf("%s%s@%s.%s", "micah", "galizia", "gmail", "com"). Originally committed as revision 22296 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07inet_aton needs _DARWIN_C_SOURCE on OS XDavid Conrad
Originally committed as revision 22285 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Localize the #define _SVID_SOURCE needed for inet_aton() to os_support.cDavid Conrad
Originally committed as revision 22284 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-071l trocadero: forgot reference operator on bytestream_get_be32() argumentKostya Shishkov
Originally committed as revision 22277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Add internal.h include for av_read_frame_flush prototypeDavid Conrad
Fixes build with clang Originally committed as revision 22273 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Fix warning about incompatible pointer typesDavid Conrad
Originally committed as revision 22272 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07matroskadec: Fix a buffer overreadDavid Conrad
Originally committed as revision 22271 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Move av_read_frame_flush() prototype to lavf/internal.hMåns Rullgård
Originally committed as revision 22268 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Add some missing #includesMåns Rullgård
Originally committed as revision 22258 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Set GXF fallback time-base to match the one specified for audio-only.Reimar Döffinger
Originally committed as revision 22257 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07GXF time base is always based on "fields" per second even forReimar Döffinger
non-interlaced video. Should fix issue 1766. Originally committed as revision 22256 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Don't explicitly initialize networking in the tcp and udp protocolsMartin Storsjö
Networking is always initialized when opening protocols. Originally committed as revision 22227 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Use ff_url_join for assembling URLs, instead of snprintfMartin Storsjö
This ensures proper escaping of numerical IPv6 addresses. The RTSP (de)muxer needs its own network initialization, since it isn't a protocol and url_open hasn't been called yet. Originally committed as revision 22226 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Add a function ff_url_join for assembling URLsMartin Storsjö
Originally committed as revision 22225 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Always call ff_network_init/ff_network_close when opening protocolsMartin Storsjö
ff_network_init is a no-op on all platforms except windows, and on windows the performance penalty is minimal (less than 1 ms in my tests). Originally committed as revision 22224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-05Fix memory leak in NUT muxerVitor Sessak
Originally committed as revision 22222 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-05Return from rtp_read when select returns an errorMartin Storsjö
Originally committed as revision 22219 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-05oggdec: Parse theora headers since ogg might not mark keyframesDavid Conrad
Fixes issue746 Originally committed as revision 22214 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Check url_interrupt_cb in rtp_read, wait in select for max 100 ms before ↵Martin Storsjö
rechecking url_interrupt_cb Originally committed as revision 22209 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04handle errors reported by av_get_packet() in Bink demuxerPeter Ross
Originally committed as revision 22208 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Guard against invalid memory readPeter Ross
Originally committed as revision 22207 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Ensure that we write clusters and blocks with known size when streamingDavid Conrad
Too many demuxers can't cope with clusters of unknown size. Originally committed as revision 22201 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Fix indentationDavid Conrad
Originally committed as revision 22200 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Simplify starting and ending clustersDavid Conrad
Originally committed as revision 22199 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Write the first seekhead if writing to a stream, we won't be able to seekDavid Conrad
back and write it at the end Originally committed as revision 22198 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Attempt seeking to write EBML master sizes even if streamedDavid Conrad
Most EBML masters are much smaller than IO_BUFFER_SIZE and thus the size can be updated. This makes parsing the resulting files easier. Originally committed as revision 22197 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04matroskaenc: use "title" tag instead of "description" in track title.Anton Khirnov
Patch by Anton Khirnov < whyskas at gmail > Originally committed as revision 22187 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04matroskadec: cosmetic indentationAurelien Jacobs
Originally committed as revision 22185 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04matroskadec: timestamps are dts and not pts in ms vfw compatibility modeJoakim Plate
original patch by elupus _at_ ecce _dot_ se Originally committed as revision 22184 to svn://svn.ffmpeg.org/ffmpeg/trunk