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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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>
2014-10-08ffserver: use av_freep(), do not leave stale pointers in memoryMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-14ffserver: drop custom skip_spaces() implReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-09-14ffserver: use correct error for stream not foundReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-08-29Add missing "const" all over the place.Reimar Döffinger
Only "./configure --enable-gpl" on x86 was tested. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
2014-08-18ffserver: warn if config uses a system portReynaldo H. Verdejo Pinochet
Should be harmless as far as users know what they are doing but an informative warning wont hurt. For details, refer to http://tools.ietf.org/html/rfc6335 Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-08-18ffserver: deprecate Port and BindAddress options in favor of HTTPPort and ↵Stefano Sabatini
HTTPBindAddress The new option names are more explicit. Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2014-08-16Drop remaining unneeded != NULLMichael Niedermayer
Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-15Merge commit 'f929ab0569ff31ed5a59b0b0adb7ce09df3fca39'Michael Niedermayer
* commit 'f929ab0569ff31ed5a59b0b0adb7ce09df3fca39': cosmetics: Write NULL pointer equality checks more compactly Conflicts: cmdutils.c ffmpeg_opt.c ffplay.c libavcodec/dvbsub.c libavcodec/dvdsubdec.c libavcodec/dvdsubenc.c libavcodec/dxa.c libavcodec/libxvid_rc.c libavcodec/mpegvideo.c libavcodec/mpegvideo_enc.c libavcodec/rv10.c libavcodec/tiffenc.c libavcodec/utils.c libavcodec/vc1dec.c libavcodec/zmbv.c libavdevice/v4l2.c libavformat/matroskadec.c libavformat/movenc.c libavformat/sdp.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-02ffserver: initialize pbuffer in prepare_sdp_description()Michael Niedermayer
also check pbuffer before use Found-by: CSA Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-07-17ffserver: use av_mallocz_array()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-07-08ffserver: add HAVE_UNISTD_H around #include <unistd.h>Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-11ffserver: don't leak poll_table if poll failsReynaldo H. Verdejo Pinochet
Should fix Coverity Scan issue #732265 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-29ffserver: do not ignore lseek() returnReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issue #732177 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-29ffserver: do not ignore getsockname() returnReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issue #732176 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-29ffserver: do not ignore send() returnReynaldo H. Verdejo Pinochet
Should fix Coverity Scan issue #732178 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-29ffserver: do not ignore setsockopt returnReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issue #732181 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-29ffserver: do not ignore ff_socket_nonblock returnReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issues #732180 & #732182 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-26ffserver: fix missing frees at connection setupReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issue #732266 and some of #732265 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-26ffserver: free AVStream st before wiping contextReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issue #732269 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-26ffserver: free nacl as neededReynaldo H. Verdejo Pinochet
Should fix FFmpeg Coverity Scan issue #732268 Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-07ffserver: don't hardcode RTSP status codesReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-04-07ffserver: nits & typosReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-14ffserver: merge RTSP's teardown & pause routinesReynaldo H. Verdejo Pinochet
They were basically the same. Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-14ffserver: cosmeticsReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-14ffserver: fix some commentsReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-14ffserver: factor out connection closing from handlerReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-14ffserver: avoid useless substitutionReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-08ffserver: drop unneeded delay1 varReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-08ffserver: move misplaced commentReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-08ffserver: drop obvious commentReynaldo H. Verdejo Pinochet
Following code line is self explanatory Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-08ffserver: cosmetics and grammarReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
2014-02-04ffserver: use avformat_alloc_context()Michael Niedermayer
Fixes null pointer dereference Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-16ffserver: extend report_config_error() facilities, and use it for warningsStefano Sabatini
2013-12-16ffserver: add stream Metadata optionStefano Sabatini
Also deprecate Author, Comment, Copyright, and Title options, and update docs to use the new Metadata option.
2013-12-16ffserver: fix spacing typoin error messageStefano Sabatini
2013-12-13ffserver: improve error feedback in case of av_write_frame() errorStefano Sabatini
2013-11-30ffserver: print error code description in case of write_header() failureStefano Sabatini
Improve feedback.
2013-11-29ffserver: improve error feedback in case of write_header() failureStefano Sabatini
2013-11-29ffserver: improve feedback in case no feed is defined for a streamStefano Sabatini
2013-11-29ffserver: improve feedback in case of stream with unknown feed nameStefano Sabatini
2013-11-29ffserver: deprecate inconsistent parsing behavior of Truncate optionStefano Sabatini
Also make it accept the more consistent behavior (boolean option set to true when specified).
2013-11-29ffserver: extend feedback in http_start_receive_data()Stefano Sabatini
2013-11-29ffserver: fix typo in comment: defaut -> defaultStefano Sabatini
2013-11-29ffserver: factorize code setting ReadOnlyFile/File optionsStefano Sabatini
2013-11-29ffserver: improve error feedback in open_input_stream()Stefano Sabatini
2013-11-29ffserver: drop stream AudioQuality optionStefano Sabatini
It has no effect, and it was never documented.
2013-11-29ffserver: add comment about how Launch path program is createdStefano Sabatini
2013-11-29ffserver: extend error handling when parsing the configuration fileStefano Sabatini
In particular, abort immediately in case of memory error, avoid potential crashes.
2013-11-29ffserver: add some error handling to main()Stefano Sabatini