summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* ReindentMartin Storsjö2010-10-02
| | | | Originally committed as revision 25317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* applehttp: Allow the base url to be a local file name, tooMartin Storsjö2010-10-02
| | | | Originally committed as revision 25316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document url_get_filename().Stefano Sabatini2010-10-02
| | | | Originally committed as revision 25310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: add a grow_array() helper functionAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Return a queued packet if it has been in the queue for longer than ↵Martin Storsjö2010-10-01
| | | | | | max_delay Originally committed as revision 25295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Reorder received RTP packets according to the seq numberMartin Storsjö2010-10-01
| | | | | | Reordering is enabled only when receiving over UDP. Originally committed as revision 25294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Split out the part of rtp_parse_packet that does the parsing of new ↵Martin Storsjö2010-10-01
| | | | | | packets Originally committed as revision 25293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation of ff_id3v2_readReimar Döffinger2010-10-01
| | | | Originally committed as revision 25292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent/rewrapMartin Storsjö2010-10-01
| | | | Originally committed as revision 25291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Reorganize if statements in rtsp_read_playMartin Storsjö2010-10-01
| | | | Originally committed as revision 25290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp/rtpdec: Allow rtp_parse_packet to take ownership of the packet bufferMartin Storsjö2010-10-01
| | | | | | | Do the same change for ff_rdt_parse_packet, too, to keep the interfaces similar. Originally committed as revision 25289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Use a dynamically allocated receive bufferMartin Storsjö2010-10-01
| | | | Originally committed as revision 25288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add demuxer for LXF (Leitch/Harris' VR native stream format)Tomas Härdin2010-10-01
| | | | Originally committed as revision 25281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct tag is m2v1Baptiste Coudurier2010-09-30
| | | | Originally committed as revision 25271 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document url_filesize().Stefano Sabatini2010-09-30
| | | | Originally committed as revision 25268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make register_protocol() use the function av_register_protocol2()Stefano Sabatini2010-09-30
| | | | | | | | | rather than av_register_protocol(), which is deprecated. Fix the GCC warning: avio.c: In function ‘register_protocol’: avio.c:93: warning: ‘av_register_protocol’ is deprecated (declared at avio.c:86) Originally committed as revision 25267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate entriesBaptiste Coudurier2010-09-29
| | | | Originally committed as revision 25264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new apple fourcc for mpeg-1 and mpeg-2 in mov, works natively on osxBaptiste Coudurier2010-09-29
| | | | Originally committed as revision 25263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check return value of get_chunk_header(). Since enum can be unsigned, theRonald S. Bultje2010-09-29
| | | | | | | | current code wouldn't always error out on errors. Based on patch by Stephen d'Angelo <sdangelo evertz com>. Originally committed as revision 25260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, check that nb_streams is valid before using it in read_dac3Baptiste Coudurier2010-09-28
| | | | Originally committed as revision 25240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix index_entries pos:Michael Chinen2010-09-27
| | | | | | | | It was being set wrong for files with data_offset > 0 Patch by Michael Chinen, mchinen gmail Originally committed as revision 25239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpproto: Use a sockaddr_storage instead of a sockaddr_in with recvfromMartin Storsjö2010-09-27
| | | | Originally committed as revision 25224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegtsenc: IndentTomas Härdin2010-09-27
| | | | Originally committed as revision 25222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegtsenc: Write subtitle extradata if setTomas Härdin2010-09-27
| | | | Originally committed as revision 25221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVOptions from libavcodec to libavutilMichael Niedermayer2010-09-26
| | | | Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV3 decoder attempt to decode WMVP as wellKostya Shishkov2010-09-26
| | | | Originally committed as revision 25209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated CODEC_TYPE_AUDIO and CODEC_TYPE_VIDEO with theStefano Sabatini2010-09-25
| | | | | | corresponding AVMEDIA_TYPE_* symbols. Originally committed as revision 25201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an AVOption max_delay for AVFormatContext->max_delayMartin Storsjö2010-09-24
| | | | | | | | This can currently also be set via -muxdelay in ffmpeg for muxers, but not for demuxers (nor for demuxers in ffplay) - this patch allows it to be set in all those cases. Originally committed as revision 25180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after r25158.Carl Eugen Hoyos2010-09-23
| | | | Originally committed as revision 25160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix aspect ratio for files that have it stored inRichard Buteau2010-09-23
| | | | | | | | | ff_asf_extended_content_header. Fixes issue 690. Patch by Richard Buteau, rbuteau rgbnetworks com Originally committed as revision 25158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Place concat protocol entry in alphabetical order.Diego Biurrun2010-09-21
| | | | Originally committed as revision 25155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tcp: Check both wfds and efds when waiting for the result from connectMartin Storsjö2010-09-21
| | | | | | | | On windows, a connection failure doesn't trigger wfds as it does on unix. This fixes issue 2237, based on code by yeyingxian. Originally committed as revision 25154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the IPPROTO_IPV6 define before using itMartin Storsjö2010-09-20
| | | | | | | This fixes building on FreeBSD in some configurations, if the IPv6 multicast structs are available, but IPPROTO_IPV6 isn't defined. Originally committed as revision 25147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Handle standard assigned codec names for private payload types, tooMartin Storsjö2010-09-15
| | | | Originally committed as revision 25126 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle G.722 in RTP, and all the exceptions mandated in RFC 3551Martin Storsjö2010-09-15
| | | | Originally committed as revision 25125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify what av_read_frame() returns.Michael Niedermayer2010-09-14
| | | | Originally committed as revision 25123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add R10k decoder.Zhou Zongyi2010-09-13
| | | | | | | Original patch by Zhou Zongyi, zhouzy A os pku edu cn, resubmitted by James Darnley, james.darnley gmail, changes by me. Originally committed as revision 25115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read all id3v2 tags at the beginning of mp3 files.David Byron2010-09-11
| | | | | | Patch by David Byron, dbyron dbyron com Originally committed as revision 25105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FLV MetadataTomás Touceda2010-09-10
| | | | | | Patch by Tomás Touceda, chiiph gentoo org Originally committed as revision 25101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nutenc: fix unstable floating-point calculationsMåns Rullgård2010-09-10
| | | | Originally committed as revision 25095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adts demuxer: Set the time base to be the LCM of all ADTS sample rates.Alex Converse2010-09-09
| | | | Originally committed as revision 25091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a muxer and demuxer for raw G.722Martin Storsjö2010-09-09
| | | | Originally committed as revision 25087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, write reduced sample aspect ratio values in paspBaptiste Coudurier2010-09-08
| | | | Originally committed as revision 25082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check dref size based on a patch by googleBaptiste Coudurier2010-09-08
| | | | Originally committed as revision 25081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, do not override aspect ratio in tkhd by pasp like quicktime, ↵Baptiste Coudurier2010-09-08
| | | | | | fix issue #1539 Originally committed as revision 25080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix formatting for negative start times (issue 2139).Christian d'Heureuse2010-09-07
| | | | | | Patch by Christian d'Heureuse, chdh inventec ch Originally committed as revision 25063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read the number of channels from the 'dac3' tag for AC-3 in MP4.Justin Ruggles2010-09-06
| | | | Originally committed as revision 25054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a special function to mkv demxuer to parse length values that includesReimar Döffinger2010-09-06
| | | | | | special-case code to handle all possible encodings of "unknown length". Originally committed as revision 25049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move stream info arrays into a struct to ease future dynamic allocationAurelien Jacobs2010-09-05
| | | | Originally committed as revision 25045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: allow uint and float elements with length = 0Aurelien Jacobs2010-09-05
| | | | Originally committed as revision 25044 to svn://svn.ffmpeg.org/ffmpeg/trunk