summaryrefslogtreecommitdiff
path: root/libavformat/avienc.c
Commit message (Collapse)AuthorAge
* avienc : Avoid creating invalid AVI files when muxing subtitle streamsJai Menon2010-06-25
| | | | | | other than XSUB. Originally committed as revision 23766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set lavf identification string globally in av_write_header(), ratherAnton Khirnov2010-02-16
| | | | | | | | | than inside the muxers. Remove special handling of "encoder" tags from AVI and MP3 muxers. Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 21850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVI metadata conversion table.Anton Khirnov2010-02-06
| | | | | | Patch by Anton Khirnov (gmail{wyskas}). Originally committed as revision 21653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* strn muxing in avi support.Michael Niedermayer2010-02-05
| | | | | | untested as ffmpeg.c has no means to set AVStream metadata (patchwelcome) Originally committed as revision 21644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove last MAX_STREAMS from avienc.cMichael Niedermayer2010-01-28
| | | | Originally committed as revision 21500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce AVIStream struct and move stream based variables to it.Michael Niedermayer2010-01-28
| | | | | | This removes all but one MAX_STREAM from avienc.c. Originally committed as revision 21498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefixes to exported symbols in libavformat/riff.h.Daniel Verkamp2009-06-22
| | | | | | patch by Daniel Verkamp, aniel drv nu Originally committed as revision 19254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for muxing XSUB subtitles to AVI muxer.Reimar Döffinger2009-06-19
| | | | Originally committed as revision 19223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_freep() instead of av_free() + =NULL.Aurelien Jacobs2009-04-07
| | | | Originally committed as revision 18349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVFMT_VARIABLE_FPS to specify which muxers do not need duplicated frames.Michael Niedermayer2009-02-24
| | | | Originally committed as revision 17554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless #if around the file, it is already conditionally compiled.Diego Biurrun2009-02-13
| | | | Originally committed as revision 17208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace AV_METADATA_IGNORE_CASE flag by a new AV_METADATA_MATCH_CASE flagAurelien Jacobs2009-01-18
| | | | | | with the opposed meaning Originally committed as revision 16680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename AVMetaData to AVMetadata and meta_data to metadataAurelien Jacobs2009-01-04
| | | | Originally committed as revision 16430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generic metadata API.Michael Niedermayer2009-01-04
| | | | | | | | avi is updated as example. No version bump, the API still might change slightly ... No update to ffmpeg.c as requested by aurel. Originally committed as revision 16424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove offset_t typedef and use int64_t directly instead.Diego Biurrun2008-10-03
| | | | | | | The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an invalid free in the AVI muxer when an unsupported audio track is added.Laurent Aimar2008-09-02
| | | | | | patch by Laurent Aimar, fenrir via.ecp fr Originally committed as revision 15159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change codec_tag type from const struct AVCodecTag ** to const struct ↵Reimar Döffinger2008-08-24
| | | | | | AVCodecTag * const * Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert every muxer/demuxer to write/read sample_aspect_ratio from/toAurelien Jacobs2008-08-23
| | | | | | the corresponding AVStream instead of AVCodecContext Originally committed as revision 14933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix aspect ratio.Michael Niedermayer2008-03-27
| | | | | | | fixes issue404 avienc.c change by StevieS Originally committed as revision 12601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store aspect ratio in avis.Michael Niedermayer2008-03-02
| | | | Originally committed as revision 12290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant codec_get_bmp_tag() call in avi_write_header()Måns Rullgård2007-07-08
| | | | | | it is incorrect and av_write_header() already does the right thing Originally committed as revision 9527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of the [4] limitation of codec tag listsMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add codec_id <-> codec_tag tables to AVIn/OutputFormatMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indention (dunno why it was messed up ...)Michael Niedermayer2007-01-20
| | | | Originally committed as revision 7592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use the standard INT64_C() macro for 64-bit constantsMåns Rullgård2006-12-06
| | | | Originally committed as revision 7240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme2006-11-01
| | | | | | patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-23
| | | | Originally committed as revision 6774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some signedness warningsMåns Rullgård2006-09-27
| | | | Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to store the the track number though the IPRT (part) tag in AVI.Panagiotis Issaris2006-09-07
| | | | | | | | | Patch by Panagiotis Issaris % takis P issaris A uhasselt P be% Original thread: Date: Sep 6, 2006 6:00 PM Subject: [Ffmpeg-devel] [PATCH] Enable track tag in AVI Originally committed as revision 6189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix ODML AVI Duration for files > 2GBBrian Brice2006-08-24
| | | | | | | | | Patch by Brian Brice % bbrice A newtek P com % Original thread: Date: Aug 22, 2006 10:21 PM Subject: [Ffmpeg-devel] [PATCH] ODML AVI Duration Originally committed as revision 6063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVI tag reading and writing patch by David Conrad.David Conrad2006-08-18
| | | | | | umovimus at gmail dot com Originally committed as revision 6022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move common stuff from avienc.c and wav.c to new file riff.cMåns Rullgård2006-07-12
| | | | Originally committed as revision 5720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-10
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-09
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flash Screen Video decoder (fourcc:FSV1)Benjamin Larsson2006-06-01
| | | | Originally committed as revision 5436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MPEG FourCC for MPEG-2 video.Diego Biurrun2006-05-17
| | | | Originally committed as revision 5391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* KMVC (used in Worms games) decoder. Works fine with samples from MPHQKostya Shishkov2006-04-07
| | | | Originally committed as revision 5273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing total_framesMichael Niedermayer2006-03-02
| | | | Originally committed as revision 5101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentionMichael Niedermayer2006-03-02
| | | | Originally committed as revision 5100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set 'MJLS' FOURCC for JPEG-LS in AVI and documentation fix. Patch byBenjamin Larsson2006-03-01
| | | | | | kostya shishkov - gmail - com. Originally committed as revision 5082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace if by assert as it should never by trueMichael Niedermayer2006-03-01
| | | | Originally committed as revision 5080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for CODEC_ID_NONE instead 0, tobe compatible with movenc.c and ↵Alex Beregszaszi2006-02-21
| | | | | | possible CODEC_ID_NONE value change Originally committed as revision 5043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RMP4 ("xvid fork") decoding supportMichael Niedermayer2006-02-19
| | | | Originally committed as revision 5035 to svn://svn.ffmpeg.org/ffmpeg/trunk