summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Improve the mp4toannexb BSF to convert the extradata.Luca Abeni2010-06-09
| | | | Originally committed as revision 23545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix vp3_draw_horiz_band to calculate chroma offsets correctlyReimar Döffinger2010-06-08
| | | | | | for 4:2:2 and 4:4:4 formats. Originally committed as revision 23537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pictor/PC Paint decoderPeter Ross2010-06-08
| | | | Originally committed as revision 23532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ega_palettePeter Ross2010-06-08
| | | | Originally committed as revision 23530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prepare Indeo4 (step 1): upscale indeo5 base tables by 2 and convert those ↵Maxim Poliakovski2010-06-08
| | | | | | into uint16_t. Originally committed as revision 23523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvpx: Set the libvpx frame dropping threshold to frame_skip_thresholdMartin Storsjö2010-06-08
| | | | | | | The default for frame_skip_threshold is 0, which thus disables the libvpx frame dropping. Originally committed as revision 23522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvpx: Don't use the VPX_KF_FIXED modeJames Zern2010-06-08
| | | | | | | | This mode emits no keyframes at all, despite its name. Patch by James Zern, jzern at google dot com Originally committed as revision 23521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Fold constants and re-indent after last commit.Alex Converse2010-06-08
| | | | Originally committed as revision 23520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Base downsampled SBR synthesis filterbank on a single IMDCT.Alex Converse2010-06-08
| | | | | | | Based on Han-Wen Hsu, et al. "Fast Complex Quadrature Mirror Filterbanks for MPEG-4 HE-AAC" Originally committed as revision 23519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Fix types and now unused variables after last commit.Alex Converse2010-06-07
| | | | Originally committed as revision 23517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rewrite the SBR decoder QMF analysis filter on top of the IMDCT instead of ↵Alex Converse2010-06-07
| | | | | | | | | | the RDFT. This is based on a procedure to implement the filterbank on the DCT-IV described in Hsu, H.W. et al. "A Complex Quadrature Mirror Filterbanks for MPEG-4 HE-AAC" http://sites.google.com/site/wenchiehlee1020/Papers/ComplexFB_AES_121paper144.pdf Originally committed as revision 23516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new macro AV_BASE64_SIZE.James Zern2010-06-07
| | | | | | Patch by James Zern, jzern google com Originally committed as revision 23515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize 1D DCT transform used in MP{1,2,3}. Makes also this function suitableVitor Sessak2010-06-07
| | | | | | for being moved to the shared DCT framework in the future. Originally committed as revision 23514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, there is no aac.c any more, so no need for a dependency.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to B4BY and R4BY NUT codec tags added in NUT r672.Stefano Sabatini2010-06-06
| | | | Originally committed as revision 23508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix width computation for nv12/nv21 in ff_get_plane_bytewidth().Stefano Sabatini2010-06-06
| | | | Originally committed as revision 23507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec also depends on cbrt_tables.h for hardcoded-tables.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bgr/rgb444 for nutMichael Niedermayer2010-06-06
| | | | Originally committed as revision 23504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix rgb444 support in avi.Michael Niedermayer2010-06-06
| | | | Originally committed as revision 23503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve grammar and readabilityRodney Baker2010-06-05
| | | | | | Patch by Rodney Baker, rodney dot baker at iinet dot net dot au Originally committed as revision 23499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup apply_window_and_mdct().Alex Converse2010-06-05
| | | | Originally committed as revision 23495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Whitespace cosmeticsAlex Converse2010-06-05
| | | | Originally committed as revision 23491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aac: Move an initialization macro used only by the decoder out of the header.Alex Converse2010-06-05
| | | | Originally committed as revision 23490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename aac.c to aacdec.c.Alex Converse2010-06-05
| | | | Originally committed as revision 23489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: Rename avccontext to avctx.Alex Converse2010-06-05
| | | | Originally committed as revision 23488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move eval.c and eval.h from libavcodec to libavutil, and make the evalStefano Sabatini2010-06-05
| | | | | | API public. Originally committed as revision 23485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More mov rawvideo fourcc supported by the rawvideo decoderBaptiste Coudurier2010-06-04
| | | | Originally committed as revision 23481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add WebM muxerJames Zern2010-06-04
| | | | | | Patch by James Zern <jzern at google> Originally committed as revision 23474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvorbis: Disable strict bitrate management when not requestedDavid Conrad2010-06-04
| | | | | | This is 3 times faster in a quick benchmark Originally committed as revision 23471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvorbis: OV_ECTL_RATEMANAGE_AVG is depreciated in favor ofDavid Conrad2010-06-04
| | | | | | OV_ECTL_RATEMANAGE2_SET Originally committed as revision 23470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvorbis: Hook up min/max bitrateDavid Conrad2010-06-04
| | | | Originally committed as revision 23469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add bitexact versions of put_no_rnd_pixels8 _x2 and _y2 for vp3/theoraDavid Conrad2010-06-04
| | | | Originally committed as revision 23463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_BASE64_SIZE() macroHoward Chu2010-06-04
| | | | Originally committed as revision 23462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raise default vorbis encoding quality.Frank Barchard2010-06-03
| | | | | | Patch by Frank Barchard, fbarchard google com Originally committed as revision 23460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify that get/release_buffer() overriding only works with CODEC_CAP_DR1 ↵Michael Niedermayer2010-06-03
| | | | | | codecs. Originally committed as revision 23457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the frames returned by the decoder better.Michael Niedermayer2010-06-03
| | | | Originally committed as revision 23456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP8 encoding via libvpx.James Zern2010-06-03
| | | | | | Patch by James Zern, Google, Inc. Originally committed as revision 23449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix misc typos.Stefano Sabatini2010-06-03
| | | | Originally committed as revision 23442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: Work around illegal files with all elem_id tags set to the same value.Alex Converse2010-06-03
| | | | | | Fixes issue 1882. Originally committed as revision 23439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: struct offsets for Apple ABIMåns Rullgård2010-06-02
| | | | Originally committed as revision 23438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: remove some unnecessary ifdefs, fix implicit declaration warningsMåns Rullgård2010-06-02
| | | | Originally committed as revision 23437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: check struct offsets only when they are usedMåns Rullgård2010-06-02
| | | | | | | The offsets differ depending on configuration, so only check them when they will actually be used. Presently, this is when NEON is enabled. Originally committed as revision 23436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove weird empty line and perform vertical align.Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Properly initialize x264_picture_t in libx264.Jason Garrett-Glaser2010-06-02
| | | | | | Bump libx264 version requirement accordingly. Originally committed as revision 23430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: fail build if hardcoded struct offsets are wrongMåns Rullgård2010-06-02
| | | | Originally committed as revision 23427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid division by zero that caused noise, typically at the beginning orFrank Barchard2010-06-02
| | | | | | | | end of a file. Patch by Frank Barchard, fbarchard google Originally committed as revision 23426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bink: correctly align local arraysMåns Rullgård2010-06-02
| | | | Originally committed as revision 23425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avcodec_string() use av_get_codec_tag_string().Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_get_codec_tag_string() and use it in ffprobe.Stefano Sabatini2010-06-02
| | | | Originally committed as revision 23421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* arm neon: Add missing mangle to external symbolDavid Conrad2010-06-01
| | | | Originally committed as revision 23418 to svn://svn.ffmpeg.org/ffmpeg/trunk