aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mms.c
Commit message (Collapse)AuthorAgeFilesLines
* avutil/common: Don't auto-include mem.hAndreas Rheinhardt2024-03-311-0/+1
| | | | | | | | | | | There are lots of files that don't need it: The number of object files that actually need it went down from 2011 to 884 here. Keep it for external users in order to not cause breakages. Also improve the other headers a bit while just at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avformat/mms: add logging context to logSteven Liu2019-10-081-8/+8
| | | | Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
* avformat/mms: Add missing chunksize checkMichael Niedermayer2018-07-061-18/+26
| | | | | | | | | | Fixes: out of array read Fixes: mms-crash-01b6c5d85f9d9f40f4e879896103e9f5b222816a Found-by: Paul Ch <paulcher@icloud.com> 1st hunk by Paul Ch <paulcher@icloud.com> Tested-by: Paul Ch <paulcher@icloud.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Merge commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb'Clément Bœsch2016-06-211-1/+1
|\ | | | | | | | | | | | | * commit '41ed7ab45fc693f7d7fc35664c0233f4c32d69bb': cosmetics: Fix spelling mistakes Merged-by: Clément Bœsch <u@pkh.me>
| * cosmetics: Fix spelling mistakesVittorio Giovara2016-05-041-1/+1
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | Merge commit '93c1b04abfc0dd31211a18bf2c0041d69cd16919'Michael Niedermayer2015-03-221-0/+2
|\| | | | | | | | | | | | | * commit '93c1b04abfc0dd31211a18bf2c0041d69cd16919': mms: Check memory allocation Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * mms: Check memory allocationFederico Tomassetti2015-03-211-0/+2
| | | | | | | | | | | | Bug-Id: CID 1258462 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-12-261-1/+1
|\| | | | | | | | | | | | | * qatar/master: mms: Remove non-utf8 characters Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * mms: Remove non-utf8 charactersLuca Barbato2013-12-261-1/+1
| | | | | | | | | | | | Certain softwares get badly confused. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* | Merge remote branch 'qatar/master'Michael Niedermayer2011-04-201-4/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (37 commits) In avcodec_open(), set return code to an error value only when an error occurs instead of unconditionally at the start of the function. lavc: remove reference to opt.h from Makefile. prefer avio_check() over url_exist() avio: remove AVIO_* access symbols in favor of new AVIO_FLAG_* symbols lavu: remove misc disabled cruft lavu: remove FF_API_OLD_IMAGE_NAMES cruft NOT PULLED lavu: remove FF_API_OLD_EVAL_NAMES cruft lavc: remove misc disabled cruft. lavc: remove the FF_API_INOFFICIAL cruft. lavc: remove the FF_API_SET_STRING_OLD cruft. lavc: remove the FF_API_USE_LPC cruft. lavc: remove the FF_API_SUBTITLE_OLD cruft. lavc: remove the FF_API_VIDEO_OLD cruft. lavc: remove the FF_API_AUDIO_OLD cruft. lavc: remove the FF_API_OPT_SHOW cruft. lavc: remove the FF_API_MM_FLAGS cruft. lavf: remove misc disabled cruft. lavf: remove FF_API_INDEX_BUILT cruft lavf: remove FF_API_URL_CLASS cruft. lavf: remove FF_API_SYMVER cruft ... Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavf: remove FF_API_MAX_STREAMS cruftAnton Khirnov2011-04-191-4/+0
| |
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * MMS: also discover streams in extended stream properties objectMarton Balint2011-02-191-0/+28
| | | | | | | | | | | | | | Allows playback of nonprimary audio streams in multiple bitrate sources, such as mmsh://wmscr1.dr.dk/e02ch03m Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* | MMS: also discover streams in extended stream properties objectMarton Balint2011-02-201-0/+28
|/ | | | | | | | Allows playback of nonprimary audio streams in multiple bitrate sources, such as mmsh://wmscr1.dr.dk/e02ch03m Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 74d6871d6244865b5863a01c3dab16a2f06a1706)
* mms: remove dependency on MAX_STREAM APIAurelien Jacobs2010-10-041-1/+7
| | | | Originally committed as revision 25335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove use of MAX_STREAMS in MMSContext->streams[] array. Instead, dynamicallyRonald S. Bultje2010-08-131-0/+3
| | | | | | allocate the array. Originally committed as revision 24794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set fixed chunksize for ASF header in MMS streams, as per MSDN documentation.Zhentan Feng2010-08-131-1/+6
| | | | | | | | This fixes playback of at least one MMST stream. Patch by Zhentan Feng <spyfeng gmail com>. Originally committed as revision 24793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing mms.c from r24779.Ronald S. Bultje2010-08-111-0/+111
Originally committed as revision 24780 to svn://svn.ffmpeg.org/ffmpeg/trunk