summaryrefslogtreecommitdiff
path: root/libavformat/matroskaenc.c
Commit message (Collapse)AuthorAge
* matroskaenc: Add support for writing chapters.Anton Khirnov2009-10-18
| | | | | | patch by Anton Khirnov wyskas _at_ gmail _dot_ com Originally committed as revision 20277 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
* Share the function to write a raw FLAC header and use it in the MatroskaJustin Ruggles2009-02-26
| | | | | | muxer. Originally committed as revision 17606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a shared function to validate FLAC extradata.Justin Ruggles2009-02-26
| | | | Originally committed as revision 17602 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
* matroskaenc: use new metadata APIAurelien Jacobs2009-02-15
| | | | Originally committed as revision 17336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: correctly handle h264 streams with 3 bytes nal startcodesAurelien Jacobs2009-01-20
| | | | | | | | This implies using ff_avc_parse_nal_units_buf instead of ff_avc_parse_nal_units because with 3 bytes startcodes the parsed packet size will change, and the size must be written before the packet content. Originally committed as revision 16690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentDavid Conrad2009-01-17
| | | | Originally committed as revision 16652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Treat disposition==0 as undefined and don't write the default flagDavid Conrad2009-01-17
| | | | Originally committed as revision 16651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flush the buffer after writing the header and when done with writing the filesDavid Conrad2009-01-17
| | | | | | Fixes writing small (~4kb) files. Originally committed as revision 16650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitLuca Abeni2009-01-15
| | | | Originally committed as revision 16617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not reallocate AVPacket's data when muxing a packetLuca Abeni2009-01-15
| | | | Originally committed as revision 16616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: require global headerAurelien Jacobs2008-10-22
| | | | | | fixes issue696 Originally committed as revision 15667 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: correct muxing of ASS packetsAurelien Jacobs2008-10-04
| | | | | | | | - split packets to store one ASS event line per Matroska block - reformat ASS events to Matroska modified format - extract display duration for ASS events to store as Matroska block duration Originally committed as revision 15561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: use correct EBML ID for block durationAurelien Jacobs2008-10-04
| | | | Originally committed as revision 15560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: pass the packet size directly as parameter of mkv_blockgroup_size()Aurelien Jacobs2008-10-04
| | | | Originally committed as revision 15559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: remove useless mkv_block_size() functionAurelien Jacobs2008-10-04
| | | | Originally committed as revision 15558 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
* matroska: subtitle display duration must be stored in pkt->convergence_durationAurelien Jacobs2008-09-04
| | | | Originally committed as revision 15206 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
* misc spelling/grammar fixesDiego Biurrun2008-08-05
| | | | Originally committed as revision 14616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: expand useless define for MS compat codec id stringsAurelien Jacobs2008-08-05
| | | | Originally committed as revision 14607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: add support for V_QUICKTIME track typeAurelien Jacobs2008-07-27
| | | | Originally committed as revision 14429 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
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix encoding of flac private dataJustin Ruggles2008-05-01
| | | | Originally committed as revision 13030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use common aac sample rate tablesAurelien Jacobs2008-04-02
| | | | Originally committed as revision 12671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'disposition' bitfield to AVStream and use it for both muxing and demuxingEvgeniy Stepanov2008-03-07
| | | | | | of matroska and nut. Originally committed as revision 12358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplification proposed by RichAurelien Jacobs2008-03-01
| | | | Originally committed as revision 12280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* makes really sure that no undefined behavior can happenAurelien Jacobs2008-02-27
| | | | Originally committed as revision 12258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid infinite loop.Aurelien Jacobs2008-02-26
| | | | | | uint64_t >> 64 is an undefined operation Originally committed as revision 12253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Write 0 instead of seeking forward (and leaving bytes uninitalized),Michael Niedermayer2008-01-12
| | | | | | fixes odd regression test failure i had. Originally committed as revision 11512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a ff_ prefix to newly exported functions from avc.cAurelien Jacobs2008-01-11
| | | | Originally committed as revision 11511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Matroska muxer needs to format all NAL units, not only extradata.Aurelien Jacobs2008-01-11
| | | | Originally committed as revision 11510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the isom avcc formatting for h264 extradata in matroska.Aurelien Jacobs2008-01-11
| | | | Originally committed as revision 11499 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
* spelling/wording nits in some Doxygen commentsDiego Biurrun2007-09-05
| | | | Originally committed as revision 10417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Grammar nitsDavid Conrad2007-09-05
| | | | Originally committed as revision 10388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Always use AVFormatContext for av_log messagesDavid Conrad2007-09-05
| | | | Originally committed as revision 10387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ebml size functions to indicate that they can be used for more kinds ↵David Conrad2007-09-05
| | | | | | of numbers Originally committed as revision 10386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* We shouldn't be passing in sizes larger than 2^56-2, so use an assertDavid Conrad2007-09-05
| | | | Originally committed as revision 10385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentationDavid Conrad2007-09-05
| | | | Originally committed as revision 10384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't seek when streamedDavid Conrad2007-09-05
| | | | Originally committed as revision 10383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of useless bracesDavid Conrad2007-09-05
| | | | Originally committed as revision 10382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentDavid Conrad2007-09-05
| | | | Originally committed as revision 10381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Match the behaviour betwen the bmp and wav codec tag lookupsDavid Conrad2007-09-05
| | | | Originally committed as revision 10380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Write codecprivate to a dynamic buffer so that seeking isn't requiredDavid Conrad2007-09-05
| | | | Originally committed as revision 10379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move writing codec private element to its own functionDavid Conrad2007-09-05
| | | | Originally committed as revision 10378 to svn://svn.ffmpeg.org/ffmpeg/trunk