summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
* MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.Zhentan Feng2010-05-24
| | | | Originally committed as revision 23301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing codec id <-> codec tag entries:Stefano Sabatini2010-05-24
| | | | | | | | | | | | CODEC_ID_RAWVIDEO <-> Y41B CODEC_ID_RAWVIDEO <-> Y42B CODEC_ID_RAWVIDEO <-> YUV9 CODEC_ID_RAWVIDEO <-> YVU9 These codec tags are listed in fourcc.org, and are already listed in libavcodec/raw.c:ff_raw_pix_fmt_tags as AVI tags. Originally committed as revision 23296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -f framemd5 muxer similar to framecrc.Reimar Döffinger2010-05-24
| | | | Originally committed as revision 23289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Display a more descriptive log message when probe buffer limit isJai Menon2010-05-24
| | | | | | reached. Originally committed as revision 23288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip pes payload during probing to avoid start code emulation.Janne Grunau2010-05-24
| | | | | | Patch by Janne Grunau, janne-ffmpeg jannau net Originally committed as revision 23286 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Write codec time base as default duration for video tracks.David Conrad2010-05-24
| | | | | | | | This isn't exactly semantically equivalent, but the field has already been long abused to mean this, and writing it helps in determining a decent cfr time base when transcoding from a mkv where the video codec stores none (VP8). Originally committed as revision 23284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable AVFMT_GENERIC_INDEX for Ogg demuxer. This avoids the manyReimar Döffinger2010-05-23
| | | | | | | seeks needed for binary search when seeking to a previously seen location. Originally committed as revision 23279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Revert adding the doctype to metadata; it has no meaning elsewhereDavid Conrad2010-05-23
| | | | Originally committed as revision 23275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce the score for the aea demuxer probing function.Benjamin Larsson2010-05-23
| | | | Originally committed as revision 23273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix detection of some stereo atrac files by not comparing theBenjamin Larsson2010-05-23
| | | | | | block size mode and info byte. Originally committed as revision 23272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oups, 100l, revert unrelated hunk from commit r23266Baptiste Coudurier2010-05-23
| | | | Originally committed as revision 23269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write 3gp perf tag for artist metadataBaptiste Coudurier2010-05-23
| | | | Originally committed as revision 23268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* albm 3gp tag has optional track field not dateBaptiste Coudurier2010-05-23
| | | | Originally committed as revision 23267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change author metadata to artist in mov de/muxerBaptiste Coudurier2010-05-23
| | | | Originally committed as revision 23266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the nut decoder read the ff_nut_video_tags to detect codec id ofStefano Sabatini2010-05-23
| | | | | | | | | the input file. This is required as Nut codec tags are not contained in ff_codec_bmp_tags. Originally committed as revision 23260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define ff_nut_video_tags and make Nut muxer and demuxer set it inStefano Sabatini2010-05-23
| | | | | | codec_tag. Originally committed as revision 23259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a md5 muxer that allows checking the md5 sums of generated streams withoutReimar Döffinger2010-05-23
| | | | | | needing an external MD5 command. Originally committed as revision 23257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö2010-05-23
| | | | | | | Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_write_header() return AVERROR(EINVAL) rather than -1 if theStefano Sabatini2010-05-22
| | | | | | input parameters are not valid. Originally committed as revision 23253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store in a dedicated array the format name - codec id - codec typeStefano Sabatini2010-05-22
| | | | | | mapping. Simplify. Originally committed as revision 23252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVCodecTag from riff.h into internal.h.Francesco Lavra2010-05-22
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 23250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer enum CodecID over int in ff_codec_get_tag().Stefano Sabatini2010-05-22
| | | | Originally committed as revision 23249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Don't write track timecode scaleDavid Conrad2010-05-22
| | | | | | It's not required for mkv and unsupported in webm Originally committed as revision 23247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Allow unknown EBML doctypeDavid Conrad2010-05-22
| | | | Originally committed as revision 23246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Support webm doctypeJames Zern2010-05-22
| | | | | | Patch by James Zern <jzern at google> Originally committed as revision 23245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused fieldBaptiste Coudurier2010-05-21
| | | | Originally committed as revision 23232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ogg muxer, pack multiple frames into one page, much lower overheadBaptiste Coudurier2010-05-21
| | | | Originally committed as revision 23231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the default codecs for the rtsp muxer to mpeg4 and aacMartin Storsjö2010-05-21
| | | | | | These codecs in RTP are supported by many players. Originally committed as revision 23209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take ff_write_chained in use in the mov rtp hinter and in the rtsp muxerMartin Storsjö2010-05-21
| | | | Originally committed as revision 23208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a libavformat internal function ff_write_chainedMartin Storsjö2010-05-21
| | | | Originally committed as revision 23207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable non interleaved avi code when there is no index available.Michael Niedermayer2010-05-20
| | | | | | Fixes issue1956. Originally committed as revision 23202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VP80 fourccGoogle2010-05-19
| | | | | | Patch by Google Originally committed as revision 23193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: Add V_VP8Google2010-05-19
| | | | | | Patch by Google Originally committed as revision 23192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a crash when opening WMS RTSP streamsMartin Storsjö2010-05-19
| | | | | | Fixes issue 1948 Originally committed as revision 23181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Late bump of the minor version, for the addition of AVFMT_FLAG_RTP_HINTMartin Storsjö2010-05-19
| | | | Originally committed as revision 23179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Free ebml binary buffer on errorDavid Conrad2010-05-18
| | | | | | Based on a Chromium patch Originally committed as revision 23169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Fix buffer overread in matroska_ebmlnum_uintDavid Conrad2010-05-18
| | | | | | Based on a Chromium patch Originally committed as revision 23168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Ensure time_scale is nonzero, fixes divide-by-zero if the fileDavid Conrad2010-05-18
| | | | | | | | has 0 written Based on a Chromium patch Originally committed as revision 23167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Use av_freep in ebml_read_asciiDavid Conrad2010-05-18
| | | | | | Based on a Chromium patch Originally committed as revision 23166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a heuristic for describing the RTP packets using sample dataMartin Storsjö2010-05-18
| | | | Originally committed as revision 23165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add initial support for RTP hinting in the mov muxerMartin Storsjö2010-05-18
| | | | Originally committed as revision 23164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mov_write_packet non-static, add ff_ prefixMartin Storsjö2010-05-18
| | | | Originally committed as revision 23163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the mov muxer structures to a separate headerMartin Storsjö2010-05-18
| | | | Originally committed as revision 23162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a flag for enabling RTP hintingMartin Storsjö2010-05-18
| | | | Originally committed as revision 23161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_sdp_write_media a lavf-internal functionMartin Storsjö2010-05-18
| | | | | | | This is in preparation for RTP hinting in the MOV muxer, where it needs to be able to create SDP fragments for each media stream. Originally committed as revision 23160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Validate AVCodecTag vs CodecID.Francesco Lavra2010-05-18
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 23159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize some code into the new function ff_toupper4().Francesco Lavra2010-05-18
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 23158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ts demuxer, output pes packet as soon as they are complete.Janne Grunau2010-05-18
| | | | | | | This is needed for subtitles where packets are infrequent. Patch by Janne Grunau, janne-ffmpeg at jannau dot net. Originally committed as revision 23157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set avg frame rate in mkv demuxerBaptiste Coudurier2010-05-17
| | | | Originally committed as revision 23152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add NV12 and NV21 AVI tags.Stefano Sabatini2010-05-16
| | | | | | Both are listed in fourcc.org. Originally committed as revision 23145 to svn://svn.ffmpeg.org/ffmpeg/trunk