Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-22ffserver_config: Check for failure to allocate FFServerIPAddressACLMichael Niedermayer
Fixes CID1396537 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-29ffsrever: Make the status page bitexact if any stream is bitexactMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-29ffserver_config: Setup codecpar in add_codec()Michael Niedermayer
fixes segfault in the status page code Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-29ffserver: Remove use of AVStream as a intermediate to store parametersMichael Niedermayer
Reviewed-by: "Reynaldo H. Verdejo Pinochet" <reynaldo@osg.samsung.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-07ffserver: Throw ffm.h out its not used except for a constant that is part of ↵Michael Niedermayer
the format Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-02-22ffserver: NoVideo and NoAudio flags weren't cleared between streams.Zalewa
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-10-14ffserver_config: check for INT_MIN before doing FFABSGanesh Ajjanagadde
FFABS(INT_MIN) is not safe. Alternative of using FFNABS is not as readable. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
2015-10-05ffserver: fix line wrapping on function declsReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-26ffserver: drop unneeded branchingReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-26ffserver: drop error counting when parsing ACL rowReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-26ffserver: rm whitespace c&p leftovers from macroReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-19ffserver: remove useless assignment leftoverReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-19ffserver: break early on _parse_acl_row()Reynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-08-28ffserver: use -b instead of -ab for setting audio bitrate.Ronald S. Bultje
2015-06-08ffserver: Use singlejpeg muxer for jpegCaligula useraccount
Fixes Ticket4218 Based on patch by: Otávio Ribeiro Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-12-09ffserver_config: reflow add_codec()Reynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-12-09ffserver_config: break lines at 80 charsReynaldo H. Verdejo Pinochet
Add braces when needed and drop redundant parethesis while at it. Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-12-09ffserver_config: improve error/warning messagesReynaldo H. Verdejo Pinochet
Fix grammar and quote user-supplied values. Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-12-09ffserver_config: check strchr() return for NULLReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issue #1257013 Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-12-06ffserver_config: fix line width on fwd declarationsReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-12-06ffserver_config: reflow _get_arg()Reynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-12-06ffserver_config: reflow _parse_ffconfig()Reynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-12-02ffserver_config: print warning when using default valueLukasz Marek
Some of the defaults may be harmful (like buffer size). It is good user is aware of that. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-12-02ffserver_config: set defaults basing on absence of set valueLukasz Marek
This prevents the situation when user set option to 0 and ffserver threats it as not set value, so applies the default. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-12-02ffserver_config: remove useless defaultsLukasz Marek
Options are already set to its defaults by AVOption API. The only difference is for qmin, new default is 2, ffserver set to 3. It is dead code because if condition is not meet unless user set option to 0. Meeting condition would mean that ffserver overwrites explicity set option. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-27ffserver: dont leak child argumentsLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-27ffserver: export recommented encoder configurationLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-27ffserver: allow skip setting defaultsLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-27ffserver_config: remove ffserver_apply_stream_config functionLukasz Marek
This function became very short and can be logically merged with add_codec(). Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-27ffserver_config: map ffserver options to AVOptionsLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-27ffserver_config: cosmetic: move line_num into FFServerConfigLukasz Marek
Moving line_num into FFServerConfig as parser state, saves many passes of it aside of FFServerConfig pointer.
2014-11-27ffserver_config: cosmetic: simplify functions calls.Lukasz Marek
ffserver_save_avoption() and ffserver_opt_preset() have redundant arguments. They can be obtained basing on media type. This simplifies uses and reduce chance for a mistake. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-17ffserver_config: fix possible crashLukasz Marek
Fixes CID #1254662 Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-17ffserver_config: do not store preset nameLukasz Marek
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>
2014-11-16ffserver_config: handle codec private optionsLukasz Marek
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>
2014-11-13ffserver_config: report not closed last tagLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-11ffserver_config: drop requirement video size being multiple of 16Lukasz Marek
Such strong requirement constraint doesn't allow to use 360p. Changed to warning when video size is not being multiple of 2. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-03ffserver_config: add fixme on buffer_aggressivity/eq deprecationReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-11-03ffserver_config: simplify some if true conditionsReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-11-03ffserver_config: fix line lengthsReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-11-03ffserver_config: improve AVOption handingLukasz Marek
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>
2014-11-03ffserver_config: improve error handlingLukasz Marek
Replace atoi with more advanced parsing routine. Set maximum port value to 65535 (not 65536). Other checks. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-02ffserver_config: dont pass pointer to enum as pointer to intLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-01ffserver_config: fix compilation warningLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-01ffserver_config: postpone codec context creationLukasz Marek
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
2014-10-23ffserver_conf: factorize parse function per config tagLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-10-23ffserver_config: clean up variable initializationLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-10-23ffserver: move configuration code to separate fileLukasz Marek
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>