summaryrefslogtreecommitdiff
path: root/libavformat/mpegts.c
Commit message (Collapse)AuthorAge
...
* kill completely idiotic code which hides all but 2 streamsMichael Niedermayer2007-06-02
| | | | Originally committed as revision 9177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correct implementation of "try with auto_guess if first detection fails"Michael Niedermayer2007-06-02
| | | | | | (untested) Originally committed as revision 9175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r4802 (try with auto_guess if first detection fails)Michael Niedermayer2007-06-02
| | | | | | | this change is broken, 3/4 of the code added is unreachable, ill implement it correctly in a moment Originally committed as revision 9174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split mpeg2ts_raw mode into its own demuxer using such a flag is an ↵Michael Niedermayer2007-06-02
| | | | | | incredibly dirty hack Originally committed as revision 9173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* variable initialization (because of a gcc warning)Glenn A. Serre2007-05-29
| | | | | | patch by Glenn A. Serre gaserre spiresoftware com Originally committed as revision 9146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add an enum for need_parsingAurelien Jacobs2007-04-15
| | | | Originally committed as revision 8742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce two new logging functions av_hex_dump_log() and av_pkt_dump_log()Panagiotis Issaris2007-03-12
| | | | | | which use av_log() for logging instead of fprintf(). Originally committed as revision 8339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This fixes error handling for BeOS, removing the need for some ifdefs.François Revol2007-02-13
| | | | | | | | | AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h. Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* demux VC1 in mpegtsNico Sabbi2007-02-09
| | | | Originally committed as revision 7902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some context to av_log calls.Michel Bardiaux2007-01-31
| | | | | | patch by Michel Bardiaux, mbardiaux mediaxim be Originally committed as revision 7774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegts-documentation-only.patch -- adds documentation patch by Daniel ↵Daniel Kristjansson2007-01-23
| | | | | | | | Kristjansson / danielk mrl.nyu edu yes another 1 year old patch, this one though has one failed hunk Originally committed as revision 7676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* "converts printf's to avlog's" patch by Daniel Kristjansson / danielk ↵Daniel Kristjansson2007-01-23
| | | | | | | | | mrl.nyu edu another 1 year old patch forgoten by mans trailing whitespace removial by me Originally committed as revision 7674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make some symbols staticMåns Rullgård2006-11-11
| | | | Originally committed as revision 6973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-23
| | | | Originally committed as revision 6774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* scan s->probesize packets instead of MAX_SCAN_PACKETS (that is still the ↵Nico Sabbi2006-08-27
| | | | | | default value) Originally committed as revision 6110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-10
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-09
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Etsi identifies DTS audio with stream_private+descriptor 0x7b (in the PMT).Nico Sabbi2006-07-08
| | | | | | | | | This patch permits to recognize these streams but it's untested for lack of samples. Patch by Nico Sabbi <nicola_sabbi at fastwebnet it> Originally committed as revision 5671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add const to (mostly) char* and make some functions static, which aren't usedStefan Huehner2006-06-18
| | | | | | | outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org Originally committed as revision 5497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This patch simply adds demuxing support for AC-3 streams in DVB TSMåns Rullgård2006-04-01
| | | | | | | | | | | | files. In these streams AC-3 is given type 0x06 (private stream) and includes a descriptor with either tag 0x6A or 0x7A. The code already handles ATSC AC-3 which uses stream type 0x81. All the new patch does is look for any stream type 0x06 that has a descriptor with the proper tag (i.e. 0x6A or 0x7A) and if found forces it to be recognized as an AC-3 stream. From Andy Brown <abrown at daqtron com> Originally committed as revision 5260 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix memory leak on mpegts closeMåns Rullgård2006-04-01
| | | | | | found by Andy Brown <abrown at daqtron com> Originally committed as revision 5259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* generic crc calculation codeMichael Niedermayer2006-03-06
| | | | Originally committed as revision 5115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try with auto_guess if first detection failsNico Sabbi2006-01-02
| | | | Originally committed as revision 4802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added support for DVHS (192) packet sizeNico Sabbi2006-01-02
| | | | Originally committed as revision 4801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERSDiego Biurrun2005-09-23
| | | | | | | in libavformat to allow building (de)coders and (de)muxers independently at some point + support for this option in configure. Originally committed as revision 4611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Kill some compiler warnings. Compiled code verified identical after changes.Måns Rullgård2005-09-06
| | | | Originally committed as revision 4567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changing AVCodecContext codec -> *codec in AVStream so additions to ↵Michael Niedermayer2005-07-17
| | | | | | AVCodecContext dont randomize AVStream and break binary compatibility Originally committed as revision 4453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DVB subtitle decoder by (Ian Caulfield: imc25, cam ac uk)Michael Niedermayer2005-07-17
| | | | Originally committed as revision 4448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVPacket.posMichael Niedermayer2005-05-26
| | | | Originally committed as revision 4314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct number of bits for PTS.Wolfram Gloger2005-05-06
| | | | | | Patch by Wolfram Gloger <wmglo at dent dot med dot uni-muenchen dot de> Originally committed as revision 4188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* switch to native time basesMichael Niedermayer2005-04-30
| | | | Originally committed as revision 4168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Writing to freed memory in write_section_data() patch by (Wolfram Gloger ↵Wolfram Gloger2005-02-16
| | | | | | <wmglo dent dot med dot uni-muenchen de>) Originally committed as revision 3957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use native timebase for seekingMichael Niedermayer2004-10-10
| | | | | | direction flag for seeking Originally committed as revision 3577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libdts support by (Benjamin Zores <ben at geexbox dot org>)Michael Niedermayer2004-07-14
| | | | Originally committed as revision 3310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix playback of http://www.zonque.org/test-long.psMichael Niedermayer2004-05-31
| | | | | | better seeking, (not to keyframes but at least to the start of packets ...) Originally committed as revision 3182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store index for seeking in the native timebase of each streamMichael Niedermayer2004-05-23
| | | | | | | | set correct timebase for nut merge mpeg-ts seeking with existing seeking code 10l fix in mpegts (27mhz vs. 90khz) Originally committed as revision 3152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move time_base (pts_num/pts_den) from AVFormatContext -> AVStreamMichael Niedermayer2004-05-21
| | | | Originally committed as revision 3148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Off-by-two in mpegts.c patch by (Wolfram Gloger <wmglo at dent dot med dot ↵Wolfram Gloger2004-04-13
| | | | | | uni-muenchen dot de>) Originally committed as revision 3011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support raw mpegts streams from dvr patch by (wmglo at dent dot med dot ↵Wolfram Gloger2004-03-26
| | | | | | uni-muenchen dot de) Originally committed as revision 2931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avsync patch by (Gildas Bazin <gbazin at altern dot org>)Gildas Bazin2004-02-20
| | | | Originally committed as revision 2805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* memleak patch by (Gildas Bazin <gbazin at altern dot org>)Gildas Bazin2004-01-08
| | | | Originally committed as revision 2678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better get_packet_size and probeMichael Niedermayer2003-12-09
| | | | Originally committed as revision 2578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support more codecs in MPEG-TS patch by (mru at kth dot se (Måns Rullgård))Måns Rullgård2003-11-12
| | | | Originally committed as revision 2511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seek supportFabrice Bellard2003-11-10
| | | | Originally committed as revision 2501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpeg TS demux API (called from RTP layer) - raw mpeg TS reader (uses fake ↵Fabrice Bellard2003-10-29
| | | | | | codec MPEG2TS) Originally committed as revision 2446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable decoding of more mpeg-ts streams for pcHDTV patch by (Doug Larrick ↵Doug Larrick2003-10-15
| | | | | | <doug at ties dot org>) Originally committed as revision 2390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* disable encoders where appropriate (patch courtesy of BEROMike Melanson2003-10-14
| | | | | | <bero -at- geocities.co.jp>) Originally committed as revision 2375 to svn://svn.ffmpeg.org/ffmpeg/trunk