summaryrefslogtreecommitdiffstats
path: root/ffserver.c
Commit message (Collapse)AuthorAgeFilesLines
* check if feed max file size is too smallBaptiste Coudurier2009-03-211-0/+5
| | | | Originally committed as revision 18109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, reindent and remove empty lineBaptiste Coudurier2009-03-211-5/+4
| | | | Originally committed as revision 18108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new Truncate option which will make feeder truncate feed fileBaptiste Coudurier2009-03-211-0/+14
| | | | 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-211-1/+1
| | | | Originally committed as revision 18104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* send busy reply if max connections number is exceededBaptiste Coudurier2009-03-211-3/+19
| | | | Originally committed as revision 18103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adjust write index if not setBaptiste Coudurier2009-03-211-1/+3
| | | | Originally committed as revision 18097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check av_find_stream_info return valueBaptiste Coudurier2009-03-201-1/+5
| | | | Originally committed as revision 18060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uniformize log messages and add some moreBaptiste Coudurier2009-03-201-3/+7
| | | | 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-201-6/+7
| | | | 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-201-11/+30
| | | | Originally committed as revision 18057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump major version of libavutil due to FIFO fixes.Michael Niedermayer2009-03-081-1/+1
| | | | | | | 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-011-13/+6
| | | | Originally committed as revision 17685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add bandwidth before failing if feed is already being receivedBaptiste Coudurier2009-02-221-3/+3
| | | | 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-221-1/+0
| | | | 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-211-10/+10
| | | | | | | 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-211-1/+1
| | | | 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-121-2/+8
| | | | | | 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-081-2/+2
| | | | | | 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-061-1/+1
| | | | 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-051-0/+5
| | | | | | | 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-301-1/+1
| | | | Originally committed as revision 16861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace calls to the deprecated function av_init_random() withStefano Sabatini2009-01-181-1/+1
| | | | | | 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-171-1/+2
| | | | Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-131-5/+5
| | | | | | 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-131-2/+3
| | | | | | | 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-091-1/+1
| | | | Originally committed as revision 16505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence two icc warnings:Carl Eugen Hoyos2008-12-301-3/+3
| | | | | | | | | | | | | | /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-191-2/+2
| | | | Originally committed as revision 16242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove calls to deprecated av_set_string2() with calls toStefano Sabatini2008-12-191-5/+3
| | | | | | 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-291-1/+1
| | | | | | 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-251-2/+2
| | | | Originally committed as revision 15695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, indentationBaptiste Coudurier2008-10-251-5/+5
| | | | Originally committed as revision 15694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check if stream is set, fix potential segvBaptiste Coudurier2008-10-251-0/+2
| | | | Originally committed as revision 15693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uses FF_ARRAY_ELEMS() where appropriateAurelien Jacobs2008-10-211-1/+1
| | | | Originally committed as revision 15662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove useless spacesBaptiste Coudurier2008-10-011-3/+3
| | | | 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-301-20/+20
| | | | | | | | 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-291-3/+3
| | | | | | 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-281-2/+2
| | | | | | 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-241-1/+1
| | | | Originally committed as revision 15398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing html start tag to ffserver status html pageBaptiste Coudurier2008-09-071-1/+1
| | | | Originally committed as revision 15241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup, merge snprintf callsBaptiste Coudurier2008-09-071-55/+55
| | | | Originally committed as revision 15240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, compute correctly poll_table size when allocatingBaptiste Coudurier2008-09-071-1/+1
| | | | 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-031-2/+2
| | | | Originally committed as revision 15191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the maximum number of simultaneous HTTP connections handled byStefano Sabatini2008-09-031-5/+18
| | | | | | | ffserver a configuration parameter. The name of the new parameter introduced is MaxHTTPConnections. Originally committed as revision 15182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* strcasecmp() requires #include <strings.h>Aurelien Jacobs2008-08-131-0/+1
| | | | Originally committed as revision 14728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: SA_RESTART and unsetenv require _XOPEN_SOURCEAurelien Jacobs2008-08-131-0/+2
| | | | Originally committed as revision 14724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typo fixesDiego Biurrun2008-07-241-3/+2
| | | | Originally committed as revision 14376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print AVCodecContext address instead of AVClass, better when multiple ↵Baptiste Coudurier2008-07-161-1/+1
| | | | | | instances of same codecs are used, based on r14237 Originally committed as revision 14255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a warning in ffserver.c caused by the use of the functionStefano Sabatini2008-07-091-1/+1
| | | | | | av_set_string() deprecated since r14134. Originally committed as revision 14145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r13867, - reference stdout, I was drunkBaptiste Coudurier2008-06-251-1/+1
| | | | Originally committed as revision 13978 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud