summaryrefslogtreecommitdiff
path: root/ffserver.c
Commit message (Collapse)AuthorAge
* 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
* Make the maximum number of simultaneous HTTP connections handled byStefano Sabatini2008-09-03
| | | | | | | 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-13
| | | | Originally committed as revision 14728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: SA_RESTART and unsetenv require _XOPEN_SOURCEAurelien Jacobs2008-08-13
| | | | Originally committed as revision 14724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typo fixesDiego Biurrun2008-07-24
| | | | Originally committed as revision 14376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print AVCodecContext address instead of AVClass, better when multiple ↵Baptiste Coudurier2008-07-16
| | | | | | 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-09
| | | | | | 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-25
| | | | Originally committed as revision 13978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use http_log now that logfile is setupBaptiste Coudurier2008-06-25
| | | | Originally committed as revision 13975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move logfile setup right after config parsingBaptiste Coudurier2008-06-25
| | | | Originally committed as revision 13974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless initBaptiste Coudurier2008-06-25
| | | | Originally committed as revision 13973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2008-06-24
| | | | Originally committed as revision 13956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffserver show launched commandlines not only in debug-mode.Stefano Sabatini2008-06-24
| | | | Originally committed as revision 13955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use http_log() rather than printing on stdout to show the launchedStefano Sabatini2008-06-24
| | | | | | commandlines. Originally committed as revision 13954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffserver show each launched commandline just before to launchStefano Sabatini2008-06-24
| | | | | | | them rather than print them when parsing the configuration file. This way those commandlines are not showed anymore in no-launch mode. Originally committed as revision 13950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* log when feed is already being receivedBaptiste Coudurier2008-06-24
| | | | Originally committed as revision 13939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2008-06-24
| | | | Originally committed as revision 13938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* copy extradata if presentBaptiste Coudurier2008-06-23
| | | | Originally committed as revision 13913 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffserver daemon chdir()s just after log init. This way aStefano Sabatini2008-06-23
| | | | | | | relative path for the logfile is resolved according to the directory where ffserver has been launched, as the user expects. Originally committed as revision 13911 to svn://svn.ffmpeg.org/ffmpeg/trunk