| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix ID3v1 tags in mp3 files | James Darnley | 2010-07-11 | 1 | -6/+7 |
* | Generalize ID3v2 functions to support ID3v2-like ID headers with a | Michael Karcher | 2010-06-11 | 1 | -2/+2 |
* | Set AVFMT_NOTIMESTAMPS flag for mp3 muxer | Baptiste Coudurier | 2010-04-20 | 1 | -0/+1 |
* | Define AVMediaType enum, and use it instead of enum CodecType, which | Stefano Sabatini | 2010-03-30 | 1 | -1/+1 |
* | Many mp3s seem to contain padding after id3 tags that is not considered in the | Michael Niedermayer | 2010-02-28 | 1 | -1/+3 |
* | Set lavf identification string globally in av_write_header(), rather | Anton Khirnov | 2010-02-16 | 1 | -6/+1 |
* | mp3: ftell() file offset for VBR tags before ID3v1 parser messes it up. | Andreas Öman | 2010-02-10 | 1 | -1/+2 |
* | Add a list of generic tags and change demuxers to follow it. | Anton Khirnov | 2010-02-01 | 1 | -1/+1 |
* | set mp3 timebase to the lcm of all mp3 sample rates to fix frame duration | Baptiste Coudurier | 2009-11-22 | 1 | -0/+3 |
* | Move function that is only used by the MP3 muxer below the corresponding #if. | Diego Biurrun | 2009-10-19 | 1 | -35/+36 |
* | Add '#include "libavutil/intreadwrite.h"', necessary for AV_RB32. | Diego Biurrun | 2009-10-19 | 1 | -0/+1 |
* | Only read ID3v1 tag if ID3v2 isn't present or is empty. | Anton Khirnov | 2009-10-05 | 1 | -1/+2 |
* | id3v2: Export all text information frames with correct names. | Anton Khirnov | 2009-10-05 | 1 | -0/+1 |
* | MP3 muxer: Write all metadata. | Anton Khirnov | 2009-10-05 | 1 | -34/+46 |
* | Sync AC3 probe values with MP3 probe values, they have to avoid similar issues. | Reimar Döffinger | 2009-09-29 | 1 | -0/+2 |
* | Add id3v2 metadata conversion table and use it in mp3 muxer. | Anton Khirnov | 2009-09-29 | 1 | -0/+1 |
* | Place MP3 demuxer code under appropriate #ifdefs. | Diego Biurrun | 2009-09-22 | 1 | -14/+17 |
* | 10l: set genre default immediately before reading genre tag | Justin Ruggles | 2009-09-15 | 1 | -1/+1 |
* | Set ID3v1 genre to 0xFF (unknown) by default instead of 0 (Blues). | Justin Ruggles | 2009-09-15 | 1 | -0/+1 |
* | Slighty tweak mp3 probe threshold to prevent probetest from complaining. | Michael Niedermayer | 2009-09-14 | 1 | -1/+1 |
* | Move id3v1/id3v2 handling code from mp3.c to id3v[12].c. | Patrick Dehne | 2009-06-19 | 1 | -76/+2 |
* | Move id3v2 parsing code from mp3.c to id3v2.h and id3v2.c. | Patrick Dehne | 2009-06-11 | 1 | -287/+4 |
* | Require 4 instead of 3 frames for detecting mp3, | Michael Niedermayer | 2009-04-22 | 1 | -1/+2 |
* | handle id3v2 'genre' tag formated as '%d' | Aurelien Jacobs | 2009-03-22 | 1 | -1/+2 |
* | Change a bunch of codec long_names to be more consistent and descriptive. | Diego Biurrun | 2009-03-02 | 1 | -1/+1 |
* | Make the MP3 probe weakly claim all files with ID3v2 tags to fix regressions on | Alex Converse | 2009-02-05 | 1 | -0/+1 |
* | cosmetics: indentation | Aurelien Jacobs | 2009-02-02 | 1 | -1/+1 |
* | simplify usage of dstlen as it is not a parameter anymore | Aurelien Jacobs | 2009-02-02 | 1 | -3/+1 |
* | cosmetics: indentation | Aurelien Jacobs | 2009-02-02 | 1 | -6/+6 |
* | use new metadata API in the mp3 muxer | Aurelien Jacobs | 2009-02-02 | 1 | -40/+50 |
* | use new metadata API in the mp3 demuxer | Aurelien Jacobs | 2009-02-02 | 1 | -23/+33 |
* | don't support the mp3 extension in the mp2 muxer | Aurelien Jacobs | 2009-02-01 | 1 | -4/+0 |
* | Avoid allocating MPADecodeContext on stack. | Andreas Öman | 2009-01-23 | 1 | -1/+1 |
* | Fix a read past end of buffer crash in the mp3 probe | Alex Converse | 2009-01-20 | 1 | -1/+1 |
* | Fix probing of files with ID3v2 tags. Discussed at | Alex Converse | 2009-01-19 | 1 | -5/+7 |
* | cosmetics: Remove pointless period after copyright statement non-sentences. | Diego Biurrun | 2009-01-19 | 1 | -1/+1 |
* | Factorise id3v2 header parsing from mp3.c to be shared | Alex Converse | 2009-01-15 | 1 | -17/+3 |
* | Change semantic of CONFIG_*, HAVE_* and ARCH_*. | Aurelien Jacobs | 2009-01-13 | 1 | -6/+6 |
* | If we find a VBR tag at the beginning of the file don't attempt to | Yoav Steinberg | 2009-01-04 | 1 | -7/+13 |
* | Change mpeg audio parser so it only sets frame_size, channels and bit_rate | Michael Niedermayer | 2008-12-21 | 1 | -1/+1 |
* | Remove offset_t typedef and use int64_t directly instead. | Diego Biurrun | 2008-10-03 | 1 | -4/+4 |
* | Replace generic CONFIG_MUXERS preprocessor conditionals by more specific | Diego Biurrun | 2008-09-02 | 1 | -2/+2 |
* | Make the id3v1_genre_str array const, not just the strings it points to. | Reimar Döffinger | 2008-08-24 | 1 | -1/+1 |
* | strcasecmp() requires #include <strings.h> | Aurelien Jacobs | 2008-08-13 | 1 | -0/+1 |
* | Move one function that is only used for muxing below #ifdef CONFIG_MUXERS. | Diego Biurrun | 2008-07-11 | 1 | -31/+31 |
* | All mp3 parsers are buggy fix 2 of n (out of array write, i suspect not explo... | Michael Niedermayer | 2008-07-04 | 1 | -1/+1 |
* | All id3 parsers are buggy, 0 termination fix 1 of n (issue created by andreas | Michael Niedermayer | 2008-07-04 | 1 | -0/+2 |
* | remove useless close funcs | Baptiste Coudurier | 2008-06-19 | 1 | -6/+0 |
* | Make long_names in lavf/lavdev optional depending on CONFIG_SMALL. | Stefano Sabatini | 2008-06-03 | 1 | -3/+3 |
* | Replace some occurrences of 0 with CODEC_ID_NONE. | Carl Eugen Hoyos | 2008-05-12 | 1 | -2/+2 |