summaryrefslogtreecommitdiff
path: root/libavcodec/srtdec.c
Commit message (Collapse)AuthorAge
* add avcodec_get_subtitle_defaults() to initialize AVSubtitle structAurelien Jacobs2011-04-11
| | | | | | | | Call this new function before decode() to replace the custom and inconsistant initialization in various decoders. This function is equivalent to avcodec_get_frame_defaults() for AVFrame. Signed-off-by: Aurelien Jacobs <aurel@gnuage.org>
* srtdec: make sure we don't write past the end of bufferAurelien Jacobs2011-03-25
| | | | Signed-off-by: Aurelien Jacobs <aurel@gnuage.org>
* Merge libavcore into libavutilReinhard Tartler2011-02-16
| | | | Done to keep ABI compatible. Otherwise this is just silly
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-28
| | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f6902b1217beda576aa18abf7eb72b03c)
* srtdec: ensure we don't read 1 byte after buffer end if the buffer is notAurelien Jacobs2011-01-02
| | | | | | properly terminated. Originally committed as revision 26201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add SubRip decoderAurelien Jacobs2010-12-28
Originally committed as revision 26119 to svn://svn.ffmpeg.org/ffmpeg/trunk