| Commit message (Expand) | Author | Age | Files | Lines |
* | lavf: more correct printf format specifiers | Diego Biurrun | 2014-03-11 | 1 | -3/+5 |
* | asfdec: fix seeking with fragmented packets | Janne Grunau | 2014-02-12 | 1 | -0/+10 |
* | asfdec: short-circuit seeking to the start of stream | Andrew Kelley | 2014-02-12 | 1 | -0/+7 |
* | asfdec: check ff_get_guid() return values during seeking | Janne Grunau | 2014-02-12 | 1 | -10/+16 |
* | asfdec: Check the return value of asf_read_stream_properties | Martin Storsjö | 2013-09-30 | 1 | -1/+3 |
* | asfdec: substract preroll time from marker presentation time | Vladimir Pantelic | 2013-09-19 | 1 | -0/+2 |
* | Disable deprecation warnings for cases where a replacement is available | Diego Biurrun | 2013-08-02 | 1 | -0/+3 |
* | Remove commented-out debug #define cruft | Diego Biurrun | 2013-05-16 | 1 | -2/+0 |
* | avformat: Drop unnecessary ff_ name prefixes from static functions | Diego Biurrun | 2013-04-30 | 1 | -4/+4 |
* | riff: Move guid structs and helper functions into riff | Peter Ross | 2013-04-21 | 1 | -6/+0 |
* | avpacket: use AVBuffer to allow refcounting the packets. | Anton Khirnov | 2013-03-08 | 1 | -5/+11 |
* | asfdec: do not assume every AVStream has a corresponding ASFStream | Anton Khirnov | 2013-02-09 | 1 | -5/+6 |
* | asfdec: support reading ID3v2 tags in ASF files | Vladimir Pantelic | 2013-02-09 | 1 | -3/+19 |
* | asfdec: also read Metadata Library Object | Vladimir Pantelic | 2013-02-09 | 1 | -0/+6 |
* | asfdec: read the full Metadata Object, not just aspect ratio information | Vladimir Pantelic | 2013-02-09 | 1 | -24/+27 |
* | asfdec: silence a warning | Vladimir Pantelic | 2013-02-09 | 1 | -1/+1 |
* | asf: K&R formatting cosmetics | Diego Biurrun | 2013-02-06 | 1 | -274/+331 |
* | asfdec: Fix printf format string length modifier | Diego Biurrun | 2013-01-07 | 1 | -1/+1 |
* | asfdec: cosmetics, reformat ff_asf_parse_packet() | Anton Khirnov | 2012-10-24 | 1 | -66/+72 |
* | avformat: Convert some commented-out printf/av_log instances to av_dlog | Diego Biurrun | 2012-10-01 | 1 | -10/+19 |
* | avformat: Remove non-compiling and/or silly commented-out printf/av_log state... | Diego Biurrun | 2012-10-01 | 1 | -20/+0 |
* | avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union member | Martin Storsjö | 2012-09-04 | 1 | -1/+1 |
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -8/+8 |
* | Improve descriptiveness of a number of codec and container long names | Diego Biurrun | 2012-07-30 | 1 | -1/+1 |
* | asfdec: read attached pictures. | Anton Khirnov | 2012-07-02 | 1 | -0/+99 |
* | asfdec: Add an option for not searching for the packet markers | Martin Storsjö | 2012-04-07 | 1 | -1/+20 |
* | cosmetics: Align muxer/demuxer declarations | Martin Storsjö | 2012-04-06 | 1 | -1/+1 |
* | asf: only set index_read if the index contained entries. | Ronald S. Bultje | 2012-03-28 | 1 | -1/+1 |
* | asf: reset side data elements on packet copy. | Ronald S. Bultje | 2012-03-22 | 1 | -0/+2 |
* | asfdec: Do not set AVCodecContext.frame_size | Justin Ruggles | 2012-02-29 | 1 | -20/+0 |
* | asf: don't seek back on EOF. | Ronald S. Bultje | 2012-02-28 | 1 | -1/+1 |
* | asf: error out on ridiculously large minpktsize values. | Ronald S. Bultje | 2012-02-28 | 1 | -1/+5 |
* | asf: prevent packet_size_left from going negative if hdrlen > pktlen. | Ronald S. Bultje | 2012-02-18 | 1 | -0/+7 |
* | Move some conditionally used variables into the block where they are used. | Diego Biurrun | 2012-02-13 | 1 | -1/+1 |
* | lavf: remove AVFormatParameters from AVFormatContext.read_header signature | Anton Khirnov | 2012-01-27 | 1 | -1/+1 |
* | asfdec: add side data to ASFStream packet instead of output packet. | Justin Ruggles | 2011-12-21 | 1 | -1/+1 |
* | asf: use packet dts as approximation of pts | John Stebbins | 2011-12-02 | 1 | -1/+1 |
* | asf: do not call av_read_frame | Luca Barbato | 2011-12-02 | 1 | -1/+1 |
* | lavf: make av_set_pts_info private. | Anton Khirnov | 2011-11-30 | 1 | -1/+2 |
* | Replace ffmpeg references with more accurate libav* references. | Diego Biurrun | 2011-11-02 | 1 | -1/+1 |
* | lavf: make some seeking functions private | Anton Khirnov | 2011-10-28 | 1 | -1/+1 |
* | lavf: use avpriv_ prefix for ff_new_chapter(). | Anton Khirnov | 2011-10-20 | 1 | -1/+1 |
* | lavf,lavd: replace av_new_stream->avformat_new_stream part I. | Anton Khirnov | 2011-10-19 | 1 | -1/+1 |
* | lavf: use designated initialisers for all (de)muxers. | Anton Khirnov | 2011-07-17 | 1 | -9/+9 |
* | Do not include mathematics.h in avutil.h | Mans Rullgard | 2011-07-03 | 1 | -0/+1 |
* | Remove return statements following infinite loops without break | Mans Rullgard | 2011-07-03 | 1 | -2/+0 |
* | Move some conditionally used code below the appropriate #ifdef. | Diego Biurrun | 2011-07-03 | 1 | -3/+1 |
* | Remove all uses of now deprecated metadata functions. | Anton Khirnov | 2011-06-08 | 1 | -2/+3 |
* | Remove unused variables | Mans Rullgard | 2011-06-02 | 1 | -11/+8 |
* | asfdec: add missing #include for av_bswap32() | Mans Rullgard | 2011-05-19 | 1 | -0/+1 |