summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* In gxf muxer, fix flt entry offset, patch by Reuben Martin, reuben dot m at ↵Reuben Martin2010-10-072-2/+3
| | | | | | gmail dot com Originally committed as revision 25395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless local variableAurelien Jacobs2010-10-071-3/+2
| | | | Originally committed as revision 25394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless local allocated start_time arrayAurelien Jacobs2010-10-071-14/+7
| | | | Originally committed as revision 25393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set myself as maintainer for rtpenc* and sdp.c, as requested by Luca AMartin Storsjö2010-10-071-3/+3
| | | | Originally committed as revision 25392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libmp3lame: don't check unused function in detectionRafaël Carré2010-10-071-1/+1
| | | | | | | | | | | | | hip_decode_init() isn't used by the wrapper, and can be absent from the library if lame was configured with --disable-decoder (like it is done for windows builds of VLC) Unfortunately this also removes the way to detect a libmp3lame more recent than the buggy 3.98.2 Patch by Rafaël Carré, rafael carre at gmail Originally committed as revision 25391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-10-071-7/+7
| | | | Originally committed as revision 25390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sdp: Don't require the explicit ?multicast optionMartin Storsjö2010-10-071-10/+17
| | | | | | No such option is used anywhere else. Instead, detect the address type. Originally committed as revision 25389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert ff_is_multicast_address to take a struct sockaddr parameterMartin Storsjö2010-10-072-4/+4
| | | | | | | | Not all users of this function will have a full struct sockaddr_storage available, and casting other sockaddrs to sockaddr_storage is wrong, while any sockaddr can be cast to a base sockaddr. Originally committed as revision 25388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Share the is_multicast_address functionMartin Storsjö2010-10-072-15/+15
| | | | | | | | The header probably isn't the right permanent place for this function, but it is quite small, and consensus seems to be that it can stay in the header for now, instead of creating a new file network.c just for this one. Originally committed as revision 25387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move multicast address identification fallback macros to network.h from udp.cMartin Storsjö2010-10-072-6/+7
| | | | Originally committed as revision 25386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn if muxing mpeg ps is attempted without a VBV buffer size.Michael Niedermayer2010-10-071-1/+3
| | | | Originally committed as revision 25385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass RC parameters on stream copy to the muxer.Michael Niedermayer2010-10-071-0/+2
| | | | Originally committed as revision 25384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Init SCR in mpeg muxer based on first DTS.Michael Niedermayer2010-10-072-1/+3
| | | | | | This fixes issues if the first DTS is far away from 0. Originally committed as revision 25383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* properly check for FF_API_MAX_STREAMS instead of LIBAVFORMAT_VERSION_MAJORAurelien Jacobs2010-10-062-7/+8
| | | | Originally committed as revision 25382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add new streams API without MAX_STREAMS limitAurelien Jacobs2010-10-062-0/+14
| | | | | | (disabled until next major bump) Originally committed as revision 25381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dynamically use nb_streams instead of static use of MAX_STREAMSAurelien Jacobs2010-10-061-8/+33
| | | | Originally committed as revision 25380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* document the fact that av_new_stream() can't be called in a background threadAurelien Jacobs2010-10-061-1/+2
| | | | Originally committed as revision 25379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move handling of ID3v2 to common utils.c code, reducing code duplicationReimar Döffinger2010-10-066-63/+19
| | | | | | and supporting it for more formats, fixing issue 2258. Originally committed as revision 25378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: break long lineAurelien Jacobs2010-10-061-2/+8
| | | | Originally committed as revision 25377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the definitions of AVSEEK_SIZE to make it appear before theStefano Sabatini2010-10-061-7/+7
| | | | | | description of url_seek(), which references it. Originally committed as revision 25376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* custom build system documentationMichael Niedermayer2010-10-061-0/+34
| | | | Originally committed as revision 25375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix default value of time_offset_length.John Stebbins2010-10-061-0/+1
| | | | | | Patch by John Stebbins stebbins jetheaddev com. Originally committed as revision 25374 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention to send a patch before changing API or ABI.Carl Eugen Hoyos2010-10-061-3/+3
| | | | Originally committed as revision 25373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Handle RTP header extensionRobert Schlabbach2010-10-061-0/+17
| | | | | | | | This fixes roundup issue 2270. Patch by Robert Schlabbach, robert_s at gmx dot net Originally committed as revision 25372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTP depacketization of the X-QT QuickTime formatMartin Storsjö2010-10-067-2/+268
| | | | Originally committed as revision 25371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Set _DARWIN_C_SOURCE while testing for struct ipv6_mreqMartin Storsjö2010-10-061-1/+1
| | | | | | | | | | | | On OS X, this struct is only available if _DARWIN_C_SOURCE is defined, when we have _POSIX_C_SOURCE defined. This allows the struct to be found, enabling proper IPv6 multicast functionality on OS X. The define is already set within the file that uses the struct. Setting it only for this test in configure avoids having to keep it defined for the whole build. Originally committed as revision 25370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Carl Eugen Hoyos2010-10-061-1/+0
| | | | Originally committed as revision 25369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use retry_transfer_wrapper() in url_write() as its callers do not expect it ↵Michael Niedermayer2010-10-061-2/+2
| | | | | | to stop in the middle. Originally committed as revision 25368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor retry_transfer_wrapper() out of url_read_complete()Michael Niedermayer2010-10-061-2/+8
| | | | Originally committed as revision 25367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* doc,win32: add note about the use of dllimport for global data in MSVC++Ramiro Polla2010-10-061-0/+9
| | | | Originally committed as revision 25366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* doc,win32: update note on which files to use with shared libraries in msvcRamiro Polla2010-10-061-3/+6
| | | | Originally committed as revision 25365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* doc: mention xmm clobber macros usageRamiro Polla2010-10-061-0/+6
| | | | Originally committed as revision 25364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fft: mark xmm registers as clobbered in ff_imdct_calc_sseRamiro Polla2010-10-061-0/+1
| | | | Originally committed as revision 25363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check whether compiler supports xmm registers in asm clobber listRamiro Polla2010-10-062-0/+24
| | | | Originally committed as revision 25362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMX, MMX2, SSE2 and SSSE3 optimizations for pred16x16/8x8_plane H264 intraRonald S. Bultje2010-10-053-0/+557
| | | | | | | prediction (plus some with different rounding for svq3/rv40). Speedup (for SSSE3) about ~6-fold, 3.6% faster overall with cathedral sample. Originally committed as revision 25361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: Free the previous extradataMartin Storsjö2010-10-051-0/+1
| | | | | | | If multiple stsd atoms are parsed for the same stream, the old extradata would be leaked. Originally committed as revision 25360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: Split out ff_mov_read_stsdMartin Storsjö2010-10-052-7/+15
| | | | Originally committed as revision 25359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: Fix prototype of some OPT_FUNC2 functions. They must return an int.Aurelien Jacobs2010-10-051-2/+4
| | | | Originally committed as revision 25358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vorbiscomment: add DISCNUMBER to the metadata conv tableAnton Khirnov2010-10-051-0/+1
| | | | | | patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Consolidate rtsp/sdp deps to use _selectMartin Storsjö2010-10-051-6/+3
| | | | | | | This makes e.g. --disable-everything --enable-demuxer=rtsp actually enable the rtsp demuxer and everything else that is needed. Originally committed as revision 25356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Add the http protocol as an auto-enabled dependency of the rtsp ↵Martin Storsjö2010-10-051-1/+2
| | | | | | demuxer and muxer Originally committed as revision 25355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp/sdp: Move code into correct ifdefsMartin Storsjö2010-10-051-81/+87
| | | | | | | | | This makes the code dependencies correct. Previously, the SDP demuxer wasn't buildable on its own. This also reverts rev 25343. Originally committed as revision 25354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* find_info_tag: Make sure the output buffer is null terminatedMartin Storsjö2010-10-051-1/+1
| | | | Originally committed as revision 25353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not assume PIX_FMT_YUV420P will remain the only supported output format ↵Carl Eugen Hoyos2010-10-051-1/+1
| | | | | | for H264. Originally committed as revision 25352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* udp: Define _DARWIN_C_SOURCEMartin Storsjö2010-10-051-0/+1
| | | | | | This is required in order to get the IP_MULTICAST_TTL define. Originally committed as revision 25351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* udp: Return the actual error code on errors, instead of AVERROR(EIO)Martin Storsjö2010-10-051-1/+1
| | | | Originally committed as revision 25350 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set proper error if server flags indicate that it doesn't support mmst. Thisqrtt12010-10-051-1/+5
| | | | | | | | prevents a read-after-close-induced segfault later. Fixes issue 2266. Patch by qrtt1 <chingyichan dot tw gmail com>. Originally committed as revision 25349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics, lots of.Tobias Bindhammer2010-10-052-45/+48
| | | | Originally committed as revision 25348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip unnecessary calculations in 4col-mode.Tobias Bindhammer2010-10-051-1/+1
| | | | Originally committed as revision 25347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add possibility to crop screens inside of encoded frames.Tobias Bindhammer2010-10-051-4/+19
| | | | Originally committed as revision 25346 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud