summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* Fix playback of strange AVI files with stray LIST.Aurelien Jacobs2009-10-01
| | | | | | | sample: http://samples.mplayerhq.hu/avi/AV36_1.AVI fix suggested by Michael Originally committed as revision 20118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l in code reading codec_name, the first byte is the length and should notReimar Döffinger2009-09-30
| | | | | | become part of the string. Originally committed as revision 20102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return an error when the parsed mpc chunk size is negative, otherwise weReimar Döffinger2009-09-30
| | | | | | | might end up in an endless loop where the same chunk is parsed over and over. Fixes a hang near the end for http://samples.mplayerhq.hu/A-codecs/musepack/sv8/sv8-tags.mpc Originally committed as revision 20099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable parsing for ogg streams where no ogg header was found,Reimar Döffinger2009-09-30
| | | | | | | if no header was found the parser was not initialized and thus will crash when trying to use it. Originally committed as revision 20093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpegReimar Döffinger2009-09-30
| | | | | | must be valid UTF-8. Originally committed as revision 20092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sync AC3 probe values with MP3 probe values, they have to avoid similar issues.Reimar Döffinger2009-09-29
| | | | | | | This fixes ffmpeg-generated files with -acodec ac3 being detected as raw ac3 instead of MPEG. Originally committed as revision 20075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend DV autodetection to also reliably detect single-frame DVs withReimar Döffinger2009-09-29
| | | | | | | | | a higher score that MAX/4. It checks that there are at least 10 DIF headers and at least one per 24000 bytes, and if so considers the file reliably detected as DV. Passes probetest, too. Originally committed as revision 20074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add id3v2 metadata conversion table and use it in mp3 muxer.Anton Khirnov2009-09-29
| | | | | | Patch by Anton Khirnov, wyskas gmail Originally committed as revision 20073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, typoBaptiste Coudurier2009-09-26
| | | | Originally committed as revision 20033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export mov/mp4 major and compatible brands as metadata.haim alon2009-09-26
| | | | | | Patch by haim alon, haim dot alter at gmail dot com Originally committed as revision 20032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reading VDR files (broken since r19000).Carl Eugen Hoyos2009-09-24
| | | | Originally committed as revision 20017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix possible buffer over-read in vorbis_comment, fix it double to be sure.Reimar Döffinger2009-09-24
| | | | | | | | | First, make s signed, so that comparisons against end - p will not be made as unsigned, making the check incorrectly pass if p is beyond end. Also ensure that p will never be > end, so the code is correct also if buf is not padded. Originally committed as revision 20014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2: Add support for UTF-16 encoding.Anton Khirnov2009-09-23
| | | | | | patch by Anton Khirnov, wyskas gmail com Originally committed as revision 20006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2: Use 0 instead of '\0'.Anton Khirnov2009-09-23
| | | | | | patch by Anton Khirnov, wyskas gmail com Originally committed as revision 20005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2: check for enough space to write full UTF-8 characters.Anton Khirnov2009-09-23
| | | | | | patch by Anton Khirnov, wyskas gmail com Originally committed as revision 20004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly print number of remaining bytes in oggparsevorbis instead of alwaysReimar Döffinger2009-09-23
| | | | | | with inverted sign. Originally committed as revision 19978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hook up the MD studio demuxer and Atrac1 decoder.Benjamin Larsson2009-09-22
| | | | Originally committed as revision 19969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Place MP3 demuxer code under appropriate #ifdefs.Diego Biurrun2009-09-22
| | | | | | Fixes compilation with --disable-optimizations --disable-demuxers. Originally committed as revision 19964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rearrange wav_muxer and {wav|w64}_demuxer blocks to be under proper #ifdefs.Diego Biurrun2009-09-22
| | | | | | Fixes compilation with --disable-optimizations --disable-demuxers. Originally committed as revision 19961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move find_guid function and guid_data array to a globally available place.Diego Biurrun2009-09-22
| | | | | | Fixes compilation with --disable-optimizations --disable-demuxer=w64. Originally committed as revision 19959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include correct header to fix 'make checkheaders'.Diego Biurrun2009-09-18
| | | | | | AVCodecTag is declared in riff.h, not avformat.h. Originally committed as revision 19915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only use *ic_ptr when it has been initialized.Michael Niedermayer2009-09-18
| | | | Originally committed as revision 19911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unscrewup indentation (pointed out by Diego).Ronald S. Bultje2009-09-18
| | | | Originally committed as revision 19910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTSP basic authentication, patch originally by Philip CoombesRonald S. Bultje2009-09-17
| | | | | | | (philip coombes zoneminder com), see "[PATCH]RTSP Basic Authentication" thread on mailinglist. Originally committed as revision 19905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix pes overhead computation, patch by Niobos, niobos at dest-unreach dot beNiobos2009-09-17
| | | | Originally committed as revision 19902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print at debug level the score at which codec probing succedeedBaptiste Coudurier2009-09-17
| | | | Originally committed as revision 19899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve SIFF probe by also checking the first tag is one of the expected.Reimar Döffinger2009-09-17
| | | | Originally committed as revision 19898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve dxa probe by checking the values for width and height are reasonable.Reimar Döffinger2009-09-17
| | | | Originally committed as revision 19897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly improve probe for ea format by checking that it is possible toReimar Döffinger2009-09-17
| | | | | | guess whether the file is little- or big-endian. Originally committed as revision 19896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not include "mp4:" prefix from RTMP URL into "app" path or second timeLars Täuber2009-09-17
| | | | | | | | | into playpath. Patch by Lars Täuber (<$name> . <$lastname with umlaut replaced with diphtong> @ <gmx> . <net>) Originally committed as revision 19894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a warning if a format has been detected with a low score.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print at debug level the score with which probing succeeded.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention after last commit.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve amortized worst case speed of the muxers packet interleaving codeMichael Niedermayer2009-09-16
| | | | | | from O(packets_in_the_file) to O(num_of_streams). Originally committed as revision 19887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindent after last commit and remove unneeded empty lineKostya Shishkov2009-09-16
| | | | Originally committed as revision 19885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MPC SV8 probe skip tags until stream header is foundKostya Shishkov2009-09-16
| | | | Originally committed as revision 19884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix overflow check insufficiently improved in r19840.Reimar Döffinger2009-09-16
| | | | | | | It assumes that sizeof(vmd_frame) < 64k, otherwise an additional check to ensure sound_buffers <= UINT_MAX / sizeof(vmd_frame) would be necessary. Originally committed as revision 19882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Core Audio Format demuxerPeter Ross2009-09-16
| | | | Originally committed as revision 19879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mov LPCM and AAC parsing functions publicPeter Ross2009-09-16
| | | | Originally committed as revision 19878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enhance Musepack SV8 probing codeKostya Shishkov2009-09-16
| | | | Originally committed as revision 19874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flv should be AVFMT_VARIABLE_FPS.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Upgrade a few important messages to AV_LOG_WARNING.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention after previous commit.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make packet interleaving in the muxer not scan through the wholeMichael Niedermayer2009-09-16
| | | | | | | | buffer when simply appending at the end works. Much faster if one stream ends prematurely. Fixes issue1379. Originally committed as revision 19870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also reset *_end in flush_packet_queue().Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: set genre default immediately before reading genre tagJustin Ruggles2009-09-15
| | | | Originally committed as revision 19867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set ID3v1 genre to 0xFF (unknown) by default instead of 0 (Blues).Justin Ruggles2009-09-15
| | | | Originally committed as revision 19866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not set 0 FPS in VC-1 test stream format demuxer.Kostya Shishkov2009-09-15
| | | | Originally committed as revision 19863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for explicit 32-bit FPS value so it works on 64-bit systems tooKostya Shishkov2009-09-15
| | | | Originally committed as revision 19861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make probing for VC1 test bitstream format stricterKostya Shishkov2009-09-15
| | | | Originally committed as revision 19860 to svn://svn.ffmpeg.org/ffmpeg/trunk