summaryrefslogtreecommitdiff
path: root/libavformat/id3v2enc.c
Commit message (Collapse)AuthorAge
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* id3v2enc: add a function for writing attached pictures.Anton Khirnov2012-02-29
| | | | Unused so far.
* id3v2enc: fix writing frame sizes for ID3v2.3Anton Khirnov2012-02-29
| | | | | | | Frame sizes in ID3v2.3 are not synchsafe, they are simply 32be numbers. In practice this bug is not noticeable unless the frame size takes more than 7 bits (which is almost never for text frames).
* id3v2enc: split ff_id3v2_write().Anton Khirnov2012-02-29
| | | | | This will allow writing the tag in several steps, needed for writing attached pictures.
* id3v2enc: make id3v2_put_size take only an AVIOContext.Anton Khirnov2012-02-29
| | | | It has no need of full AVFormatContext.
* Move id3v2 tag writing to a separate file.Michael Karcher2011-10-23
Signed-off-by: Diego Biurrun <diego@biurrun.de>