aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Some more BeOS cleanup: check for arpa/inet.h; declare the prototype for ↵François Revol2007-03-234-45/+11
| | | | | | inet_aton if not found; remove barpainet.h as it's not longer needed. Originally committed as revision 8488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* iwmmxt ffmpeg code does not implement dct_unquantize_h263_inter_iwmmxt, butTim Chick2007-03-231-2/+7
| | | | | | | armv5t does - use the armv5t function rather than default c code. patch by Tim Chick chick at computergeek freeserve co uk Originally committed as revision 8487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set more reasonable cutoff for audio rate conversionMichael Niedermayer2007-03-224-16/+17
| | | | Originally committed as revision 8486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update resgression tests after the resampler changesMichael Niedermayer2007-03-223-31/+31
| | | | Originally committed as revision 8485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clarify codec_tagMichael Niedermayer2007-03-221-0/+7
| | | | Originally committed as revision 8484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clarify sub_idMichael Niedermayer2007-03-221-1/+4
| | | | Originally committed as revision 8483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace long double in the audiophile kiddy mode with doubles, its faster ↵Michael Niedermayer2007-03-221-3/+3
| | | | | | (and more portable) and the audiophile placebo 120db stopband attenuation isnt affected Originally committed as revision 8482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change high precision mode to 30 bits again after making the code less ↵Michael Niedermayer2007-03-221-1/+1
| | | | | | overflow sensitive Originally committed as revision 8481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimize linear filter coeff interpolation code, this also makes the code ↵Michael Niedermayer2007-03-221-5/+4
| | | | | | less prone to overflows Originally committed as revision 8480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics. align and condense.Justin Ruggles2007-03-221-3/+2
| | | | Originally committed as revision 8479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyJustin Ruggles2007-03-221-2/+4
| | | | Originally committed as revision 8478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* utilize multi-stage AC-3 bit allocation. speeds up encoding by 25-30%Justin Ruggles2007-03-221-12/+43
| | | | Originally committed as revision 8477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r8469 (increase bits for non default highprecision mode)Michael Niedermayer2007-03-221-1/+1
| | | | | | it causes overflows with linear interpolated filters coefficients Originally committed as revision 8476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AUDIOPHILE_KIDDY_MODEMichael Niedermayer2007-03-221-5/+21
| | | | Originally committed as revision 8475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimize bessel function instead of trusting gcc to do trivial optimizations ↵Michael Niedermayer2007-03-221-2/+3
| | | | | | (as gcc doesnt ...) Originally committed as revision 8474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* select more sensible default windows (= attenuation beyond the dynamic range ↵Michael Niedermayer2007-03-221-1/+3
| | | | | | of your input is silly if it negatively affects other parameters) Originally committed as revision 8473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make kaiser windows with other beta than 16 availableMichael Niedermayer2007-03-211-3/+3
| | | | Originally committed as revision 8472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable iwmmxt support, removing mm_support() stubTim Chick2007-03-211-8/+4
| | | | | | patch by Tim Chick, chick at computergeek freeserve co uk Originally committed as revision 8471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make high precision mode accessible at compile timeMichael Niedermayer2007-03-211-1/+1
| | | | Originally committed as revision 8470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* increase bits for non default highprecision modeMichael Niedermayer2007-03-211-1/+1
| | | | Originally committed as revision 8469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* code for testing the accuracy of the resamplerMichael Niedermayer2007-03-211-0/+36
| | | | Originally committed as revision 8468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove dithering of filter coefficients, improves precision by 1-2 bits andMichael Niedermayer2007-03-211-3/+1
| | | | | | | improves subjective sound quality on artificial sample (udial.wav resampling to 32khz) Originally committed as revision 8467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The NSV demuxer assumes that a video frame's timestamp increases by one on eachDavid Conrad2007-03-211-1/+3
| | | | | | | | | | frame, but some low-bitrate NSV files omit video frames for some NSV frames, and expect the timestamp to increase by one every NSV frame. This is noticeable in 64vp3.nsv where the video runs several times faster than the audio. Fix this by unconditionally incrementing the video's timestamp with each NSV frame. patch by David Conrad, umovimus gmail com Originally committed as revision 8466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_estimate_timings_from_pts() flushes the packet queue but doesn'tWolfram Gloger2007-03-211-17/+4
| | | | | | | | | | | | | | | reset the streams' cur_dts values. This can lead to a fatal "error, non monotone timestamps ..." message later, because the out-of-date cur_dts values are used to compute some packet's dts. Fix this by calling av_read_frame_flush() and eliminate code duplication in the process. The additional hunk gives more detailed error messages. patch by Wolfram Gloger, wmglo dent.med.uni-muenchen de Originally committed as revision 8465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, sample_size_v1 -> bytes_per_frame / samples_per_frameBaptiste Coudurier2007-03-211-5/+6
| | | | Originally committed as revision 8464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticsBaptiste Coudurier2007-03-211-5/+5
| | | | Originally committed as revision 8463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set audio frame size based on sttsBaptiste Coudurier2007-03-211-0/+4
| | | | Originally committed as revision 8462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* treat frame_size > 1 as compressed audioBaptiste Coudurier2007-03-211-11/+5
| | | | Originally committed as revision 8461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Smacker Audio stereo fixKostya Shishkov2007-03-211-14/+8
| | | | Originally committed as revision 8460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update links to old probably obsolete bttv patchesMichael Niedermayer2007-03-201-4/+4
| | | | Originally committed as revision 8459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* link to ffv1, msmpeg4, asv1, 4xm docsMichael Niedermayer2007-03-201-0/+4
| | | | Originally committed as revision 8458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libav* headers for pascalMichael Niedermayer2007-03-201-0/+4
| | | | Originally committed as revision 8457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Small simplifications to subband coefficient handling and use av_random().Ian Braithwaite2007-03-201-42/+20
| | | | | | Patch by Ian Braithwaite ian .. braithwaite ... dk Originally committed as revision 8456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oops, encoder was under ifdef decoders.Loren Merritt2007-03-201-1/+1
| | | | Originally committed as revision 8455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r8428, the check was not that uselessMichael Niedermayer2007-03-201-1/+1
| | | | | | should fix constant pts=0 with broken demuxers Originally committed as revision 8454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add myself as AC-3 maintainerJustin Ruggles2007-03-201-0/+1
| | | | Originally committed as revision 8453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* i think this is more correctMichael Niedermayer2007-03-201-1/+1
| | | | Originally committed as revision 8452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly handle data_size on decodingKostya Shishkov2007-03-201-3/+9
| | | | Originally committed as revision 8451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix handling of special case for lowest snroffset. regressions are unaffected.Justin Ruggles2007-03-201-0/+6
| | | | Originally committed as revision 8450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, fix debug, dprintf does not have log levelBaptiste Coudurier2007-03-191-5/+5
| | | | Originally committed as revision 8449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* expose av_base64_decode and av_base64_encodeLuca Barbato2007-03-195-11/+12
| | | | Originally committed as revision 8448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix end-of-file detectionClemens Ladisch2007-03-181-3/+2
| | | | | | | | | | | | At the end of a nut file, the check for url_feof() fails because the eof flag was cleared by the url_fseek() call that was used to skip over the index packet. This patch fixes this patch by: Clemens Ladisch % cladisch A fastmail P net % Original thread: Date: Feb 27, 2007 6:13 PM Subject: [Ffmpeg-devel] [PATCH] nutdec: fix end-of-file detection Originally committed as revision 8447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add dnxhd fourccBaptiste Coudurier2007-03-181-0/+2
| | | | Originally committed as revision 8446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dnxhd decoderBaptiste Coudurier2007-03-188-2/+483
| | | | Originally committed as revision 8445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 encoded volume is too high. Revert revision 7160:Bill O'Shaughnessy2007-03-184-4/+4
| | | | | | | | | | | bring AC3 encoder output up to input volume level patch by Bill O'Shaughnessy % bill P oshaughnessy A gmail.com % + reg tests update gruntwork by me Original thread: date: Nov 21, 2006 11:36PM subject: [Ffmpeg-devel] Simpler Patch to bring AC3 encoder output up to input level Originally committed as revision 8444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix init_vlc() with nonzero flagsMåns Rullgård2007-03-181-3/+3
| | | | Originally committed as revision 8443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split ac3_parametric_bit_allocation into 3 separate functionsJustin Ruggles2007-03-182-15/+105
| | | | Originally committed as revision 8442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve ac3_probe by counting consecutive framesJustin Ruggles2007-03-181-8/+24
| | | | Originally committed as revision 8441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Zero MV vectors for P frame intra blocksKostya Shishkov2007-03-181-1/+12
| | | | Originally committed as revision 8440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix full range (jpeg yuv) chromaMichael Niedermayer2007-03-183-1/+16
| | | | Originally committed as revision 22713 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale