summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
Commit message (Collapse)AuthorAge
* movenc: fix yuv range in avid atoms used by dnxhd.Baptiste Coudurier2011-05-12
| | | | | | yuv range: full 1 / normal 2 Signed-off-by: Anton Khirnov <anton@khirnov.net>
* movenc: fix adpcm mono muxing.Alex Converse2011-05-12
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Replace strncpy() with av_strlcpy().Alex Converse2011-05-03
|
* avio: avio_ prefix for url_close_dyn_bufAnton Khirnov2011-04-03
|
* avio: avio_ prefix for url_open_dyn_bufAnton Khirnov2011-04-03
|
* avio: introduce an AVIOContext.seekable fieldAnton Khirnov2011-04-03
| | | | Use it instead of url_is_streamed and AVIOContext.is_streamed.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avio: rename put_flush_packet -> avio_flushAnton Khirnov2011-03-16
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov2011-03-04
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* movenc: use correct tag for dvcpro hdBaptiste Coudurier2011-03-02
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* movenc: fix tkhd height for imxBaptiste Coudurier2011-03-01
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avio: avio_ prefix for url_fseekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* movenc: remove uses of deprecated API.Ronald S. Bultje2011-02-25
| | | | Replace put_tag() with ffio_wfourcc() and ByteIOContext with AVIOContext.
* store pasp atom for all types of quicktime movieMaksym Veremeyenko2011-02-25
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* reindent after tapt patchMaksym Veremeyenko2011-02-25
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* use tapt atom for sample aspect ratioMaksym Veremeyenko2011-02-25
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* lavf: use a new ffio_wfourcc macro instead of put_tag() where possibleAnton Khirnov2011-02-25
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio: avio_ prefixes for put_* functionsAnton Khirnov2011-02-21
| | | | | | | | | | | | In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* movenc: Force first sample as SYNCTakashi Mochizuki2011-02-13
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* movenc: byteswap codec_tag in mov_write_ms_tagJanne Grunau2011-01-28
| | | | based on Alex Converse's "Fix ADPCM MS in mov muxing" patch
* In mov muxer, mux adpcm_ms and adpcm_ima_wav the way quicktime supports itBaptiste Coudurier2011-01-28
| | | | | | In mov demuxer, set adpcm_ms and adpcm_ima_wav frame size to stsd samples per packet. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
* In mov muxer, override codec tag for dv in mov, fix remuxing from aviBaptiste Coudurier2011-01-07
| | | | Originally committed as revision 26257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, override codec tag for h263 in mov, fix remuxing from 3gpBaptiste Coudurier2011-01-07
| | | | Originally committed as revision 26255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unset variable fps for mov and mp4 muxer, they support itBaptiste Coudurier2010-11-23
| | | | | | | but timestamps must start at 0 currently, and this causes sync problem. Originally committed as revision 25805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, write artist metadata tagBaptiste Coudurier2010-10-15
| | | | Originally committed as revision 25498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, use correct metadata tag for encoder, and use the generic ↵Baptiste Coudurier2010-10-15
| | | | | | metadata api name Originally committed as revision 25497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, write reduced sample aspect ratio values in paspBaptiste Coudurier2010-09-08
| | | | Originally committed as revision 25082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Properly handle IPv6 addresses in the SDP generationMartin Storsjö2010-08-25
| | | | Originally committed as revision 24915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: Free the buffer returned by url_close_dyn_buffer, regardless of the sizeMartin Storsjö2010-07-20
| | | | | | | This fixes a leak introduced in rev 23942, since we write padding to the buffer unconditionally. Originally committed as revision 24342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov muxer, write pixel aspect ratio tag in mov files.Baptiste Coudurier2010-07-08
| | | | | | Based on a patch by Daniel Kristjansson, danielk at cuymedia dot net Originally committed as revision 24124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support gray16be and rgb48be in movBaptiste Coudurier2010-06-15
| | | | Originally committed as revision 23608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix raw 555 pixel format, add abgr fourccBaptiste Coudurier2010-06-04
| | | | Originally committed as revision 23479 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
* 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
* movenc: Write QuickTime chaptersDavid Conrad2010-05-05
| | | | Originally committed as revision 23022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: Swap positions of mov_write_header and mov_write_packetDavid Conrad2010-05-05
| | | | Originally committed as revision 23021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: Write nero chaptersDavid Conrad2010-04-21
| | | | Originally committed as revision 22927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Predicting the size of the hdlr, string data and trkn tags in the MOV muxerTomas Härdin2010-04-12
| | | | Originally committed as revision 22846 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
* Fix encoder metadata string langcode in mov muxerBaptiste Coudurier2010-03-09
| | | | Originally committed as revision 22369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly mark mov metadata as utf-8, using iso language codeBaptiste Coudurier2010-03-09
| | | | Originally committed as revision 22368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a list of generic tags and change demuxers to follow it.Anton Khirnov2010-02-01
| | | | | | Patch by Anton Khirnov, wyskas at gmail dot com Originally committed as revision 21587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_match_ext() rather than the deprecated match_ext(), fixStefano Sabatini2010-01-17
| | | | | | warnings. Originally committed as revision 21263 to svn://svn.ffmpeg.org/ffmpeg/trunk