summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* Doxument url_open_protocol().Stefano Sabatini2010-01-24
| | | | Originally committed as revision 21417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxument url_read().Stefano Sabatini2010-01-24
| | | | Originally committed as revision 21415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make url_read_complete retry on EAGAIN and return how much data it readReimar Döffinger2010-01-23
| | | | | | if it reached EOF, making it useful in more cases. Originally committed as revision 21393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a warning when DATA chunk is encountered in the middle of chunk.Ronald S. Bultje2010-01-23
| | | | | | From multirate RM patch by Ronald S. Bultje Originally committed as revision 21392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove conditional M_PI definition, it is already defined inStefano Sabatini2010-01-22
| | | | | | libavutil/mathematics.h indirectly included by libavformat/avformat.h. Originally committed as revision 21388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated guess_format() with av_guess_format().Martin Storsjö2010-01-22
| | | | | | Patch by Martin Storsjö reverse(<ts.nitram@nitram>). Originally committed as revision 21387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make style a little bit more K&R'ish.Ronald S. Bultje2010-01-22
| | | | Originally committed as revision 21383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename a function which is no longer ipv6-specific. Patch by Martin StorsjöMartin Storsjö2010-01-22
| | | | | | <$firstname () $firstname st>. Originally committed as revision 21382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the control URI from the SDP (if present) rather than the input filename,Alan Steremberg2010-01-22
| | | | | | | | if present. This fixes playback of a number of MS-RTSP streams, mostly these for which playback contains a session key in the URI. Fixes issue 1697. Patch by Alan Steremberg <$firstname dot $lastname () gmail com>. Originally committed as revision 21381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mkvenc: Write TrackTimecodeScaleRafaël Carré2010-01-21
| | | | | | patch by Rafael (dot) Carre (a) gmail (d) com Originally committed as revision 21372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove reply and content_ptr arguments from rtsp_send_cmd_async(), sinceRonald S. Bultje2010-01-21
| | | | | | they are unused. Originally committed as revision 21371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change on rtsp_send_cmd() to the _async() version since we don't use theRonald S. Bultje2010-01-21
| | | | | | response anyway. Originally committed as revision 21370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r21368.Ronald S. Bultje2010-01-21
| | | | Originally committed as revision 21369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pretty embarassing bug; we shouldn't use av_strlcatf() on an uninitializedRonald S. Bultje2010-01-21
| | | | | | buffer, that is doomed to not work at some point. Originally committed as revision 21368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make output-example.c handle AAC audio.Martin Storsjö2010-01-21
| | | | | | Patch by Martin Storsjö martin martin st Originally committed as revision 21367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove IPv4-only codepath. Patch by Martin Storsjö <$first $first st>.Martin Storsjö2010-01-21
| | | | Originally committed as revision 21365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set start_time and duration in AVStream instead of AVFormatContext forDavid Conrad2010-01-21
| | | | | | | formats with only one stream; the AVFormatContext values will be derived from the AVStream and this helps in calculating stream bitrate. Originally committed as revision 21361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the configure check from r21351 and use it to properly define structMartin Storsjö2010-01-20
| | | | | | | | | sockaddr (in case it's not missing) so it always works on the system that we are defining it for, in a RFC-2553/3493-compliant way (i.e. containing a ss_family field). which is used in udp.c. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fetch flv duration from file if it is set to 0 in metadataBaptiste Coudurier2010-01-19
| | | | Originally committed as revision 21329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2010-01-18
| | | | Originally committed as revision 21311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set average frame rate in mov demuxerBaptiste Coudurier2010-01-18
| | | | Originally committed as revision 21310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move aspect ratio code at the end of the track parsing, fix ↵Baptiste Coudurier2010-01-18
| | | | | | cathedral-beta2-400extra-crop-avc.mp4 Originally committed as revision 21301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename the RTP muxer sources so that the packetisation functions are inLuca Abeni2010-01-18
| | | | | | rtpenc_*.c files. Originally committed as revision 21284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the ff_rtp_send_h264() prototype from rtp_h264.h (such functionLuca Abeni2010-01-18
| | | | | | belongs to the RTP muxer, and its prototype already is in rtpenc.h) Originally committed as revision 21282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add uldx fourcc to mpeg4 in riff.cBen Littler2010-01-18
| | | | Originally committed as revision 21279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add vspx fourcc to mpeg4 in riff.cBen Littler2010-01-17
| | | | Originally committed as revision 21269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_match_ext() rather than the deprecated match_ext(), fixStefano Sabatini2010-01-17
| | | | | | warnings. Originally committed as revision 21263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix comment typo carefull -> carefulMåns Rullgård2010-01-17
| | | | | | Spotted by someone on IRC. Originally committed as revision 21261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after r21257.Carl Eugen Hoyos2010-01-17
| | | | Originally committed as revision 21258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support demuxing of Sony OpenMG files without metadata header.Michael Karcher2010-01-17
| | | | | | Original patch by Michael Karcher, ffmpeg A mkarcher dialup fu-berlin de Originally committed as revision 21257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support decoding of SoftLab-NSK VideoTizer.ami_stuff2010-01-16
| | | | | | Patch by ami_stuff, ami_stuff o2 pl Originally committed as revision 21245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add symbol versioning for shared librariesMåns Rullgård2010-01-16
| | | | | | Based on patch by Reinhard Tartler <siretart tauware de> Originally committed as revision 21236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support decoding of Avid uncompressed mov files, fixes issue 1685.Carl Eugen Hoyos2010-01-15
| | | | Originally committed as revision 21223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support decoding Avid 1:1x codec, (partially) fixes issue1684.Carl Eugen Hoyos2010-01-15
| | | | Originally committed as revision 21222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Latent libavformat version bump and documentation update for Adobe Filmstrip ↵Peter Ross2010-01-14
| | | | | | muxer and demuxer (r21212) Originally committed as revision 21213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adobe Filmstrip muxer and demuxerPeter Ross2010-01-14
| | | | Originally committed as revision 21212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set stream aspect from mov tkhd width/height, patch by Andrew Wason, ↵Andrew Wason2010-01-14
| | | | | | | | rectalogic at rectalogic dot com Fixes issue 671. Originally committed as revision 21210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not skip mdat data if it's the last atom, avoids one seekBaptiste Coudurier2010-01-13
| | | | Originally committed as revision 21209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* restore old buffer content when seek failed in http protocol, fix issue #1631Baptiste Coudurier2010-01-13
| | | | Originally committed as revision 21208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert wrongly commited hunk in r21205Baptiste Coudurier2010-01-13
| | | | Originally committed as revision 21207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless type declarationsBaptiste Coudurier2010-01-13
| | | | Originally committed as revision 21206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless declarations from mpegts.hBaptiste Coudurier2010-01-13
| | | | Originally committed as revision 21205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use codec rc_max_rate if set and warn if bit rate is not setBaptiste Coudurier2010-01-13
| | | | Originally committed as revision 21204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not split audio frames accross pes packets.Baptiste Coudurier2010-01-13
| | | | | | This was not supported by some equipment and cisco analyzer. Originally committed as revision 21203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print more debug info about muxing parameters, patch by Mike Scheutzow, ↵Mike Scheutzow2010-01-13
| | | | | | scheutzow at alcatel-lucent dot com Originally committed as revision 21201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update mpegts_write_pes documentation, patch by Mike Scheutzow, scheutzow at ↵Mike Scheutzow2010-01-13
| | | | | | alcatel-lucent dot com Originally committed as revision 21200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Insert null packets to keep pcr values correct, patch by Mike Scheutzow,Mike Scheutzow2010-01-13
| | | | | | scheutzow at alcatel-lucent dot com and Niobos, niobos at dest-unreach dot be. Originally committed as revision 21199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move pcr/sdt/pat period computation after ts->mux_rate is set, patch by Mike ↵Mike Scheutzow2010-01-13
| | | | | | Scheutzow, scheutzow at alcatel-lucent dot com Originally committed as revision 21198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* output a pcr as soon as possible, patch by Mike Scheutzow, scheutzow at ↵Mike Scheutzow2010-01-13
| | | | | | alcatel-lucent dot com Originally committed as revision 21197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix ts packet header size computation, patch by Niobos, niobos at ↵Niobos2010-01-13
| | | | | | dest-unreach dot be Originally committed as revision 21196 to svn://svn.ffmpeg.org/ffmpeg/trunk