summaryrefslogtreecommitdiff
path: root/libavformat/gxfenc.c
Commit message (Collapse)AuthorAge
...
* use correct field number for video according to specs, patch by Thierry ↵Thierry Foucu2009-02-13
| | | | | | Foucu, tfoucu at gmail dot com Originally committed as revision 17214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, rename nb_frames to nb_fieldsBaptiste Coudurier2009-02-13
| | | | Originally committed as revision 17213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute b_per_i_or_p value correctly, patch by Thierry Foucu, tfoucu at ↵Thierry Foucu2009-02-12
| | | | | | gmail dot com Originally committed as revision 17166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename wrongly named b_per_gop to b_per_i_or_p according to specsBaptiste Coudurier2009-02-11
| | | | Originally committed as revision 17165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename ff_audio_interleave to ff_audio_rechunk_interleaveBaptiste Coudurier2009-02-09
| | | | Originally committed as revision 17103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new audio interleaving generic codeBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use st->priv_data to store per stream contextBaptiste Coudurier2009-01-31
| | | | Originally committed as revision 16904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* second try fixing time code in gxfBaptiste Coudurier2009-01-27
| | | | Originally committed as revision 16839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix endianness of time code, and calculate it in fields, according to specsBaptiste Coudurier2009-01-23
| | | | Originally committed as revision 16730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use avctx->frame_number which might not be set,Baptiste Coudurier2009-01-20
| | | | | | this also fixes a side effect where its value was one too much. Originally committed as revision 16701 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set correct value for starting lineBaptiste Coudurier2009-01-20
| | | | Originally committed as revision 16698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix gxf time code mark out valueBaptiste Coudurier2009-01-20
| | | | Originally committed as revision 16697 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
* Avoid _t in gxf enum type namesReimar Döffinger2008-12-13
| | | | Originally committed as revision 16112 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
* 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 av_fifo_generic_write, old func is deprecatedBaptiste Coudurier2008-05-27
| | | | Originally committed as revision 13455 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
* 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
* take care to use video track field number as durationBaptiste Coudurier2007-08-09
| | | | Originally committed as revision 10024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replaces hardcoded values by the equivalent enum definitionsAurelien Jacobs2007-07-26
| | | | Originally committed as revision 9801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Smartjog granted permission to relicense as LGPL 2.1Baptiste Coudurier2007-07-13
| | | | Originally committed as revision 9631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* round timestamps up, k2 broadcast server seems to need itBaptiste Coudurier2007-07-13
| | | | Originally committed as revision 9630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix dts adjustingBaptiste Coudurier2007-02-14
| | | | Originally committed as revision 7982 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix some more license headers.Diego Biurrun2007-01-22
| | | | Originally committed as revision 7637 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
* readjust dts if negativeBaptiste Coudurier2006-11-28
| | | | Originally committed as revision 7179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AVFormatContext to logBaptiste Coudurier2006-10-18
| | | | Originally committed as revision 6731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid overwriting pktBaptiste Coudurier2006-10-17
| | | | Originally committed as revision 6723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* quiet gcc about enum value not handled in switchBaptiste Coudurier2006-10-10
| | | | Originally committed as revision 6624 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
* * Moving FifoBuffer out of libavformat/avformat.h andRoman Shaposhnik2006-09-21
| | | | | | libavformat/utils.c into libavutil Originally committed as revision 6310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set correct first gop closed valueBaptiste Coudurier2006-08-21
| | | | Originally committed as revision 6043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename closed_gop to first_gop_closedBaptiste Coudurier2006-08-21
| | | | Originally committed as revision 6042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init bufferBaptiste Coudurier2006-08-21
| | | | Originally committed as revision 6040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use packet dts as correct media field number and use av_interleave_pkt_per_dtsBaptiste Coudurier2006-08-12
| | | | Originally committed as revision 5987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse mpeg frame to get pict type and closed gop flagBaptiste Coudurier2006-08-09
| | | | Originally committed as revision 5967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* negative to_pad won't provoke infinite loopBaptiste Coudurier2006-08-01
| | | | Originally committed as revision 5879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid reading beyond packet sizeBaptiste Coudurier2006-08-01
| | | | Originally committed as revision 5878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* GXF muxerBaptiste Coudurier2006-07-19
Originally committed as revision 5787 to svn://svn.ffmpeg.org/ffmpeg/trunk