aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/allformats.c
Commit message (Collapse)AuthorAgeFilesLines
* Add Sega FILM muxerMisty De Meo2018-04-051-0/+1
| | | | Signed-off-by: Josh de Kock <josh@itanimul.li>
* lavf/allformats: remove left-over index decrementJosh de Kock2018-04-021-1/+1
| | | | Signed-off-by: Josh de Kock <josh@itanimul.li>
* lavf: move avpriv function definition to internal.hJosh de Kock2018-04-021-0/+1
| | | | Signed-off-by: Josh de Kock <josh@itanimul.li>
* lavd: remove linked listsJosh de Kock2018-03-311-11/+67
| | | | Signed-off-by: Josh de Kock <josh@itanimul.li>
* Revert "lavd: add new API for iterating input and output devices"Josh de Kock2018-03-311-40/+2
| | | | | | | | | | This reverts commit 0fd475704e871ef3a535947596a012894bae3cbd. Revert "lavd: fix iterating of input and output devices" This reverts commit ce1d77a5e7cebce11074bf6f9e38ad6da37338ff. Signed-off-by: Josh de Kock <josh@itanimul.li>
* sbc: add raw muxer for SBCAurelien Jacobs2018-03-071-0/+1
|
* sbc: add raw demuxer for SBCAurelien Jacobs2018-03-071-0/+1
|
* Add muxer/demuxer for raw codec2 and .c2 filesTomas Härdin2018-02-241-0/+4
|
* aptx: add raw muxer and demuxer for aptX HDAurelien Jacobs2018-02-091-0/+2
|
* lavd: add new API for iterating input and output devicesJosh de Kock2018-02-061-2/+40
| | | | | This also adds an avpriv function to register devices in libavformat
* lavf: add new API for iterating muxers and demuxersJosh de Kock2018-02-061-355/+513
|
* lavf: move fifo test muxer into separate fileJosh de Kock2018-02-061-0/+1
| | | | | This fixes the fate-fifo-muxer test with the clarified removal of registering external formats.
* lavf/rtp: replace linked list with arrayJosh de Kock2018-02-061-4/+0
|
* libavformat: remove the ffmenc and ffmdec muxer and demuxersRostislav Pehlivanov2018-01-061-1/+0
| | | | | | Used only by ffserver. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* avformat: add NSP demuxerPaul B Mahol2017-12-081-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* aptx: add raw muxer and demuxer for aptXAurelien Jacobs2017-11-101-0/+1
|
* avformat: add TiVo ty demuxerPaul B Mahol2017-11-061-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavf/amr: Add amrnb and amrwb demuxers.Carl Eugen Hoyos2017-11-051-0/+2
| | | | Fixes ticket #6678.
* Add SUP/PGS subtitle muxerPetri Hintukainen2017-09-091-1/+1
| | | | Fixes ticket #2208
* avformat/dashdec: add dash demuxer base versionSteven Liu2017-09-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/000001_add_dash_demux.patch TODO: 1. support multi bitrate dash. v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to AVMediaType 4. fix variable typo 5. change time value from uint32_t to uint64_t 6. removed be used once API 7. change 'time(NULL)`, except it is not 2038-safe.' to av_gettime and av_timegm 8. merge complex free operation to free_fragment 9. use API from snprintf to av_asprintf v3 fixed: 1. fix typo from --enabled-xml2 to --enable-xml2 v4 fixed: 1. from --enable-xml2 to --enable-libxml2 2. move system includes to top 3. remove nouse includes 4. rename enum name 5. add a trailing comma for the last entry enum 6. fix comment typo 7. add const to DASHContext class front 8. check sscanf if return arguments and give warning message when error 9. check validity before free seg->url and seg 10. check if the val is null, before use atoll v5 fixed: 1. fix typo from mainifest to manifest v6 fixed: 1. from realloc to av_realloc 2. from free to av_free v7 fixed: 1. remove the -lxml2 from configure when require_pkg_config v8 fixed: 1. fix replace filename template by av_asprintf secure problem v9 modified: 1. make manifest parser clearly v10 fixed: 1. fix function API name code style 2. remove redundant strreplace call 3. remove redundant memory operation and check return value from get_content_url() 4. add space between ) and { 5. remove no need to log the value for print v11 fixed: 1. from atoll to strtoll Suggested-by: Michael Niedermayer <michael@niedermayer.cc> v12 fixed: 1. remove strreplace and instead by av_strreplace Suggested-by: Nicolas George <george@nsup.org> v13 fixed: 1. fix bug: cannot play: http://dash.edgesuite.net/akamai/bbb_30fps/bbb_30fps.mpd Reported-by: Andy Furniss <adf.lists@gmail.com> v14 fixed: 1. fix bug: TLS connection was non-properly terminated 2. fix bug: No trailing CRLF found in HTTP header Reported-by: Andy Furniss <adf.lists@gmail.com> v15 fixed: 1. play youtube link: ffmpeg -i $(youtube-dl -J "https://www.youtube.com/watch?v=XmL19DOP_Ls" | jq -r ".requested_formats[0].manifest_url") 2. code refine for timeline living stream Reported-by: Ricardo Constantino <wiiaboo@gmail.com> v16 fixed: 1. remove the snprintf and instead by get_segment_filename make safety 2. remove unnecessary loops 3. updated xmlStrcmp and xmlFree to av_* functions 4. merge code repeat into one function 5. add memory alloc faild check 6. update update_init_section and open_url 7. output safety error message when filename template not safe Suggested-by : wm4 <nfxjfg@googlemail.com> v17 fixed: 1. add memory alloc faild check 2. fix resource space error at free_representation v18 fixed: 1. add condition of template format v19 fixed: 1. fix typo of the option describe v20 fixed: 1. add the c->base_url alloc check 2. make the DASHTmplId same to dashenc v21 fixed: 1. remove get_repl_pattern_and_format and get_segment_filename 2. process use dashcomm APIs v22 fixed: 1. modify the include "dashcomm.h" to include "dash.h" 2. use internal API from dash_fill_tmpl_params to ff_dash_fill_tmpl_params Signed-off-by: Steven Liu <lq@onvideo.cn> Signed-off-by: samsamsam <samsamsam@o2.pl>
* Add FITS MuxerParas Chadha2017-08-301-1/+1
| | | | Signed-off-by: Paras Chadha <paraschadha18@gmail.com>
* Add FITS DemuxerParas Chadha2017-08-301-0/+1
| | | | Signed-off-by: Paras Chadha <paraschadha18@gmail.com>
* lavf/rawenc: Add little- and big-endian G.726 muxers.Carl Eugen Hoyos2017-08-261-2/+2
|
* lavf/g726: Demuxer for raw G.726 streams, both left- and right-justified.Carl Eugen Hoyos2017-08-241-0/+2
| | | | | Compatible with the binary encoder attached to ticket #6596 (right-aligned) and a sample from a SEG Mp3-Player (left-aligned).
* avformat: add SMPTE 337M demuxerfoo862017-07-191-0/+1
|
* avformat: add Gremlin Digital Video demuxerPaul B Mahol2017-06-111-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavf: remove the libnut library wrapperRostislav Pehlivanov2017-05-291-1/+0
| | | | | libnut is outdated and not developed anymore, all nut developments happens in this repo, so users are getting mislead
* Use AVOnce as a static variable consistentlyHendrik Leppkes2017-05-221-1/+1
| | | | | | | Using AVOnce as a stack variable makes no sense as the state is lost when the function exits. This fixes repeated calls to av(filter/device)_register_all
* img2dec: add support for piped SVG demuxingRostislav Pehlivanov2017-05-161-0/+1
| | | | | | | Only checks the extension and MIME type, since determining whether a file is SVG is difficult since they're just XML files. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* avcodec: add XPM decoder and demuxerParas Chadha2017-03-121-0/+1
| | | | Signed-off-by: Paras Chadha <paraschadha18@gmail.com>
* avfilter/allformats: make av_register_all thread safeMuhammad Faiz2017-03-071-7/+8
| | | | | | | use ff_thread_once Suggested-by: wm4 <nfxjfg@googlemail.com> Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
* avformat: add SCC muxerPaul B Mahol2017-01-301-1/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avformat: add Scenarist Closed Captions demuxerPaul B Mahol2017-01-251-0/+1
| | | | | | Fixes #4767. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avformat: add Sample Dump eXchange demuxerPaul B Mahol2017-01-251-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avformat: add MIDI Sample Dump Standard demuxerPaul B Mahol2017-01-221-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avformat: Auto-detect mjpeg 2000 in mpeg-tsStåle Kristoffersen2016-12-171-0/+1
| | | | | | | This makes it possible to decode motion jpeg 2000 encoded in a transport stream without a correct PMT/PAT. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat : add Photoshop PSD demuxer.Martin Vignali2016-12-141-0/+1
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat: Add fifo pseudo-muxerJan Sebechlebsky2016-08-221-0/+1
| | | | | Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
* avformat: add a TTA MuxerJames Almer2016-08-041-1/+1
| | | | | Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
* avformat: add an Ogg Video muxerJames Almer2016-07-201-0/+1
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* lavf: add libopenmpt demuxerJosh de Kock2016-07-151-0/+1
| | | | | | Fixes ticket #5623 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavf/img2dec: add pnm pipe demuxersClément Bœsch2016-06-221-0/+5
|
* avformat/allformats: Making av_register_all() thread-safe.Vivekanand2016-06-051-1/+2
| | | | | | | | | | When multiple threads tries to call av_register_all(), the first thread sets initialized to 1 and do the register process. At the same time, other thread might also call av_register_all(), which returns immediately because initialized is set to 1 (even when it has not completed registering codecs). We can avoid this problem if we set initialised to 1 while exiting from function. Github: Closes #196
* avformat: add MTAF demuxerPaul B Mahol2016-05-211-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avformat: add Wideband Single-bit Data (WSD) demuxerPeter Ross2016-04-301-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avformat: add hash and framehash muxersMoritz Barsnick2016-04-121-0/+2
| | | | | | Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: James Almer <jamrial@gmail.com>
* lavf/rawenc: Add a raw gsm muxer.Carl Eugen Hoyos2016-04-091-1/+1
|
* avformat: add aix demuxerPaul B Mahol2016-04-071-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avformat: add musx demuxerPaul B Mahol2016-04-051-0/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* Merge commit '2758cdedfb7ac61f8b5e4861f99218b6fd43491d'Derek Buitenhuis2016-02-291-55/+0
|\ | | | | | | | | | | | | | | | | | | | | This commit also disables the async fate test, because it used internal APIs in a non-kosher way, which no longer exists. * commit '2758cdedfb7ac61f8b5e4861f99218b6fd43491d': lavf: reorganize URLProtocols Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>