Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-21id3v2: add support for non-text and GEOB type tag framesDavid Goldwich
This extends the ID3v2 parser to allow for reading of non-text (i.e. other than T***) meta tag frames providing a ff_id3v2_read_all() function. An additional data structure 'ID3v2ExtraMeta' is introduced for these tags since AVDictionary is string oriented and unsuitable for binary data. A parser for tag frames of type GEOB is implemented, which is needed to extract keyring information from encrypted OMA files. GEOB data is parsed into 'ID3v2ExtraMetaGEOB' data structures. The routine to decode characters from different encodings to UTF-8, formerly part of the read_ttag() function, is moved to its own function. Because some tag frames contain subparts of unknown length, the function is now also able to read until a null character is found. In addition, the function now takes care of allocating a buffer long enough to hold the decoded characters. Signed-off-by: David Goldwich <david.goldwich@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-22id3v2: split tables for various ID3v2 versionsAnton Khirnov
This is needed for upcoming ID3v2.3 muxing support. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-21id3v2: use an enum for encodings instead of magic numbers.Anton Khirnov
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-20id3v2: make ff_id3v2_parse staticAnton Khirnov
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-12-07id3v2: use a named constant instead of 0x02Anton Khirnov
Originally committed as revision 25902 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-02Fix Doxygen function parameter documentation syntax.Diego Biurrun
Originally committed as revision 23978 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-11Generalize ID3v2 functions to support ID3v2-like ID headers with aMichael Karcher
different magic in the header (mainly targeted to Sony's .oma/.aa3 format). Patch by Michael Karcher, ffmpeg A mkarcher dialup fu-berlin de Originally committed as revision 23583 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-17Remove extraneous const keywordMåns Rullgård
Originally committed as revision 20263 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-05MP3 muxer: Write all metadata.Anton Khirnov
Patch by Anton Khirnov <wyskas at gmail dot com> Originally committed as revision 20170 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-29Add id3v2 metadata conversion table and use it in mp3 muxer.Anton Khirnov
Patch by Anton Khirnov, wyskas gmail Originally committed as revision 20073 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-19Move id3v1/id3v2 handling code from mp3.c to id3v[12].c.Patrick Dehne
patch by Patrick Dehne, patrick mysonicweb com Originally committed as revision 19224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-11Move id3v2 parsing code from mp3.c to id3v2.h and id3v2.c.Patrick Dehne
patch by Patrick Dehne, patrick mysonicweb com Originally committed as revision 19155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-20Fix probing of files with ID3v2 tags. Discussed atAlex Converse
http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-January/059302.html Originally committed as revision 16688 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-15Factorise id3v2 header parsing from mp3.c to be sharedAlex Converse
Patch by Alex Converse ( alex converse gmail com ) Originally committed as revision 16615 to svn://svn.ffmpeg.org/ffmpeg/trunk