summaryrefslogtreecommitdiff
path: root/libavcodec/roqaudioenc.c
Commit message (Collapse)AuthorAge
* lavc: AV-prefix all codec capabilitiesVittorio Giovara2015-07-27
| | | | | | Express bitfields more simply. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* avcodec: Don't anonymously typedef structsDiego Biurrun2015-02-14
|
* roqaudio: Always use the frame buffer on flushMichael Niedermayer2014-11-24
| | | | | | | | Prevent NULL dereference. CC: libav-stable@libav.org Bug-Id: CID 703669 Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun2013-10-03
|
* lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov2013-03-09
|
* Move avutil tables only used in libavcodec to libavcodec.Diego Biurrun2012-10-11
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* cosmetics: Align codec declarationsMartin Storsjö2012-04-06
| | | | | | | Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
* roqaudioenc: use AVCodec.encode2()Justin Ruggles2012-03-21
| | | | | The first frame pts must be saved until we have 8 frames since RoQ audio requires 8 frames in the first packet.
* roqaudioenc: return AVERROR codes instead of -1Justin Ruggles2012-02-25
|
* roqaudioenc: set correct bit rateJustin Ruggles2012-02-25
|
* roqaudioenc: use AVCodecContext.frame_size correctly.Justin Ruggles2012-02-25
| | | | | | It is not allowed to change mid-stream like it does currently. Instead we need to buffer the first 8 frames before returning them as a single packet, then only return single frame packets after that.
* roqaudioenc: remove unneeded sample_fmt checkJustin Ruggles2012-02-25
|
* check for coded_frame allocation failure in several audio encodersJustin Ruggles2012-02-25
|
* audio encoders: do not set coded_frame->key_frame.Justin Ruggles2012-02-25
| | | | it is already set in avcodec_alloc_frame()
* lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-29
| | | | It's more readable and less prone to breakage.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.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>
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
| | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use "const" qualifier for pointers that point to input data ofReimar Döffinger2010-07-24
| | | | | | | audio encoders. This is purely for clarity/documentation purposes. Originally committed as revision 24481 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
* Move ff_sqrt() to libavutil/intmath.hMåns Rullgård2010-03-08
| | | | Originally committed as revision 22345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace big square-root table by a call to ff_sqrt(). Based on a patchVitor Sessak2009-10-18
| | | | | | by Reimar Döffinger. Originally committed as revision 20281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-06
| | | | | | .data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing av_cold in static init/close functions.Daniel Verkamp2009-02-22
| | | | | | Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ROQDPCMContext_t to ROQDPCMContext to avoid _t reserved prefix.Vitor Sessak2008-12-11
| | | | Originally committed as revision 16059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
| | | | Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistent codec name by Stefano Sabatini, stefano.sabatini-lala poste itDiego Biurrun2008-05-16
| | | | Originally committed as revision 13180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: s/Id/id/ in libavcodec where Id refers to id Software.Stefano Sabatini2008-05-15
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RoQ audio encoderVitor Sessak2007-05-07
patch by Vitor vitor1001 gmail com Originally committed as revision 8922 to svn://svn.ffmpeg.org/ffmpeg/trunk