OSDN Git Service

xmv: eliminate superfluous zeroing of zero data
[coroid/ffmpeg_saccubus.git] / libavformat / id3v2.c
2011-06-08 Anton KhirnovRemove all uses of now deprecated metadata functions.
2011-05-26 Alex Converseid3v2: Check malloc result. ID3v2 tags can be very...
2011-05-26 Alex Converseid3v2: Initialize tflags for version 2.2.
2011-03-22 Anton Khirnovid3v2: skip broken tags with invalid size
2011-03-22 Anton Khirnovid3v2: don't explicitly skip padding
2011-03-21 Anton Khirnovid3v2: simplify error handling.
2011-03-21 Anton Khirnovid3v2: explicitly seek to the end of the tag after...
2011-03-19 Mans RullgardReplace FFmpeg with Libav in licence headers
2011-03-17 Anton Khirnovlavf: replace avio_seek(SEEK_CUR) with avio_skip where...
2011-03-15 Anton Khirnovid3v2: merge TYER/TDAT/TIME to date tag
2011-03-09 Anton Khirnovid3v2: fix typo in error message
2011-03-04 Anton Khirnovavio: add avio_tell macro as a replacement for url_ftell
2011-03-01 Anton Khirnovlavf: replace all uses of url_fskip with avio_seek
2011-03-01 Anton Khirnovavio: avio_ prefix for url_fseek
2011-02-21 Anton Khirnovavio: avio_ prefixes for get_* functions
2011-02-20 Anton Khirnovavio: move init_put_byte() to a new private header...
2011-02-20 Anton Khirnovavio: rename ByteIOContext to AVIOContext.
2011-01-22 Anton Khirnovid3v2: split tables for various ID3v2 versions
2011-01-21 Anton Khirnovid3v2: use an enum for encodings instead of magic numbers.
2011-01-20 Anton Khirnovid3v2: don't overwrite existing tags
2011-01-20 Anton Khirnovid3v2: convert metadata after all the tags were read
2011-01-20 Anton Khirnovid3v2: make ff_id3v2_parse static
2010-12-10 Anton Khirnovid3v2: skip data length indicator
2010-12-07 Anton Khirnovid3v2: skip encrypted/compressed frames
2010-12-07 Anton Khirnovid3v2: use a named constant instead of 0x02
2010-11-23 Anton Khirnovid3v2: add TDEN<->creation_time tag mapping
2010-10-16 Anton Khirnovadd ff_ prefix to metadata_conv()
2010-10-15 Anton KhirnovExport metadata in the generic format. Deprecate old...
2010-10-01 Reimar DöffingerFix indentation of ff_id3v2_read
2010-09-11 David ByronRead all id3v2 tags at the beginning of mp3 files.
2010-08-18 Alexander KojevnikovSupport unsynchronisation for id3v2 tags.
2010-07-28 Alexander KojevnikovSkip short padding in id3v2.
2010-06-11 Michael KarcherGeneralize ID3v2 functions to support ID3v2-like ID...
2010-04-25 Stefano SabatiniMark av_metadata_set() as deprecated, and use av_metada...
2010-04-22 Jai MenonFix off-by-1 error in the tag parsing code.
2010-02-01 Anton KhirnovAdd a list of generic tags and change demuxers to follo...
2009-12-13 Michael NiedermayerMore entries for ff_id3v2_metadata_conv from ffmbc.
2009-12-13 Michael Niedermayers/author/artist/ for ID3
2009-10-15 Jai MenonSkip padding bytes correctly in ID3 tags.
2009-10-05 Anton Khirnovid3v2: Export all text information frames with correct...
2009-10-05 Anton KhirnovMP3 muxer: Write all metadata.
2009-09-29 Anton KhirnovAdd id3v2 metadata conversion table and use it in mp3...
2009-09-23 Anton Khirnovid3v2: Add support for UTF-16 encoding.
2009-09-23 Anton Khirnovid3v2: Use 0 instead of '\0'.
2009-09-23 Anton Khirnovid3v2: check for enough space to write full UTF-8 chara...
2009-06-29 Michael Niedermayerindent
2009-06-29 Michael Niedermayerid3v2.4.0 uses syncsafe integers for sizes of frames.
2009-06-25 Michael NiedermayerFix id3v2.2 frame size parsing.
2009-06-25 Michael NiedermayerFix id3v2.3/4 tag size parsing.
2009-06-19 Patrick DehneMove id3v1/id3v2 handling code from mp3.c to id3v[12].c.
2009-06-11 Diego Biurruncosmetics: Prettyprint one more line to have columns...
2009-06-11 Diego Biurruncosmetics: Reformat to K&R and prettyprint newly create...
2009-06-11 Patrick DehneMove id3v2 parsing code from mp3.c to id3v2.h and id3v2.c.
2009-01-19 Alex ConverseFix probing of files with ID3v2 tags. Discussed at
2009-01-15 Alex ConverseFactorise id3v2 header parsing from mp3.c to be shared