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
2010-06-27Make ff_url_split() publicMåns Rullgård
ff_url_split() is retained as an alias, as it was used by ffserver, to avoid breaking ABI compatibility with it. Originally committed as revision 23822 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-22ffserver: Use avcodec_copy_context instead of manually copying an AVCodecContextMartin Storsjö
Originally committed as revision 23692 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-16When reading a stream, should retry on EAGAIN instead of just failing. Also,Howard Chu
when reading a live feed, should retry regardless of whether any client has opened the stream. Originally committed as revision 23621 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-08Support presets in ffserver.confHoward Chu
Originally committed as revision 23524 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-04ffserver: Calculate cur_pts using first_pts as origin instead of ist->start_timeMartin Storsjö
This fixes cases where ist->start_time wasn't initialized. This also makes cur_pts calculated against the same origin for all streams. Originally committed as revision 23450 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-02ffserver: Allow floating point audio bit ratesMartin Storsjö
This allows setting bit rates that aren't an exact multiple of 1000. Originally committed as revision 23419 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25ffserver: Send a Content-Base header in the reply to RTSP DESCRIBE requestsMartin Storsjö
This is needed for QuickTime Player to be able to connect properly. Originally committed as revision 23325 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25ffserver: Fix one of the codec parameter checksMartin Storsjö
This is probably what was originally intended; the codec pointers are all NULL. Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25ffserver: Fix streaming with more than one streamMartin Storsjö
Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-24ffserver: Fix extradata handlingHoward Chu
Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23293 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-24ffserver: Fix an out of bounds readMartin Storsjö
Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23292 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-24ffserver: Fix another memory leakMartin Storsjö
Don't allocate st->codec, it will be overwritten by the memcpy a few lines further down. Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23291 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-24ffserver: Plug some memory leaksHoward Chu
Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23290 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-23Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö
Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-21ffserver: Avoid busylooping while reading non-blocking inputHoward Chu
Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-18Cosmetics: reindentMartin Storsjö
Originally committed as revision 23156 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-18ffserver: Don't set me_method unconditionallyHoward Chu
Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-18ffserver: Write proper GMT date/times in Date headersHoward Chu
Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23154 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-17ffserver: Make sure a destination URL is set when creating the SDPMartin Storsjö
Debugged by Howard Chu, hyc at highlandsun dot com. Originally committed as revision 23151 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-25Mark av_metadata_set() as deprecated, and use av_metadata_set2()Stefano Sabatini
in its place. av_metadata_set() is going to be dropped at the next major bump. Originally committed as revision 22961 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-24Implement ffserver.c:report_config_error() and a macro for loggingStefano Sabatini
error messages / updating the error count. Originally committed as revision 22960 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-24Statically initialize ffserver.c:config_filename, simplify.Stefano Sabatini
Originally committed as revision 22959 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-19Make ffserver support rfc3550Luca Barbato
Originally committed as revision 22907 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-08Add DynamicACL support for FFserver.Benjamin Larsson
Originally committed as revision 22815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-01Fix FFM-based streaming from ffmpeg to ffserver. The basic problem is thatRonald S. Bultje
we'd memset() the codec context to zero, thereby setting audio input to U8 and video to YUV420P. For most video encoders, that actually works, but for most audio codecs, it doesn't. This patch changes defaults to those set by avcodec_context_get_defaults() and have ffmpeg figure out the optimal encoding format itself if not set explicitely (as it does for the non-ffserver-cases also). Originally committed as revision 22751 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-26Actually parse the auth headers in RTSPMartin Storsjö
Originally committed as revision 22677 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Move resolve_host() to ffserver.cMåns Rullgård
This deprecated function is only used by ffserver, yet does not have a prototype visible there. In the long term, ffserver should be made IPv6-aware. In the meantime, this change removes cruft from lavf and fixes some warnings in ffserver. Originally committed as revision 22329 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Rename url_split to ff_url_splitMartin Storsjö
Since this function isn't in the public API, it should have an ff_ prefix. Originally committed as revision 22321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08ffserver: remove bogus commentMåns Rullgård
Originally committed as revision 22303 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Remove hacks not required since HAVE_AV_CONFIG_H was unset for the appsMåns Rullgård
Originally committed as revision 22295 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08ffserver: do not use intreadwrite.hMåns Rullgård
intreadwrite.h is not part of the public API and should thus not be used by the ff* applications. Originally committed as revision 22293 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06ffserver: use av_stristr()Måns Rullgård
Originally committed as revision 22252 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-03Update to work with chunked encoding HTTP streams (as served by FFmpeg sinceRonald S. Bultje
a few months now). Fixes issue 1738. Originally committed as revision 22175 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Prefix non-static RTSP functions with ff_.Ronald S. Bultje
Originally committed as revision 21974 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-04Mark http_log() as static; it is only used in this file.Diego Biurrun
Originally committed as revision 21017 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-02Use av_match_ext() in place of the deprecated match_ext() function.Stefano Sabatini
Originally committed as revision 21000 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-01Use av_guess_format() in place of the deprecated guess_format().Stefano Sabatini
Originally committed as revision 20994 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-31Deprecate and mark for deletion the function guess_stream_format(),Stefano Sabatini
and clone its code to ffserver_guess_format() in ffserver.c. guess_stream_format() is hackish since it relies on some undocumented properties of the name of the muxers (wich is currently only relevant for the ASF muxer), and has no use outside ffserver.c. Originally committed as revision 20987 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-30Factorize common commandline options definition.Stefano Sabatini
Originally committed as revision 20664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-19Split show_formats().Michael Niedermayer
Originally committed as revision 20553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-02Prefer "loglevel" over "logging level number or string" as argname ofStefano Sabatini
the loglevel command line option. Make the loglevel option help message more clear, since the option argument is shown as a single token, and make the whole message better aligned with the other help messages. Originally committed as revision 20149 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Remove disabled code cruft.Diego Biurrun
Originally committed as revision 20087 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Add a -loglevel command line option to ffserver.Stefano Sabatini
The -loglevel option makes possible to set the logging level used by the libav* libraries. Originally committed as revision 20035 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-10Move get_arg to avoid future declaration of function whenBenjamin Larsson
new code is added. Originally committed as revision 19815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-19Consistently lowercase all HTML tags.Diego Biurrun
Originally committed as revision 19464 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21check if feed max file size is too smallBaptiste Coudurier
Originally committed as revision 18109 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21cosmetics, reindent and remove empty lineBaptiste Coudurier
Originally committed as revision 18108 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21new Truncate option which will make feeder truncate feed fileBaptiste Coudurier
Originally committed as revision 18107 to svn://svn.ffmpeg.org/ffmpeg/trunk