summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Linux Media Labs MPEG-4 (LMLM4) demuxerIvo van Poorten2008-01-07
| | | | Originally committed as revision 11456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement read_timestamp and enable seeking in PVA files.Ivo van Poorten2008-01-07
| | | | Originally committed as revision 11455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsIvo van Poorten2008-01-07
| | | | Originally committed as revision 11454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unnecessary checkIvo van Poorten2008-01-07
| | | | Originally committed as revision 11453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ff_parse_pes_pts for parsing an MPEG-PES timestampIvo van Poorten2008-01-07
| | | | Originally committed as revision 11452 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
* Move printing of the license status at the end of configure output, soRoberto Togni2008-01-07
| | | | | | that users won't miss it Originally committed as revision 11450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dont crash if resampling is requested but no audio packets are ever processed.Andreas Öman2008-01-07
| | | | Originally committed as revision 11449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix access to the last element of the table.Aurelien Jacobs2008-01-07
| | | | | | (size of the table vs. number of elements in the table) Originally committed as revision 11448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark the ff_svq1_frame_size_table as constant.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move wmv1_scantable to .rodata section by making it an array of arrays.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the av_class member of PPContext a poiner to constant AVClass.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark the tables in g726.c as constant.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make v4l.c's video_formats constant and static.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused symbol.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split out init of downmix coeffs into a separate function that can be calledJustin Ruggles2008-01-07
| | | | | | only when needed Originally committed as revision 11441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_mkv_codec_tags lie entirely in .rodata section.Aurelien Jacobs2008-01-07
| | | | | | From: Diego 'Flameeyes' Pettenò < flameeyes _at_ gmail _dot_ com > Originally committed as revision 11440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded variable from AC3DecodeContextJustin Ruggles2008-01-06
| | | | Originally committed as revision 11439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make sure that the last coupling band stops at the end of the coupling rangeJustin Ruggles2008-01-06
| | | | Originally committed as revision 11438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Add another pair of parentheses to aid readability.Diego Biurrun2008-01-06
| | | | Originally committed as revision 11437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix phase flag processing for the case when coupling coordinates are reusedJustin Ruggles2008-01-06
| | | | | | for the right channel, but new for the left channel Originally committed as revision 11436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename two structures, identifiers starting with _[A-Z] are reserved.Diego Biurrun2008-01-06
| | | | Originally committed as revision 11435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, split overly long linesBaptiste Coudurier2008-01-06
| | | | Originally committed as revision 11434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fractional parts of motion vectors should be accounted separately tooKostya Shishkov2008-01-06
| | | | Originally committed as revision 11433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVRtpPayloadTypes static and constantDiego Pettenò2008-01-06
| | | | | | Patch by Diego 'Flameeyes' Pettenò (flameeyes AT gmail DOT com) Originally committed as revision 11432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix playing of multichannel audio for codecs without downmixingJustin Ruggles2008-01-06
| | | | Originally committed as revision 11431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, superfluous spaceIvo van Poorten2008-01-05
| | | | Originally committed as revision 11430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* proper check for valid pva_ptsIvo van Poorten2008-01-05
| | | | Originally committed as revision 11429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not return an error, but warn and recover when encountering an audio packetIvo van Poorten2008-01-05
| | | | | | that should countain a signaled mpeg-pes packet. Originally committed as revision 11428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* validate streamid before useIvo van Poorten2008-01-05
| | | | Originally committed as revision 11427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change audio codec id to mp2Ivo van Poorten2008-01-05
| | | | Originally committed as revision 11426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* proper type and initialization of pva_ptsIvo van Poorten2008-01-05
| | | | Originally committed as revision 11425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unnecessary shiftIvo van Poorten2008-01-05
| | | | Originally committed as revision 11424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for request_channels in dca init functionJustin Ruggles2008-01-05
| | | | Originally committed as revision 11423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add downmixing support to libfaad decoderJustin Ruggles2008-01-05
| | | | Originally committed as revision 11422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentation after last commitJustin Ruggles2008-01-05
| | | | Originally committed as revision 11421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move E-AC3 header parsing to ff_ac3_parse_header()Justin Ruggles2008-01-05
| | | | Originally committed as revision 11420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded variables from AC3HeaderInfoJustin Ruggles2008-01-05
| | | | Originally committed as revision 11419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not set channels before checking request_channelsJustin Ruggles2008-01-05
| | | | Originally committed as revision 11418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use request_channels in liba52 decoderJustin Ruggles2008-01-05
| | | | Originally committed as revision 11417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationJustin Ruggles2008-01-05
| | | | Originally committed as revision 11416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for request_channels at codec initJustin Ruggles2008-01-05
| | | | Originally committed as revision 11415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not set channels before checking request_channelsJustin Ruggles2008-01-05
| | | | Originally committed as revision 11414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update maintainership information after the rtp.c splitLuca Abeni2008-01-05
| | | | Originally committed as revision 11413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adjust output channels based on AVCodecContext.request_channels in AC3 parserJustin Ruggles2008-01-05
| | | | Originally committed as revision 11412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop non key frames before the first key frame.Michael Niedermayer2008-01-05
| | | | Originally committed as revision 11411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* install crc.h which is now part of public APIAurelien Jacobs2008-01-04
| | | | Originally committed as revision 11410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve CRC APIAurelien Jacobs2008-01-04
| | | | | | | - don't export any global var - provide either generated or hardcoded tables Originally committed as revision 11409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the RTP muxer out of rtp.c, to simplify the RTSP demuxer's dependenciesLuca Abeni2008-01-04
| | | | Originally committed as revision 11408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable proper output from the LFE channel, based on patch from Mathias Rauen ↵Benjamin Larsson2008-01-04
| | | | | | dear dot madshi at net Originally committed as revision 11407 to svn://svn.ffmpeg.org/ffmpeg/trunk