summaryrefslogtreecommitdiff
path: root/ffserver.c
Commit message (Collapse)AuthorAge
* Factorize common commandline options definition.Stefano Sabatini2009-11-29
| | | | Originally committed as revision 20664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split show_formats().Michael Niedermayer2009-11-19
| | | | Originally committed as revision 20553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "loglevel" over "logging level number or string" as argname ofStefano Sabatini2009-10-02
| | | | | | | | | | 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
* Remove disabled code cruft.Diego Biurrun2009-09-29
| | | | Originally committed as revision 20087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a -loglevel command line option to ffserver.Stefano Sabatini2009-09-26
| | | | | | | 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
* Move get_arg to avoid future declaration of function whenBenjamin Larsson2009-09-10
| | | | | | new code is added. Originally committed as revision 19815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently lowercase all HTML tags.Diego Biurrun2009-07-19
| | | | Originally committed as revision 19464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check if feed max file size is too smallBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, reindent and remove empty lineBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new Truncate option which will make feeder truncate feed fileBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not call av_find_stream_info if stream is ffm, should fix stallingBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* send busy reply if max connections number is exceededBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adjust write index if not setBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check av_find_stream_info return valueBaptiste Coudurier2009-03-20
| | | | Originally committed as revision 18060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uniformize log messages and add some moreBaptiste Coudurier2009-03-20
| | | | Originally committed as revision 18059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use lfg and ff_random_get_seed instead of deprecated av_randomBaptiste Coudurier2009-03-20
| | | | Originally committed as revision 18058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check if feed and stream already exist before registering new oneBaptiste Coudurier2009-03-20
| | | | Originally committed as revision 18057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump major version of libavutil due to FIFO fixes.Michael Niedermayer2009-03-08
| | | | | | | The current API/ABI should not be considered stable yet, further ABI/API breakage is possible without major bumps. Originally committed as revision 17871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert ffserver to new metadata APIAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add bandwidth before failing if feed is already being receivedBaptiste Coudurier2009-02-22
| | | | Originally committed as revision 17516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not set error if an unknown parameter is in config file, just skipBaptiste Coudurier2009-02-22
| | | | Originally committed as revision 17515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename RTSPHeader to RTSPMessageHeader to reflect more clearly what theRonald S. Bultje2009-02-21
| | | | | | | structure is meant to represent. See "[PATCH] rtsp.[ch]: RTSPHeader -> RTSPServerResponse" and "[PATCH] document rtsp.h" threads on ML. Originally committed as revision 17504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change sizeof(struct_type) to sizeof(variable).Ronald S. Bultje2009-02-21
| | | | Originally committed as revision 17474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check return value of ffm_write_write_index and ffm_read_write_index.Patrik Kullman2009-02-12
| | | | | | Patch by Patrik Kullman, patrik at yes dot nu Originally committed as revision 17174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace the calls to the deprecated av_alloc_format_context() withStefano Sabatini2009-02-08
| | | | | | corresponding calls to avformat_alloc_context(). Originally committed as revision 17048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split rtp.h in rtp.h, rtpdec.h, and rtpenc.hLuca Abeni2009-02-06
| | | | Originally committed as revision 17016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete an enum and a function typedef that aren't used anywhere, andRonald S. Bultje2009-02-05
| | | | | | | move move a struct/typedef in rtsp.h that is only used in ffserver.c into ffserver.c. See "[PATCH] rtsp.h: move/remove unused thingies" thread on ML. Originally committed as revision 17005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'void' keyword to parameterless function declaration.Diego Biurrun2009-01-30
| | | | Originally committed as revision 16861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace calls to the deprecated function av_init_random() withStefano Sabatini2009-01-18
| | | | | | corresponding calls to av_random_init(). Originally committed as revision 16682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ff_get_fourcc() and use AV_RL32() insteadAurelien Jacobs2009-01-17
| | | | Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include libavformat/avformat.h before all the other libav* headers.Stefano Sabatini2009-01-13
| | | | | | | This is safer since they may use the symbol LIBAVFORMAT_BUILD defined in avformat.h. Originally committed as revision 16589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initialize AVFormatContext before calling av_write_header()Aurelien Jacobs2009-01-09
| | | | Originally committed as revision 16505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence two icc warnings:Carl Eugen Hoyos2008-12-30
| | | | | | | | | | | | | | /home/melanson/fate/source/ffserver.c(4349): warning #188: enumerated type mixed with another type audio_enc.codec_id = audio_id; ^ /home/melanson/fate/source/ffserver.c(4354): warning #188: enumerated type mixed with another type video_enc.codec_id = video_id; ^ Originally committed as revision 16397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics, change variable name "o2" to "o" in ffserver_opt_default().Stefano Sabatini2008-12-19
| | | | Originally committed as revision 16242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove calls to deprecated av_set_string2() with calls toStefano Sabatini2008-12-19
| | | | | | av_set_string3(). Originally committed as revision 16241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/FFserver/ffserver/ in the help message invocation synopsis.Stefano Sabatini2008-11-29
| | | | | | See the thread: "Define cmdline_program_name and use it in show_help". Originally committed as revision 15952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: ffserver -> FFserverBaptiste Coudurier2008-10-25
| | | | Originally committed as revision 15695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, indentationBaptiste Coudurier2008-10-25
| | | | Originally committed as revision 15694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check if stream is set, fix potential segvBaptiste Coudurier2008-10-25
| | | | Originally committed as revision 15693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uses FF_ARRAY_ELEMS() where appropriateAurelien Jacobs2008-10-21
| | | | Originally committed as revision 15662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove useless spacesBaptiste Coudurier2008-10-01
| | | | Originally committed as revision 15506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells usRonald S. Bultje2008-09-30
| | | | | | | | that it only describes the lower-level transport (TCP vs. UDP) and not the actual data layout (e.g. RDT vs. RTP). See discussion in "Realmedia patch" thread on ML. Originally committed as revision 15481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some format string warnings.Diego Pettenò2008-09-29
| | | | | | patch by Diego Pettenò, flameeyes gmail com Originally committed as revision 15461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename opt_default() so it will not conflict with the one from ffmpeg.cMichael Niedermayer2008-09-28
| | | | | | when it is moved to cmdutils.c/h. Originally committed as revision 15449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only write trailer when state says so, should fix issue #646Baptiste Coudurier2008-09-24
| | | | Originally committed as revision 15398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing html start tag to ffserver status html pageBaptiste Coudurier2008-09-07
| | | | Originally committed as revision 15241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup, merge snprintf callsBaptiste Coudurier2008-09-07
| | | | Originally committed as revision 15240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, compute correctly poll_table size when allocatingBaptiste Coudurier2008-09-07
| | | | Originally committed as revision 15238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the nb_max_connections and nb_connections int variables unsigned.Stefano Sabatini2008-09-03
| | | | Originally committed as revision 15191 to svn://svn.ffmpeg.org/ffmpeg/trunk