aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/movenc.c
Commit message (Collapse)AuthorAgeFilesLines
...
* add a ff_ prefix to newly exported functions from avc.cAurelien Jacobs2008-01-111-2/+2
| | | | Originally committed as revision 11511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move isom_write_avcc() and related functions into a separate file.Aurelien Jacobs2008-01-111-113/+1
| | | | Originally committed as revision 11498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* extract isom_write_avcc into a functionAurelien Jacobs2008-01-111-12/+19
| | | | Originally committed as revision 11497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add one more parameter to avc_parse_nal_units so that it allows not toAurelien Jacobs2008-01-111-4/+4
| | | | | | | free the input buffer. This is required by upcoming extraction of isom_write_avcc to a function. Originally committed as revision 11496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check return value of avc_parse_nal_units().Aurelien Jacobs2008-01-111-2/+6
| | | | Originally committed as revision 11495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentationBaptiste Coudurier2007-12-201-1/+1
| | | | Originally committed as revision 11282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use generic 'glbl' atom if extradata is present but no specific method is knownBaptiste Coudurier2007-12-191-0/+12
| | | | Originally committed as revision 11272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix dnxhd 720p in mov for quicktime playerBaptiste Coudurier2007-12-031-1/+4
| | | | Originally committed as revision 11154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-211-11/+14
| | | | | | | 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
* Cosmetics: indentation.Benoit Fouet2007-10-241-18/+18
| | | | Originally committed as revision 10853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent mov muxer from writing empty udta atoms.Benoit Fouet2007-10-241-8/+20
| | | | Originally committed as revision 10852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont write udta atom for 3gp/3g2 for now, current written atoms (ilst) are ↵Baptiste Coudurier2007-10-161-1/+1
| | | | | | itunes specific Originally committed as revision 10757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentationBaptiste Coudurier2007-10-161-18/+18
| | | | Originally committed as revision 10756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DNxHD (SMPTE VC-3) encoderBaptiste Coudurier2007-10-081-0/+54
| | | | Originally committed as revision 10682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TypoRamiro Polla2007-09-111-1/+1
| | | | Originally committed as revision 10478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill harmless 64-bit pointer cast warningMåns Rullgård2007-07-081-1/+1
| | | | Originally committed as revision 9539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-121-1/+1
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-121-1/+1
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warn user if video codec timebase is very highBaptiste Coudurier2007-06-061-0/+5
| | | | Originally committed as revision 9232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typoAurelien Jacobs2007-05-301-1/+1
| | | | Originally committed as revision 9159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warn the user about the the mdhd problemMichael Niedermayer2007-05-301-0/+8
| | | | | | | (this is of course not a good solution but its better than silently generating invalid files, we should find a better solution) Originally committed as revision 9153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print and return error if output is non seekableBaptiste Coudurier2007-05-211-0/+5
| | | | Originally committed as revision 9087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmectics, use consistant and homogeneous type names for atomsBaptiste Coudurier2007-04-261-2/+2
| | | | Originally committed as revision 8828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmectics, mov -> mp4Baptiste Coudurier2007-03-241-1/+1
| | | | Originally committed as revision 8497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* treat frame_size > 1 as compressed audioBaptiste Coudurier2007-03-211-11/+5
| | | | Originally committed as revision 8461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix pcm u/s8 muxingBaptiste Coudurier2007-03-041-1/+5
| | | | Originally committed as revision 8213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* deobfuscate, clearly split mov caseBaptiste Coudurier2007-03-041-4/+9
| | | | Originally committed as revision 8212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use common tables for mov muxer and demuxerBaptiste Coudurier2007-03-031-35/+0
| | | | Originally committed as revision 8205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add codec_id <-> codec_tag tables to AVIn/OutputFormatMichael Niedermayer2007-01-211-2/+2
| | | | Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-191-2/+2
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless sampleDurationBaptiste Coudurier2006-12-111-3/+0
| | | | Originally committed as revision 7281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check codec frame size directly and only for audioBaptiste Coudurier2006-12-111-4/+4
| | | | Originally committed as revision 7280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* utf8 title support for psp (untested)Michael Niedermayer2006-11-081-15/+30
| | | | Originally committed as revision 6939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentation, patch by From: Steve Lhomme, slhomme divxcorp comSteve L'Homme2006-11-011-1/+1
| | | | Originally committed as revision 6864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyBaptiste Coudurier2006-11-011-10/+5
| | | | Originally committed as revision 6855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov vfr muxingBaptiste Coudurier2006-11-011-10/+50
| | | | Originally committed as revision 6854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-231-1/+1
| | | | 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-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move track timescale/sampleDuration init to write_header and return error if ↵Baptiste Coudurier2006-09-041-8/+8
| | | | | | not set Originally committed as revision 6167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wide atom is only defined in mov, use free for mp4/3gpBaptiste Coudurier2006-08-241-1/+1
| | | | Originally committed as revision 6072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set elst start time to first ptsBaptiste Coudurier2006-08-111-4/+1
| | | | Originally committed as revision 5981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use correct tag for h263 in movBaptiste Coudurier2006-08-071-2/+8
| | | | Originally committed as revision 5953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* detailed infos about d263 atomBaptiste Coudurier2006-08-071-2/+4
| | | | Originally committed as revision 5952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentionBaptiste Coudurier2006-08-071-8/+8
| | | | Originally committed as revision 5950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only set fields for mov, reserved for 3gp, mp4Baptiste Coudurier2006-08-071-1/+8
| | | | Originally committed as revision 5949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sampleSize field to 16, reserved for mp4 and 3gpBaptiste Coudurier2006-08-071-3/+2
| | | | Originally committed as revision 5948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mp4, 3gp field is reserved and value is 2Baptiste Coudurier2006-08-071-1/+1
| | | | Originally committed as revision 5947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ternaryBaptiste Coudurier2006-08-071-5/+1
| | | | Originally committed as revision 5946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vbr compression id is only used in movBaptiste Coudurier2006-08-071-7/+7
| | | | Originally committed as revision 5945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move common code from mov.c and movenc.c to isom.cBaptiste Coudurier2006-08-011-1/+1
| | | | Originally committed as revision 5882 to svn://svn.ffmpeg.org/ffmpeg/trunk