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-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-31asf/wtv: use service_provider and service_name metadata tagsRonald S. Bultje
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-21lavf: move ff_put_str16_nolen from asf to avio and rename itAnton Khirnov
It will be useful in the mp3 muxer. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-07-20asf: Add asf_jfif_media guidMartin Storsjö
Originally committed as revision 24350 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Remove superfluous space from a conversion table.Anton Khirnov
Patch by Anton Khirnov, wyskas gmail Originally committed as revision 22741 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-24Move put_le16_nolen() to asf.c and give it a ff_ prefix. This way, it is easierZhentan Feng
to share it with e.g. MMS. Patch by Zhentan Feng <spyfeng gmail com>. Originally committed as revision 22656 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Use ASF supports "markers" which are a name and a time stamp to createVladimir Pantelic
lavf chapters. Patch by Vladimir Pantelic pan (arobase) nt tu (dash) darmstadt de Originally committed as revision 22326 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-25asf: indent.Benoit Fouet
Patch from Anton Khirnov wyskas gmail com Originally committed as revision 22050 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-25asf: add more entries to metadata conv table.Benoit Fouet
Patch from Anton Khirnov wyskas gmail com Originally committed as revision 22049 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-24Don't add WM prefixes to all written ASF tags.Anton Khirnov
Patch by Anton Khirnov <wyskas gmail com>. Originally committed as revision 22033 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-01Add a list of generic tags and change demuxers to follow it.Anton Khirnov
Patch by Anton Khirnov, wyskas at gmail dot com Originally committed as revision 21587 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-12Detect Windows Media DRM protected files and display warning if no keyDaniel G. Taylor
was provided. Patch by Daniel G. Taylor, dan programmer-art org Originally committed as revision 20209 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-12Per-stream language-tags extraction in asfdec.Cyril Comparon
Patch by Cyril Comparon: gmail(name, surname); Original thread: Suggestion for a centralized language-tag facility in libavformat Date: 04/10/2009 07:33 PM Originally committed as revision 18800 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-18Rename GUID typedef to ff_asf_guid to fix MinGW compilation failureReimar Döffinger
(GUID is also defined, but differently, in Windows headers). Originally committed as revision 18032 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-01Add some basic metadata conversion tables for matroska and asf.Aurelien Jacobs
Add missing const qualifiers for metadata_conv in AV{In|Out}putFormat. Originally committed as revision 17671 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-26move static tables from asf.h to non-static tables in asf.cAurelien Jacobs
this avoid getting those tables duplicated in asfenc.o and asfdec.o Originally committed as revision 17619 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-26rename asf-enc.c to asfenc.c and asf.c to asfdec.c for consistencyAurelien Jacobs
Originally committed as revision 17618 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-20Re-indent after last commitAlex Converse
Originally committed as revision 17467 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-20AAC in ASF does not need parsing.Alex Converse
Originally committed as revision 17466 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-16Add a context to av_log() calls.Benoit Fouet
Originally committed as revision 17374 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-04use new metadata API in asf demuxerAurelien Jacobs
Originally committed as revision 16977 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-07Don't use s->pb if a local ByteIOContext was already provided by the callingRonald S. Bultje
function. See mailinglist thread "[PATCH] RTSP-MS 1/15: don't use s->pb in asf.c". Originally committed as revision 16470 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-18Make asf_get_packet() and asf_parse_packet() public for use in RTSP-MS andRonald S. Bultje
give them a ff_ prefix. See "[PATCH] asf.c: make functions of interest for MS-RTSP public" thread on ML. Originally committed as revision 16205 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-18Add a ByteIOContext argument to ASF functions that will be shared with theRonald S. Bultje
RTSP stack for RTSP-MS support. This way, they can read input from any given input source. See discussion in "[PATCH] add gb argument to ASF functions of interest to MS-RTSP" ML thread. Originally committed as revision 16204 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-13Separate the packet fetching from the data reading, so that the data readingRonald S. Bultje
function is assured to parse at most one packet. This makes this function useful for ASF data packet parsing in a "push-mode" in addition to the current "pull-mode", and therefore allows for use of these functions in, for example, the RTSP demuxer (for MS-RTSP support). Tested to give identical output before and after for regular ASF playback, also see discussion in the ML thread "[PATCH] asf.c: move packet_time_start=0 statement". Testsuite also works after the patch, tested by Benoit Fouet. Originally committed as revision 16108 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-06Remove static variable and a printf using it. See "[PATCH] asf.c: moveRonald S. Bultje
packet_time_start=0 statement" thread on ML. Originally committed as revision 16025 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-06Do not access s->gb directly in functions that have a local copy of thatRonald S. Bultje
variable. See "[PATCH] asf.c: don't access AVFormatContext->pb" thread on ML. Originally committed as revision 16023 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-03Delete unnecessary 'extern' keywords.Diego Biurrun
Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-14timestamp is dts in wmv/asfBaptiste Coudurier
Originally committed as revision 15821 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-02Use enum typers instead of int.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò: flameeyes gmail Originally committed as revision 15517 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni
bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-24convert every muxer/demuxer to write/read sample_aspect_ratio from/toAurelien Jacobs
the corresponding AVStream instead of AVCodecContext Originally committed as revision 14933 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-13ASF: use dprintf(), allow compilation with -DDEBUGMåns Rullgård
Originally committed as revision 14210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-12New codec probing system try #1.Michael Niedermayer
Originally committed as revision 14184 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-12command_streams are type data not unknown.Michael Niedermayer
Originally committed as revision 14183 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-20uniformize AVStream->priv_data freeing in av_close_input_streamBaptiste Coudurier
Originally committed as revision 13838 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-20factorize read_header failure freeing codeBaptiste Coudurier
Originally committed as revision 13837 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-03Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-23Read asf file header fields in the right orderRafaël Carré
Patch by Rafaël Carré ( funman videolan org ) Originally committed as revision 12926 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-06Skip over unknown extended_content_header tags.Michael Niedermayer
fixes issue358 Originally committed as revision 12347 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-06simplifyMichael Niedermayer
Originally committed as revision 12346 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-03Remove ff_mms_set_stream_selection again from asf demuxer,Reimar Döffinger
it does not seem like a good solution to the problem and will cause dependency problems if a libavprotocols should be split out. Originally committed as revision 11827 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-03Put is_mms under ifdef CONFIG_MMSH_PROTOCOL, avoids warning:Reimar Döffinger
libavformat/asf.c:112: warning: 'is_mms' defined but not used Originally committed as revision 11815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-31typo, also fix warning: asf.c:90: warning: passing argument 2 of ↵Baptiste Coudurier
'get_buffer' from incompatible pointer type Originally committed as revision 11681 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-23begining -> beginning typo fixReimar Döffinger
Originally committed as revision 11309 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-20cosmetics: indentationAurelien Jacobs
Originally committed as revision 11279 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-20remove double check of pb->read_seekAurelien Jacobs
Originally committed as revision 11278 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-17Enable av_read_pause(), av_read_play() and the ASF demuxer's av_read_seek()Björn Axelsson
to use the protocol-native functionality if available. Patch by Björn Axelsson: bjorn point axelsson at intinor dot se Original thread: [FFmpeg-devel] [PATCH][4/4] Enable use of the extended API Date: Thu Nov 22 16:01:06 CET 2007 Originally committed as revision 11248 to svn://svn.ffmpeg.org/ffmpeg/trunk