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
2011-11-05mpegts: fix Continuity Counter error detectionJindrich Makovicka
According to MPEG-TS specs, the continuity_counter shall not be incremented when the adaptation_field_control of the packet equals '00' or '10'. Signed-off-by: Jindrich Makovicka <jindrich.makovicka@nangu.tv> Signed-off-by: Anton Khirnov <anton@khirnov.net> (cherry picked from commit 8923cfa328e8eb565aebcfe8672b276fd1c19bf7) Signed-off-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2010-05-22In ts demuxer, output pes packet as soon as they are complete.Janne Grunau
This is needed for subtitles where packets are infrequent. Patch by Janne Grunau, janne-ffmpeg at jannau dot net. backport r23157 by bcoudurier Originally committed as revision 23226 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-04-25Mark av_metadata_set() as deprecated, and use av_metadata_set2()Stefano Sabatini
in its place. av_metadata_set() is going to be dropped at the next major bump. Originally committed as revision 22961 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Disable LATM AAC in mpegts, this is not supported and produce too manyBaptiste Coudurier
bug reports. Also warn the user about it. Originally committed as revision 22947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-16rename av_program_add_stream_index to ff_program_add_stream_indexAurelien Jacobs
it is an internal function, not part of public API Originally committed as revision 22561 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Replace last occurrence of the deprecated match_ext() withStefano Sabatini
av_match_ext(). Originally committed as revision 22351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-02Fix buildMåns Rullgård
Originally committed as revision 21602 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-02Fix warnings about implicit function declaration when compiling rtpdec.cAlexis Ballier
Patch by Alexis Ballier, alexis D ballier A gmail Originally committed as revision 21601 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-14remove useless type declarationsBaptiste Coudurier
Originally committed as revision 21206 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-08move code to avoid forward declarationBaptiste Coudurier
Originally committed as revision 20475 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-08Let pmt override stream info when encoutered later in the ts file.Baptiste Coudurier
Do not set codec id based on pes start code, this is unreliable. Fix gazeta-20090408-1456-aa.ts Originally committed as revision 20474 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-08Support some LATM AAC streams (they can be decoded with MPlayer).Carl Eugen Hoyos
Originally committed as revision 20472 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-29Support demuxing teletext in DVB streams.Francesco Lavra
Original patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 20414 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-19handle_packets takes number of packets as arg, avoid reading too muchBaptiste Coudurier
Originally committed as revision 20288 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-19Increase max resync size, fix demuxing of dvgrab-2009.03.28_19-07-22.m2tBaptiste Coudurier
Print error when max resync size is reached and return EAGAIN instead of INVALIDDATA, so user can retry if wanted. Originally committed as revision 20286 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-11Allow demuxing of E-AC3 (stream type 0x84) in MPEG-TS.Carl Eugen Hoyos
Originally committed as revision 20200 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-05Allow the combined TrueHD/AC3 tracks on Blu-Ray discs to be demuxed as two ↵Ian Caulfield
separate streams. Patch by Ian Caulfield, ian D caulfield A gmail Originally committed as revision 20168 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-14ensure pes buffer is set to avoid segvBaptiste Coudurier
Originally committed as revision 19836 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-14reset pes state to skip after flushing, avoid segv with ↵Baptiste Coudurier
dvgrab-2009.03.28_19-07-22.m2t Originally committed as revision 19835 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06disable new seeking code in mpeg-ts per #ifdef (use old read_seek by default)Ivan Schreter
Originally committed as revision 19788 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-27Cosmetic changes in read_seek* routines.Ivan Schreter
Originally committed as revision 19723 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-27Decoder for LPCM as used in Bluray discs.Christian Schmidt
Patch by Christian Schmidt, schmidt digadd de Originally committed as revision 19722 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-25Add Bluray Subtitle SupportStephen Backway
Patch by Stephen Backway, stev391 A exemail D com D au Originally committed as revision 19699 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-25mpegts: change variable-length array to fixed lengthMåns Rullgård
The difference between 188 and 204 is not worth worrying about. Originally committed as revision 19697 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-22Use generic multi-stream key frame finding routine to implement read_seek2 ↵Ivan Schreter
and map read_seek to read_seek2. Originally committed as revision 19681 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-30init pes dts and pts to AV_NOPTS_VALUE, fix issue #1297Baptiste Coudurier
Originally committed as revision 19546 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-29Stop parsing in read_header only after finding pmt, andBaptiste Coudurier
do not close pat filter so further pmt can be parsed. Fix issue #1294. Originally committed as revision 19530 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-25Only set CODEC_ID_PROBE when a packet from a stream having a PES headerBaptiste Coudurier
is read. Originally committed as revision 19273 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-20add 0-termination in table, patch by Wolfram Gloger, wmglo at dent dot med ↵Wolfram Gloger
dot uni-muenchen dot de Originally committed as revision 19229 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-02do not parse full header for private streamsBaptiste Coudurier
Originally committed as revision 19075 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-02correctly handle maximum streams limitBaptiste Coudurier
Originally committed as revision 19074 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-02export data from private streamsBaptiste Coudurier
Originally committed as revision 19073 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31initialize pes state to skipBaptiste Coudurier
Originally committed as revision 19029 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31print reg desc in a more friendly wayBaptiste Coudurier
Originally committed as revision 19021 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31give context to dprintfBaptiste Coudurier
Originally committed as revision 19020 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31print registration descriptor in debugBaptiste Coudurier
Originally committed as revision 19019 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-310x7a is E-AC3 descriptorBaptiste Coudurier
Originally committed as revision 19017 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31set codec_tag to stream type, so user can deal with itBaptiste Coudurier
Originally committed as revision 19013 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31set codec_tag to registration descriptor if presentBaptiste Coudurier
Originally committed as revision 19012 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31add streams even if they are not present in PMT, fix #1092 and #835Baptiste Coudurier
Originally committed as revision 19011 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31remove no longer needed fake dvbsub stream typeBaptiste Coudurier
Originally committed as revision 19010 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31reindentBaptiste Coudurier
Originally committed as revision 19009 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31remove no longer needed initBaptiste Coudurier
Originally committed as revision 19008 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31factorizeBaptiste Coudurier
Originally committed as revision 19007 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31simplify and mergeBaptiste Coudurier
Originally committed as revision 19006 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31move new_pes_av_stream to avoid forward declarationBaptiste Coudurier
Originally committed as revision 19005 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31remove definesBaptiste Coudurier
Originally committed as revision 19004 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31rework stream type and codec identificationBaptiste Coudurier
Originally committed as revision 19003 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-31cosmetics, reindent, remove useless braces, whitespacesBaptiste Coudurier
Originally committed as revision 19002 to svn://svn.ffmpeg.org/ffmpeg/trunk