summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
Commit message (Collapse)AuthorAge
* lavf: use designated initialisers for all (de)muxers.Anton Khirnov2011-07-17
| | | | It's more readable and less prone to breakage.
* Replace DEBUG_SEEK/DEBUG_SI + av_log combinations by av_dlog.Diego Biurrun2011-06-10
|
* Remove some non-compiling debug messages.Diego Biurrun2011-06-08
|
* Replace some printf instances in debug code by av_log.Diego Biurrun2011-06-07
|
* Remove stray extra arguments from av_dlog() invocations.Diego Biurrun2011-06-02
|
* Replace some commented-out debug printf() / av_log() messages with av_dlog().Diego Biurrun2011-04-29
|
* avio: introduce an AVIOContext.seekable fieldAnton Khirnov2011-04-03
| | | | Use it instead of url_is_streamed and AVIOContext.is_streamed.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov2011-03-16
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: deprecate url_feofAnton Khirnov2011-03-07
| | | | | | AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov2011-03-04
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: replace all uses of url_fskip with avio_seekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefix for url_fseekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefixes for get_* functionsAnton Khirnov2011-02-21
| | | | | | | | | | | | | | In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: move internal functions from avformat.h to internal.hAnton Khirnov2011-02-06
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip pes payload during probing to avoid start code emulation.Janne Grunau2010-05-24
| | | | | | Patch by Janne Grunau, janne-ffmpeg jannau net Originally committed as revision 23286 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dont give up after 100kb of zero bytes but returnd EAGAINMichael Niedermayer2010-02-10
| | | | | | fixes issue1729 Originally committed as revision 21738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set AVPacket.pos in MPEG-PS demuxer.Michael Niedermayer2010-02-02
| | | | Originally committed as revision 21604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also print the number of invalid packets in the debug output.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flip the comparission direction of vid+audio+priv1 and pspack, it appears to ↵Michael Niedermayer2009-12-08
| | | | | | | | | have been wrong. Fixes issue1571. Originally committed as revision 20762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve sofdec dectection to avoid false positives for MP2.tralph11@yahoo.com2009-10-20
| | | | | | Patch by tralph11, tralph11 yahoo Originally committed as revision 20333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mpeg_probe() pass probetest.Michael Niedermayer2009-09-15
| | | | Originally committed as revision 19854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly stricter MPEG-PES probing, fixes issue 1383.Reimar Döffinger2009-09-15
| | | | Originally committed as revision 19852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove 2 ++ from check_pes() that are useless, found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split TrueHD decoder from MLPRamiro Polla2009-03-19
| | | | Originally committed as revision 18045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark dvdaudio_substream_type variable as av_uninit to work around falseDiego Biurrun2009-03-05
| | | | | | positive uninitialized variable warning. Originally committed as revision 17825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow demuxing of audio substreams stored as 0x06 type.Benoit Fouet2009-02-11
| | | | | | | Fixes issue 725: MPEG2 PS with PCM audio. On behalf of Jai. Originally committed as revision 17150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase the number of packets required to identify as MPEG PES to keep fromAlex Converse2009-02-09
| | | | | | identifying MP3 files with padding or garbage at the beginning. Originally committed as revision 17091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum typers instead of int.Diego Pettenò2008-10-02
| | | | | | Patch by Diego 'Flameeyes' Pettenò: flameeyes gmail Originally committed as revision 15517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-08
| | | | | | | | | | | bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vertical alignMichael Niedermayer2008-08-26
| | | | Originally committed as revision 14972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add flag to mark demuxers that can output discontinuous timestamps.Michael Niedermayer2008-08-15
| | | | | | (could also be added to muxers if someone wants) Originally committed as revision 14777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CODEC_ID_PROBE when the mpeg-ps demuxer does not know exactly whichMichael Niedermayer2008-07-12
| | | | | | | video codec is used. Fixes issue49 Departed Trailer.evo (mpeg ps missdetecting h264 as mpeg2video) Originally committed as revision 14196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless close funcsBaptiste Coudurier2008-06-19
| | | | Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check return of url_fseek in mpeg timestamp reading code.Joakim Plate2008-05-29
| | | | | | Patch by Joakim elupus ecce se Originally committed as revision 13527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support dvd pcm 20/24 bits, patch by Lars Täuber, lars.taeuber gmx netLars Täuber2008-05-21
| | | | Originally committed as revision 13206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support invalid mpeg created by vdrMichael Niedermayer2008-04-29
| | | | | | | (http://www.lucke.in-berlin.de/test_streams/last_played_fine_with_r7852_001.vdr). fixes issue434 Originally committed as revision 13014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore flags after pts/dts if there are no bytes left.Michael Niedermayer2008-03-04
| | | | | | Fixes decoding of vdr-radio.vdr. (issue198) Originally committed as revision 12310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Suppress runaway index on streamed inputMichel Bardiaux2008-01-14
| | | | Originally committed as revision 11527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* user specifyable maximum amount of memory to use for the index.Paul Kelly2008-01-13
| | | | | | | patch by Paul Kelly paul stjohnspoint co uk with some changes by me Originally committed as revision 11521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move parsing of MPEG-PES timestamp to mpeg.h (as an inline function) so itIvo van Poorten2008-01-07
| | | | | | can easily be reused by other demuxers for formats that encapsulate MPEG-PES. Originally committed as revision 11451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use one shift less in get_pts()Ivo van Poorten2008-01-03
| | | | Originally committed as revision 11383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r6124, the change was just wrong, other formats than MPEG-PS can beAllan Sandfeld Jensen2007-12-25
| | | | | | | | | | | | | | | stored in CDXA as well. And the need for a CDXA specific check is questionable. Also ive ok-ed that patch instead of mans ... fixes issue287 (psxstr misdetection as MPEG-PS) Original commit message: add support for information in CDXA format patch by Allan Sandfeld Jensen % kde A carewolf P com % Original thread: Date: Aug 18, 2006 6:33 PM Subject: [Ffmpeg-devel] CDXA in libavformat [patch] Originally committed as revision 11314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make mpeg-ps probe less happy with random dataMichael Niedermayer2007-12-03
| | | | | | fixes missdetection of O-MP3-5.mp3 Originally committed as revision 11149 to svn://svn.ffmpeg.org/ffmpeg/trunk