summaryrefslogtreecommitdiff
path: root/libavcodec/h264_mp4toannexb_bsf.c
Commit message (Collapse)AuthorAge
* h264_mp4toannexb_bsf: do not fail on annex B extradataAnton Khirnov2016-04-24
| | | | | Just pass through the bitstream as is. This is the same as what is done for HEVC already.
* lavc: add a new bitstream filtering APIAnton Khirnov2016-03-20
| | | | Deprecate the current bitstream filtering API.
* lavc: Consistently prefix input buffer definesVittorio Giovara2015-07-27
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* avcodec: Use av_reallocp where suitableAlexandra Khirnova2013-12-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* h264_mp4toannexb_bsf: return a padded bufferLuca Barbato2013-06-15
| | | | | The code using the returned buffer might expect it to be FF_INPUT_BUFFER_PADDING_SIZE padded as any other avpacket.
* h264_mp4toannexb_bsf: factor out extradata parsingLuca Barbato2013-06-15
|
* h264_mp4toannexb_bsf: K&R formatting cosmeticsLuca Barbato2013-06-15
|
* Don't include common.h from avutil.hMartin Storsjö2012-08-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* cosmetics: Remove extra newlines at EOFAlex Converse2012-01-27
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* h264_mp4toannexb_bsf: Fix spurious warning when stream has SPS and PPS units.Philip Langdale2011-03-15
| | | | | Signed-off-by: Philip Langdale <philipl@overt.org> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* reindent.Ronald S. Bultje2011-03-07
|
* h264_mp3toannexb_bsg: don't crash, but warn, if PPS/SPS not found.Sean McGovern2011-03-07
| | | | | | | | | | Should an AVC-1 in MP4 stream not contain SPS or PPS NAL units, this BSF is then unable to allocate an output buffer for the modified stream. Warn that the resulting stream may be unplayable. Fix roundup issue #2386. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Cosmetics: alignment and long line break.Benoit Fouet2010-06-10
| | | | Originally committed as revision 23559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: use and place braces correctly in if ... else statements.Benoit Fouet2010-06-10
| | | | Originally committed as revision 23558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sanitize av_realloc() use in h264 mp4toannexb bistream filter.Benoit Fouet2010-06-10
| | | | Originally committed as revision 23557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve the mp4toannexb BSF to convert the extradata.Luca Abeni2010-06-09
| | | | Originally committed as revision 23545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check NAL unit size to avoid reading past the buffer.Thomas Devanneaux2010-05-10
| | | | | | | | This fixes issue1907 Patch by Thomas Devanneaux gmail(thomdev) Originally committed as revision 23078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a quick description to the H.264 BSFAlex Converse2009-05-13
| | | | Originally committed as revision 18809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change email address to a valid one.Benoit Fouet2008-11-17
| | | | Originally committed as revision 15848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a bug causing the generated stream to be corrupt if the bufferAndreas Öman2008-01-09
| | | | | | | | contains NAL units previous to the IDR where the SPS/PPS was inserted. Ok:ed by Benoit on irc. Originally committed as revision 11482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a bitstream filter for H.264.Benoit Fouet2007-09-06
Originally committed as revision 10422 to svn://svn.ffmpeg.org/ffmpeg/trunk