summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* Remove support for pre-Haiku, non-POSIX, non-C99 BeOS variants.Diego Biurrun2010-06-10
| | | | | | | | BeOS support has been broken for many years and the "maintainer" of the port has not reacted to countless requests to get the port fixed. approved by Mans Originally committed as revision 23562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure the http protocol handler returns errors if a delayed open had failedMartin Storsjö2010-06-09
| | | | Originally committed as revision 23548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix printf format warningsEli Friedman2010-06-09
| | | | | | patch by Eli Friedman <eli dot friedman at gmail dot com> Originally committed as revision 23547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize the http connection in http_seek, tooMartin Storsjö2010-06-09
| | | | | | | | This makes url_fsize return correct values for delay opened connections that have not yet been initialized. This fixes using the image2 demuxer with http sources. Originally committed as revision 23546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not attempt to seek to index for streamed files and if the user explicitlyReimar Döffinger2010-06-08
| | | | | | requested us not to read the index. Originally committed as revision 23540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the MATROSKA_ID_TAGDEFAULT to match the specification (instead ofReimar Döffinger2010-06-08
| | | | | | libmatroska etc. typo) but continue to support the "old" value. Originally committed as revision 23539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTSP tunneling over HTTPJosh Allmann2010-06-08
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail dot com Originally committed as revision 23536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the RTSP muxer use rtsp_hd_out, for consistencyMartin Storsjö2010-06-08
| | | | Originally committed as revision 23535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-06-08
| | | | Originally committed as revision 23534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Pictor/PC Paint to image2 muxer/demuxerPeter Ross2010-06-08
| | | | Originally committed as revision 23533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for disabling chunked transfer encoding for the http protocolJosh Allmann2010-06-08
| | | | | | Patch by Josh Allmann, josh dot allmann at gmail Originally committed as revision 23531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix handling of errors in the http protocolMartin Storsjö2010-06-08
| | | | | | | | | If http_connect fails, we've already stored the new connection handle in s->hd, so clear it so http_close won't double-free it. 10l to me for not spotting it during review Originally committed as revision 23529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bugs in the http custom header handlingMartin Storsjö2010-06-08
| | | | | | | | | Initialize the buffer av_strlcatf writes into. Add the dash at the end of the Range header. 10l to me for not spotting it earlier Originally committed as revision 23528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: move LFG state from muxer context to local variableMåns Rullgård2010-06-08
| | | | | | | The LFG is only used in one place, so there is no need to keep it in the context. Originally committed as revision 23527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the capability to write custom HTTP headersJosh Allmann2010-06-08
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify the behaviour of http_open to implicitly delay connection establishmentJosh Allmann2010-06-08
| | | | | | | | The connection is made on the first http_read, http_write or http_seek. Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Added M701 codec_tag for mpeg2videoTomas Härdin2010-06-07
| | | | Originally committed as revision 23513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not read the RM index when input is streamed (since it requires seekingReimar Döffinger2010-06-06
| | | | | | forward and then back again) or AVFMT_FLAG_IGNIDX is set. Originally committed as revision 23509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to B4BY and R4BY NUT codec tags added in NUT r672.Stefano Sabatini2010-06-06
| | | | Originally committed as revision 23508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bgr/rgb444 for nutMichael Niedermayer2010-06-06
| | | | Originally committed as revision 23504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support AVFMT_FLAG_IGNIDX in gxf demuxer.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix muxing rgb rawvideo in avi regression.Michael Niedermayer2010-06-05
| | | | Originally committed as revision 23500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Reindent/align/wrapMartin Storsjö2010-06-05
| | | | Originally committed as revision 23498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTSP: Propagate errors up from ff_rtsp_send_cmd*Josh Allmann2010-06-05
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused local variablesMartin Storsjö2010-06-05
| | | | Originally committed as revision 23496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTSP: Add a second URLContext for outgoing messagesJosh Allmann2010-06-05
| | | | | | | Done in preparation for RTSP over HTTP. Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More mov rawvideo fourccBaptiste Coudurier2010-06-04
| | | | Originally committed as revision 23480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix raw 555 pixel format, add abgr fourccBaptiste Coudurier2010-06-04
| | | | Originally committed as revision 23479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Don't write a second seekhead for the clusters; mkvalidate agreesDavid Conrad2010-06-04
| | | | | | with me that it's unnecessary. Originally committed as revision 23478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Check that tracks was allocatedDavid Conrad2010-06-04
| | | | Originally committed as revision 23477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Use av_get_random_seed -> lfg for segment UIDDavid Conrad2010-06-04
| | | | Originally committed as revision 23476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Make put_ebml_binary take a void pointerDavid Conrad2010-06-04
| | | | Originally committed as revision 23475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add WebM muxerJames Zern2010-06-04
| | | | | | Patch by James Zern <jzern at google> Originally committed as revision 23474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Mux clusters betterJames Zern2010-06-04
| | | | | | | | | | Start them on keyframes when reasonable, and delay writing audio packets to help ensure that there's audio samples available for the first frame in clusters. Patch by James Zern <jzern at google> Originally committed as revision 23473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* metadata: mention how to remove tags.Anton Khirnov2010-06-04
| | | | | | Patch by Anton Khirnov, wyskas at gmail Originally committed as revision 23468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindent after previous commit.Anton Khirnov2010-06-04
| | | | | | Patch by Anton Khirnov, wyskas at gmail Originally committed as revision 23467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* metadata: make conversion to the same format a noop.Anton Khirnov2010-06-04
| | | | | | Patch by Anton Khirnov, wyskas at gmail Originally committed as revision 23466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtspenc: Write the interleaving header in the same buffer as the packet dataMartin Storsjö2010-06-04
| | | | Originally committed as revision 23465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* http: Set http_code to 200 when doing a POSTMartin Storsjö2010-06-04
| | | | | | This avoids reading and comparing uninitialized memory. Originally committed as revision 23464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_BASE64_SIZE() macroHoward Chu2010-06-04
| | | | Originally committed as revision 23462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* win32: Use _fstati64() instead of plain old fstat() on Windows to support filekemuri2010-06-03
| | | | | | | | sizes greater than 4gb. Patch by kemuri <kemuri9 at gmail dot com> Originally committed as revision 23448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* httpauth: Fix the length passed to av_strlcatMartin Storsjö2010-06-03
| | | | | | | Since the buffer always was large enough, this bug didn't have any effect in practice. Originally committed as revision 23447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove stray and possibly wrong line, rtpdec.c sets that alreadyLuca Barbato2010-06-03
| | | | Originally committed as revision 23440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_streamheader() log a message if there is no codec tagStefano Sabatini2010-06-02
| | | | | | defined. Originally committed as revision 23434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_streamheader() return a meaningful error code if no codecStefano Sabatini2010-06-02
| | | | | | tag is defined, rather than return -1. Originally committed as revision 23433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_header() and write_headers() return an error code in case ofStefano Sabatini2010-06-02
| | | | | | error. Originally committed as revision 23432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make write_streamheader() and write_headers() accept anStefano Sabatini2010-06-02
| | | | | | | AVFormatContext * in input rather than a NUTContext *, which allows to log messages with av_log(). Originally committed as revision 23431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the error message issued in case of invalid codec tag moreStefano Sabatini2010-06-02
| | | | | | informative. Originally committed as revision 23423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change default number of channels (used if unspecified in the format desc)Ronald S. Bultje2010-06-01
| | | | | | | | from 2 to 1, which is the actual value used in the spec. Fixes issue1978. Path by John Wimer <john at god dot vtic dot net>. Originally committed as revision 23414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print an error when MAX_STREAMS is reached.Michael Niedermayer2010-06-01
| | | | Originally committed as revision 23413 to svn://svn.ffmpeg.org/ffmpeg/trunk