Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | avformat: Remove non-compiling and/or silly commented-out printf/av_log ↵ | Diego Biurrun | 2012-10-01 | 1 | -2/+0 |
| | | | | statements | ||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -24/+24 |
| | |||||
* | Improve descriptiveness of a number of codec and container long names | Diego Biurrun | 2012-07-30 | 1 | -1/+1 |
| | |||||
* | mpeg: remove disabled code | Diego Biurrun | 2012-07-16 | 1 | -41/+0 |
| | |||||
* | cosmetics: Align muxer/demuxer declarations | Martin Storsjö | 2012-04-06 | 1 | -1/+1 |
| | | | | | | | Also add missing trailing commas, break long codec_tag lines and add spaces in codec_tag declarations. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | lavf: remove AVFormatParameters from AVFormatContext.read_header signature | Anton Khirnov | 2012-01-27 | 1 | -2/+1 |
| | |||||
* | Eliminate pointless 0/NULL initializers in AVCodec and similar declarations. | Diego Biurrun | 2011-11-28 | 1 | -1/+0 |
| | |||||
* | lavf: replace av_new_stream->avformat_new_stream part II. | Anton Khirnov | 2011-10-19 | 1 | -1/+2 |
| | | | | | | | | Manual replacements are done in this commit. In many cases, the id is some constant made up number (e.g. 0 for video and 1 for audio), which is then not used in the demuxer for anything. Those ids are removed. | ||||
* | mpegps: Use av_get_packet() instead of poorly emulating it. | Alex Converse | 2011-10-07 | 1 | -8/+1 |
| | |||||
* | mpeg probe: check the 2/4-bit synchronization value found after a ↵ | Alex Converse | 2011-09-29 | 1 | -1/+6 |
| | | | | pack_start_code. | ||||
* | mpegps: Handle buffer exhaustion when reading packets. | Alex Converse | 2011-09-23 | 1 | -3/+9 |
| | |||||
* | lavf: use designated initialisers for all (de)muxers. | Anton Khirnov | 2011-07-17 | 1 | -9/+8 |
| | | | | It's more readable and less prone to breakage. | ||||
* | Replace DEBUG_SEEK/DEBUG_SI + av_log combinations by av_dlog. | Diego Biurrun | 2011-06-10 | 1 | -9/+3 |
| | |||||
* | Remove some non-compiling debug messages. | Diego Biurrun | 2011-06-08 | 1 | -3/+0 |
| | |||||
* | Replace some printf instances in debug code by av_log. | Diego Biurrun | 2011-06-07 | 1 | -2/+3 |
| | |||||
* | Remove stray extra arguments from av_dlog() invocations. | Diego Biurrun | 2011-06-02 | 1 | -1/+1 |
| | |||||
* | Replace some commented-out debug printf() / av_log() messages with av_dlog(). | Diego Biurrun | 2011-04-29 | 1 | -4/+3 |
| | |||||
* | avio: introduce an AVIOContext.seekable field | Anton Khirnov | 2011-04-03 | 1 | -1/+1 |
| | | | | Use it instead of url_is_streamed and AVIOContext.is_streamed. | ||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes sense | Anton Khirnov | 2011-03-16 | 1 | -9/+9 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | avio: deprecate url_feof | Anton Khirnov | 2011-03-07 | 1 | -2/+2 |
| | | | | | | 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_ftell | Anton Khirnov | 2011-03-04 | 1 | -5/+5 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | lavf: replace all uses of url_fskip with avio_seek | Anton Khirnov | 2011-03-01 | 1 | -9/+9 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | avio: avio_ prefix for url_fseek | Anton Khirnov | 2011-03-01 | 1 | -5/+5 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | avio: avio_ prefixes for get_* functions | Anton Khirnov | 2011-02-21 | 1 | -39/+39 |
| | | | | | | | | | | | | | | 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 Khirnov | 2011-02-20 | 1 | -4/+4 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | lavf: move internal functions from avformat.h to internal.h | Anton Khirnov | 2011-02-06 | 1 | -0/+1 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice. | Diego Elio Pettenò | 2011-01-26 | 1 | -1/+1 |
| | | | | | 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 documentation | Måns Rullgård | 2010-06-30 | 1 | -1/+1 |
| | | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Skip pes payload during probing to avoid start code emulation. | Janne Grunau | 2010-05-24 | 1 | -2/+6 |
| | | | | | | 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, which | Stefano Sabatini | 2010-03-30 | 1 | -18/+18 |
| | | | | | | 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 EAGAIN | Michael Niedermayer | 2010-02-10 | 1 | -2/+7 |
| | | | | | | fixes issue1729 Originally committed as revision 21738 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Set AVPacket.pos in MPEG-PS demuxer. | Michael Niedermayer | 2010-02-02 | 1 | -0/+1 |
| | | | | Originally committed as revision 21604 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Also print the number of invalid packets in the debug output. | Michael Niedermayer | 2009-12-08 | 1 | -1/+1 |
| | | | | 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 Niedermayer | 2009-12-08 | 1 | -1/+1 |
| | | | | | | | | | 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.com | 2009-10-20 | 1 | -0/+2 |
| | | | | | | Patch by tralph11, tralph11 yahoo Originally committed as revision 20333 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Make mpeg_probe() pass probetest. | Michael Niedermayer | 2009-09-15 | 1 | -3/+3 |
| | | | | Originally committed as revision 19854 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Slightly stricter MPEG-PES probing, fixes issue 1383. | Reimar Döffinger | 2009-09-15 | 1 | -1/+2 |
| | | | | Originally committed as revision 19852 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Remove 2 ++ from check_pes() that are useless, found by CSA. | Michael Niedermayer | 2009-04-17 | 1 | -2/+0 |
| | | | | Originally committed as revision 18577 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Split TrueHD decoder from MLP | Ramiro Polla | 2009-03-19 | 1 | -1/+1 |
| | | | | Originally committed as revision 18045 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Mark dvdaudio_substream_type variable as av_uninit to work around false | Diego Biurrun | 2009-03-05 | 1 | -1/+1 |
| | | | | | | 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 Fouet | 2009-02-11 | 1 | -2/+23 |
| | | | | | | | 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 from | Alex Converse | 2009-02-09 | 1 | -1/+1 |
| | | | | | | 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 Biurrun | 2009-01-19 | 1 | -1/+1 |
| | | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Use enum typers instead of int. | Diego Pettenò | 2008-10-02 | 1 | -1/+3 |
| | | | | | | 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 to | Luca Abeni | 2008-09-08 | 1 | -4/+4 |
| | | | | | | | | | | | 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 align | Michael Niedermayer | 2008-08-26 | 1 | -5/+5 |
| | | | | Originally committed as revision 14972 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Add flag to mark demuxers that can output discontinuous timestamps. | Michael Niedermayer | 2008-08-15 | 1 | -1/+1 |
| | | | | | | (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 which | Michael Niedermayer | 2008-07-12 | 1 | -1/+1 |
| | | | | | | | 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 funcs | Baptiste Coudurier | 2008-06-19 | 1 | -6/+1 |
| | | | | Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk |