summaryrefslogtreecommitdiff
path: root/ffserver_config.h
Commit message (Collapse)AuthorAge
* ffsrever: Make the status page bitexact if any stream is bitexactMichael Niedermayer2016-11-29
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* ffserver: Remove use of AVStream as a intermediate to store parametersMichael Niedermayer2016-11-28
| | | | | Reviewed-by: "Reynaldo H. Verdejo Pinochet" <reynaldo@osg.samsung.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* ffserver: Throw ffm.h out its not used except for a constant that is part of ↵Michael Niedermayer2016-11-07
| | | | | | the format Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* ffserver: Use singlejpeg muxer for jpegCaligula useraccount2015-06-08
| | | | | | | Fixes Ticket4218 Based on patch by: Otávio Ribeiro Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* ffserver: dont leak child argumentsLukasz Marek2014-11-26
| | | | Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* ffserver: allow skip setting defaultsLukasz Marek2014-11-26
| | | | Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* ffserver_config: map ffserver options to AVOptionsLukasz Marek2014-11-26
| | | | Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* ffserver_config: cosmetic: move line_num into FFServerConfigLukasz Marek2014-11-26
| | | | | Moving line_num into FFServerConfig as parser state, saves many passes of it aside of FFServerConfig pointer.
* ffserver_config: do not store preset nameLukasz Marek2014-11-17
| | | | | | | | | Preset are translated to AVOptions. It is not required to reparse anymore. Fixes CID #1254667 Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* ffserver_config: handle codec private optionsLukasz Marek2014-11-16
| | | | | | | This commit allows to set codec's private option. As side effect, it also improves preset support. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* ffserver_config: improve AVOption handingLukasz Marek2014-11-03
| | | | | | | | | | | | AVOption are checked right after found in config file. It allows to report exact line in config file. Options provided more than once are threated as errors. It also fixes flag options handing. Flags may occur more than once in config file. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* ffserver_config: postpone codec context creationLukasz Marek2014-11-01
| | | | | | | | | So far AVCodecContext was created without codec specified. This causes internal data to not be initialized to defaults. This commit postpone context creation until all information is gathered. Partially fixes #1275
* ffserver_conf: factorize parse function per config tagLukasz Marek2014-10-22
| | | | Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
* ffserver: move configuration code to separate fileLukasz Marek2014-10-22
This commit doesn't change any existing logic. It moves ffserver configuration related code to separate file. It intends to make maintaining easier. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>