summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* 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
* Move INET6_ADDRSTRLEN to network.h, similar to other network-related fixupsRonald S. Bultje2010-09-03
| | | | | | | for broken OSes. This is included in rtsp.h, as opposed to os_support.h. Should fix OS/2 broken build on fate. Originally committed as revision 25035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Vorbis metadata writing. Patch by James Darnley <james.darnley gmail com>.James Darnley2010-09-03
| | | | | | Fixes issue 555. Originally committed as revision 25034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r25032.Ronald S. Bultje2010-09-03
| | | | Originally committed as revision 25033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send NAT punching messages to the address specified in the Transport:John Wimer2010-09-03
| | | | | | | | message, if available (RFC 2326, section 12.39), fixes issue 2212. Patch by John Wimer <john at god vtic net>. Originally committed as revision 25032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set frame_size in the amr demuxerMartin Storsjö2010-09-03
| | | | Originally committed as revision 25030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: 10l, try to update the correct rtp streamMartin Storsjö2010-09-03
| | | | | | | This fixes a bug from rev 22917. Now RTSP streams where the individual RTCP sender reports aren't sent at the same time actually are synced properly. Originally committed as revision 25029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize/simplify ebml_read_num.Reimar Döffinger2010-09-02
| | | | Originally committed as revision 25026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Reindent after r25023.Carl Eugen Hoyos2010-09-02
| | | | Originally committed as revision 25024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix crash when decoding DV in AVI introduced in r24579 (issue 2174).Andrew Wason2010-09-02
| | | | | | Patch by Andrew Wason, rectalogic rectalogic com Originally committed as revision 25023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: spaces between and after parenthesesBaptiste Coudurier2010-09-01
| | | | Originally committed as revision 25021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gxf muxer only accepts pal or ntsc resolutions currently, so fail if ↵Baptiste Coudurier2010-09-01
| | | | | | resolution is something else Originally committed as revision 25014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Solving memory leak and initialization problem with prev_pkt / pkt.Tobias Bindhammer2010-08-31
| | | | Originally committed as revision 25004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split raw.c into rawdec.c and rawenc.cAurelien Jacobs2010-08-30
| | | | Originally committed as revision 24997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move raw video demuxer to its own fileAurelien Jacobs2010-08-30
| | | | Originally committed as revision 24996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move pcm muxers to their own fileAurelien Jacobs2010-08-30
| | | | Originally committed as revision 24995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move pcm demuxers to their own fileAurelien Jacobs2010-08-30
| | | | Originally committed as revision 24993 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add WAWV fourcc, works on V-codecs/WAWV.aviBen Littler2010-08-30
| | | | Originally committed as revision 24991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify code by using the AV_NE() macroAurelien Jacobs2010-08-29
| | | | Originally committed as revision 24986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move null muxer to its own fileAurelien Jacobs2010-08-29
| | | | Originally committed as revision 24985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup includes which are not used anymore in raw.cAurelien Jacobs2010-08-29
| | | | Originally committed as revision 24984 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ac3/eac3 demuxer to its own fileAurelien Jacobs2010-08-29
| | | | Originally committed as revision 24983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move dnxhd demuxer to its own fileAurelien Jacobs2010-08-29
| | | | Originally committed as revision 24982 to svn://svn.ffmpeg.org/ffmpeg/trunk