summaryrefslogtreecommitdiff
path: root/libavformat/assdec.c
Commit message (Collapse)AuthorAge
* assdec: fix qsort() callback signatureMans Rullgard2012-10-27
| | | | | | | This changes the event_cmp() function to the correct signature, avoiding an ugly cast. Signed-off-by: Mans Rullgard <mans@mansr.com>
* avformat: Convert some commented-out printf/av_log instances to av_dlogDiego Biurrun2012-10-01
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* Improve descriptiveness of a number of codec and container long namesDiego Biurrun2012-07-30
|
* avformat: Drop pointless "format" from container long namesDiego Biurrun2012-07-30
|
* lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov2012-01-27
|
* lavf: make av_set_pts_info private.Anton Khirnov2011-11-30
| | | | It's supposed to be called only from (de)muxers.
* lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov2011-10-19
| | | | | Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
* Do not include mathematics.h in avutil.hMans Rullgard2011-07-03
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Reemove remaining uses of deprecated AVERROR_NOTSUPP.Anton Khirnov2011-04-06
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.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: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | 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.
* use designated initializer in ASS (de)muxerAurelien Jacobs2010-12-04
| | | | Originally committed as revision 25868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add seeking support in ASS demuxerAurelien Jacobs2010-07-29
| | | | Originally committed as revision 24578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use return value of ff_get_line()Aurelien Jacobs2010-07-21
| | | | Originally committed as revision 24402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_get_line to aviobuf.cAurelien Jacobs2010-07-21
| | | | Originally committed as revision 24399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename get_line to ff_get_lineAurelien Jacobs2010-07-21
| | | | Originally committed as revision 24398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve long_name for ass (de)muxerAurelien Jacobs2010-07-07
| | | | Originally committed as revision 24084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 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
* Silence "assdec.c:146: warning: passing argument 4 of ‘qsort’ from ↵Michael Niedermayer2009-02-14
| | | | | | | | incompatible pointer type" The alternative (schoolbook) solution is less readable. Originally committed as revision 17230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* assdec: don't remove CR, they are part of the specAurelien Jacobs2008-09-27
| | | | Originally committed as revision 15442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not lose the '\n'.Michael Niedermayer2008-09-26
| | | | Originally committed as revision 15424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2 in 1, an ASS and SSA demuxer.Michael Niedermayer2008-09-26
Tested with -scodec copy on all ASS & SSA samples that i found on mphq (exactly 2). Originally committed as revision 15422 to svn://svn.ffmpeg.org/ffmpeg/trunk