summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Use AC3_MAX_COEFS instead of 256 in a couple places in ac3.cJustin Ruggles2010-12-14
| | | | Originally committed as revision 25968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* define AC3_CRITICAL_BANDS and use it in the AC-3 encoder and decoder.Justin Ruggles2010-12-14
| | | | Originally committed as revision 25967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use sizeof(array value) instead of sizeof(int16_t).Justin Ruggles2010-12-14
| | | | Originally committed as revision 25966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: use lowercase letters for function namesJustin Ruggles2010-12-14
| | | | Originally committed as revision 25965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: add new function documentation and clean up existing documentationJustin Ruggles2010-12-14
| | | | Originally committed as revision 25964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: add more space between functionsJustin Ruggles2010-12-14
| | | | Originally committed as revision 25963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rearrange some functions/typedefs/macrosJustin Ruggles2010-12-14
| | | | Originally committed as revision 25962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify group size calculation in 2 places.Justin Ruggles2010-12-14
| | | | Originally committed as revision 25961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: make a switch/case more compactJustin Ruggles2010-12-14
| | | | Originally committed as revision 25960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clean up fft_init() and mdct_init()Justin Ruggles2010-12-14
| | | | Originally committed as revision 25959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: pretty-printing, alignment, etc...Justin Ruggles2010-12-14
| | | | Originally committed as revision 25958 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded #includeJustin Ruggles2010-12-14
| | | | Originally committed as revision 25957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify fix15().Justin Ruggles2010-12-14
| | | | | | | | Turn it into 2 macros, and use av_clip_int16() and lrintf(). This matches the int16 to float sample conversion in audioconvert.c. The regression test output is different due to lrintf() rounding. Originally committed as revision 25956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the fixed-point MDCT and FFT tests so that they actually compile and work.Justin Ruggles2010-12-14
| | | | | | Also, use LFG from libavutil instead of random(). Originally committed as revision 25955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out initialization of MDCT tables into a separate function.Justin Ruggles2010-12-14
| | | | Originally committed as revision 25954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Document AC3EncodeContext fields.Justin Ruggles2010-12-14
| | | | Originally committed as revision 25953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded debugging messages.Justin Ruggles2010-12-14
| | | | Originally committed as revision 25952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Define AC3_WINDOW_SIZE and use it instead of AC3_BLOCK_SIZE*2.Justin Ruggles2010-12-14
| | | | Originally committed as revision 25951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: use better (and shared) macro names for some constant valuesJustin Ruggles2010-12-14
| | | | Originally committed as revision 25950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate AC3EncodeContext fields, sr_shift and sr_code.Justin Ruggles2010-12-14
| | | | Originally committed as revision 25949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rename some fields in AC3EncodeContextJustin Ruggles2010-12-14
| | | | Originally committed as revision 25948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: change all short to int16_tJustin Ruggles2010-12-14
| | | | Originally committed as revision 25947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change some unsigned types to signed types in AC3EncodeContextJustin Ruggles2010-12-14
| | | | Originally committed as revision 25946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rearrange AC3EncodeContext fieldsJustin Ruggles2010-12-14
| | | | Originally committed as revision 25945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return the amount of input data actually used in the qdm2 decoder,Reimar Döffinger2010-12-13
| | | | | | allows playback of files where multiple qdm2 packets have been merged. Originally committed as revision 25943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid rollover in settings conversion.James Zern2010-12-12
| | | | | | Patch by James Zern, jzern google Originally committed as revision 25941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix avpicture_alloc(), which was aligning the linesizes with 0 and thusStefano Sabatini2010-12-12
| | | | | | causing a wrong allocation. Originally committed as revision 25938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention of one forgotten line in ffv1.cMichael Niedermayer2010-12-12
| | | | Originally committed as revision 25935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: vertical alignment after last commitJustin Ruggles2010-12-12
| | | | Originally committed as revision 25934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flac_parser: only buffer the estimated amount of input needed.Michael Chinen2010-12-12
| | | | | | Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make FLAC parser return frames when it has the required amountMichael Chinen2010-12-12
| | | | | | | (without buffering extra input). Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AV_NOPTS_VALUE, AV_TIME_BASE, AV_TIME_BASE_Q symbols fromStefano Sabatini2010-12-09
| | | | | | | | libavcodec to libavcore. Remove another compile-time dependancy of libavfilter on libavcodec. Originally committed as revision 25923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avpicture_alloc() return meaningful values.Stefano Sabatini2010-12-08
| | | | Originally committed as revision 25922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-12-08
| | | | Originally committed as revision 25921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_image_alloc() in avpicture_alloc(), simplify.Stefano Sabatini2010-12-08
| | | | Originally committed as revision 25920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define FLAC_MIN_FRAME_SIZE and use it in the FLAC decoder.Michael Chinen2010-12-07
| | | | | | Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify the FLAC decoder now that it no longer has to parse arbitrary raw FLACMichael Chinen2010-12-07
| | | | | | | data thanks to the recently added FLAC parser. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a FLAC parser.Michael Chinen2010-12-07
| | | | | | | | | Seek test reference updated because FLAC seeking now works properly. Fixes roundup issue 1150. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: line wrap after last commitJustin Ruggles2010-12-07
| | | | Originally committed as revision 25913 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add log_level_offset parameter to ff_flac_decode_frame_header(). It will be usedMichael Chinen2010-12-07
| | | | | | | to optionally silence the error messages. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add is_var_size and frame_or_sample_num to FLACFrameInfo and read them inMichael Chinen2010-12-07
| | | | | | | ff_flac_decode_frame_header(). Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check validity of the frame sync code in ff_flac_decode_frame_header().Michael Chinen2010-12-07
| | | | | | Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move decode_frame_header() from flacdec.c to flac.c/h to share with theMichael Chinen2010-12-07
| | | | | | | forthcoming FLAC parser. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25909 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add fullrange support to libx264.c x264 interfaceJason Garrett-Glaser2010-12-07
| | | | Originally committed as revision 25904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alsdec: Correct the ALS decoder by storing some parameters per-channel ratherSprezz2010-12-06
| | | | | | than just per-block. Patch by Sprezz [sprezzatura gmx com]. Fixes Issue 2387. Originally committed as revision 25898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In yadif filter, declare asm constants directly to avoid dependency on ↵Baptiste Coudurier2010-12-06
| | | | | | libavcodec Originally committed as revision 25895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CODEC_CAP_NEG_LINESIZES.Stefano Sabatini2010-12-04
| | | | Originally committed as revision 25886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add forgotten deprecation to avcodec_pix_fmt_string().Stefano Sabatini2010-12-04
| | | | Originally committed as revision 25883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, add ff_pw_1 to dsputil_mmx for yadif sse2Baptiste Coudurier2010-12-04
| | | | Originally committed as revision 25881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate avcodec_pix_fmt_string() in favor ofStefano Sabatini2010-12-04
| | | | | | av_get_pix_fmt_string(), added to libavutil/pixdesc.h. Originally committed as revision 25879 to svn://svn.ffmpeg.org/ffmpeg/trunk