summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
Commit message (Collapse)AuthorAge
...
* SCR timestamp fix try #1Michael Niedermayer2004-10-03
| | | | Originally committed as revision 3550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify put_padding_packet()Michael Niedermayer2004-10-01
| | | | Originally committed as revision 3549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move free() of AVStream priv data to av_write_trailer()Michael Niedermayer2004-10-01
| | | | Originally committed as revision 3548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 64bit and reading over the end of the array fixesMichael Niedermayer2004-10-01
| | | | Originally committed as revision 3547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not call (av_)abort()Michael Niedermayer2004-10-01
| | | | Originally committed as revision 3544 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
* cvs diff before cvs commitMike Melanson2004-06-19
| | | | Originally committed as revision 3240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sweeping change from -EIO -> AVERROR_IOMike Melanson2004-06-19
| | | | Originally committed as revision 3239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3 bugfix, bug found by "Ben Cooley" <bcooley at dstreamtech dot com>Michael Niedermayer2004-06-09
| | | | Originally committed as revision 3209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly interleave packets during encodingMichael Niedermayer2004-05-29
| | | | | | | dts/pts fixed for streamcopy dont use coded_frame->key_frame hack in muxers, use AVPacket.flags instead Originally committed as revision 3171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass AVPacket into av_write_frame()Michael Niedermayer2004-05-29
| | | | | | | | | | fixes the random dts/pts during encoding asf preroll fix no more initial zero frames for b frame encoding mpeg-es dts during demuxing fixed .ffm timestamp scale fixed, ffm is still broken though Originally committed as revision 3168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont add padding in the middle of the data patch by (Sidik Isani <isani at ↵Sidik Isani2004-05-25
| | | | | | cfht dot hawaii dot edu>) Originally committed as revision 3158 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
* mpeg SVCD compatibility, SCR fixes, standard complianceHauke Duden2004-04-26
| | | | | | | | | | | | | | | | | | | - fixed VBR+constrained bitstream header flags for non-VCD - more sane (and SVCD compatible) value for video stream->max_buffer_size - always write at least one PES header stuffing byte for MPEG-2 to prevent accidental start code generation - do not write more than 16 stuffing bytes in a PES header (not allowed). Use padding packets instead. - include a PES extension in the first MPEG-2 packet - fill the first pack of SVCD files with padding - "sanity hack" that prevents the SCR from overtaking the PTS for non-VCD - fixed VCD PTS values to correspond to the SCR - always include DTS in the first SVCD packet (fixes lots of compatibility problems with DVD players) patch by (Hauke Duden <H.NS.Duden at gmx dot net>) Originally committed as revision 3078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mpeg start codes patch by ("Dmitry Borisov" <jbors at mail dot ru>)Dmitry Borisov2004-04-23
| | | | Originally committed as revision 3046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moving nearly identical binary search code from nut/mpeg/asf to utils.cMichael Niedermayer2004-04-12
| | | | Originally committed as revision 3003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warning patrolFalk Hüffner2004-03-24
| | | | Originally committed as revision 2925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2004-03-03
| | | | Originally committed as revision 2840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improved VCD support patch by ("Hauke Duden" <H.NS.Duden at gmx dot net>)Hauke Duden2004-02-19
| | | | | | | | | | | | | | | | - the first audio and video packs now contain only a system header and lots of padding. - no system headers in any packs other than the first ones - the two system headers only contain information about "their" stream - fixed some header values (muxrate, some flags, ...) so that they have the values specified by the standard - padding packs are inserted if the mux rate would be below 75 packs per second (the rate must not be below or above that value). - fixed the SCR of the packs - 20 zero bytes are now inserted at the end of each audio pack, after the data packet Originally committed as revision 2804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Patch for MPEG-2 VOB headers by (Jimmy Blair <blueskyjb at verizon dot net>)Michael Niedermayer2004-02-01
| | | | Originally committed as revision 2740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CONFIG_ENCODERS fix by (Ronald Bultje <rbultje at ronald dot bitfreak dot net>)Michael Niedermayer2004-01-17
| | | | Originally committed as revision 2711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seeking stuffMichael Niedermayer2004-01-17
| | | | | | | adaptively change middle position selection algo for seeking, this avoids some ugly worstcases of the interpolated variant avoid backward search for mpeg where possible, its 17 times slower then forward according to my benchmark Originally committed as revision 2710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store searched distance in index, so we dont waste time searching for ↵Michael Niedermayer2004-01-17
| | | | | | | | keyframes where we already searched asf seek fixes & use keyframe pos/timestamp cache Originally committed as revision 2709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* caching of timestamps for mpeg-ps so seeking is fasterMichael Niedermayer2004-01-13
| | | | | | | | | move (av_)find_stream_index() to utils.c as its usefull outside mpeg.c assert checking enabled, to find bugs quicker, should obviously be disabled later (av_)add_index_entry() inserts new entries so that the list stays ordered and updates entries if already in it (av_)index_search_timestamp() cleanup (kill ugly goto) and shorter Originally committed as revision 2697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* harcoded DTS computation for mpegFabrice Bellard2003-12-18
| | | | Originally committed as revision 2624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* primitive LPCM generatorFabrice Bellard2003-12-16
| | | | Originally committed as revision 2622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better and simpler logic for MPEG muxing - fixed rare MPEG muxing PTS ↵Fabrice Bellard2003-12-16
| | | | | | generation bug (stuffing is added in such rare cases) - fixed AC3 payload size generation - generate correct AC3 frame header (need spec checking) Originally committed as revision 2621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* suppress PTS in packets when not needed (slightly smaller files), fixed PTS ↵Michel Bardiaux2003-12-09
| | | | | | generation in some cases, added provision for DTS generation, slightly better SCR generation (initial patch by Michel Bardiaux) Originally committed as revision 2585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seek supportFabrice Bellard2003-11-10
| | | | Originally committed as revision 2501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make AVFMT_NOHEADER flag dynamic - added av_open_input_stream()Fabrice Bellard2003-10-29
| | | | Originally committed as revision 2447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1/0 fix by (Tim Allen <tim at proximity dot com dot au>)Michael Niedermayer2003-10-28
| | | | Originally committed as revision 2444 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
* init_put_bits changedAlex Beregszaszi2003-10-13
| | | | Originally committed as revision 2369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed invalid sequence end codeFabrice Bellard2003-09-10
| | | | Originally committed as revision 2256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 64 bit pts for writing - more const usageFabrice Bellard2003-09-10
| | | | Originally committed as revision 2255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* memleak fix by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michael Niedermayer2003-09-09
| | | | Originally committed as revision 2242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix MPEG-TS missdetected as MPEG-PSMichael Niedermayer2003-09-01
| | | | Originally committed as revision 2194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* exports mpegps_demuxFabrice Bellard2003-08-08
| | | | Originally committed as revision 2112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed warningsFabrice Bellard2003-07-17
| | | | Originally committed as revision 2059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Write correct MPEG2-PS streams patch by (mru at users dot sourceforge dot ↵Måns Rullgård2003-07-15
| | | | | | net (Måns Rullgård)) Originally committed as revision 2048 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
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-11
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid too many false detectionsFabrice Bellard2003-02-02
| | | | Originally committed as revision 1537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added DVD LPCM decoding supportFabrice Bellard2003-01-31
| | | | Originally committed as revision 1525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mimetype fixes patch by (Ryutaroh Matsumoto <ryutaroh at it dot ss dot ↵Ryutaroh Matsumoto2002-12-20
| | | | | | titech dot ac dot jp>) Originally committed as revision 1352 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