summaryrefslogtreecommitdiff
path: root/libavformat/mpegts.c
Commit message (Collapse)AuthorAge
* 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
* cosmetic change in resync code - added PAT scanning code if no SDT is found ↵Fabrice Bellard2003-07-15
| | | | | | (in the futur it would be interesting to give an API to change channel - also useful for DV input number or TV grab tunning Originally committed as revision 2043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Looks a tiny bit harder in mpegps_probe() for a valid start code. This isIsaac Richards2003-07-10
| | | | | | | | | needed to detect some files produced by pvr-250/350 capture cards. - Adds AC3 audio support to the mpegts demuxer, and makes it a little more tolerant of bad files. patch by (Isaac Richards <ijr at po dot cwru dot edu>) Originally committed as revision 2028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try to filter _all_ PATs if no SDT could be found patch by (<gbazin at ↵Michael Niedermayer2003-06-28
| | | | | | | | altern dot org>) + mpegtsenc.c compile fix by me Originally committed as revision 1995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpeg ts demux uses DVB SI info and generates correct PTS info - added ↵Fabrice Bellard2003-06-13
| | | | | | prototype mpeg ts mux Originally committed as revision 1956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid detecting mpeg stream when other formats embed mp3 tracks.François Revol2003-04-18
| | | | Originally committed as revision 1788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-11
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed libav to libavformatFabrice Bellard2002-11-25
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk