summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* fix for ppc compile broken by (Romain Dolbeau <dolbeau at irisa dot fr> and ↵Michael Niedermayer2003-02-01
| | | | | | Colin Leroy <colin at colino dot net>) Originally committed as revision 1526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100000lMichael Niedermayer2003-01-29
| | | | Originally committed as revision 1524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bugfixMichael Niedermayer2003-01-29
| | | | Originally committed as revision 1523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* --disable-risky supportMichael Niedermayer2003-01-29
| | | | Originally committed as revision 1522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * headers valid for C++ compilersZdenek Kabelac2003-01-28
| | | | Originally committed as revision 1521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* win32: rint() does not seem to be defined with mingw32-gcc 2.95 - do you ↵Fabrice Bellard2003-01-28
| | | | | | have a better solution ? Originally committed as revision 1519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* win32: added vsnprintfFabrice Bellard2003-01-28
| | | | Originally committed as revision 1518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l / 4mv segfault fixMichael Niedermayer2003-01-28
| | | | Originally committed as revision 1517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimizing av_log2Michael Niedermayer2003-01-27
| | | | Originally committed as revision 1515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DV audio decoder by Roman ShaposhnickFabrice Bellard2003-01-27
| | | | Originally committed as revision 1514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* drawing cute arrows instead of lame lines for motion vector visualizationMichael Niedermayer2003-01-26
| | | | Originally committed as revision 1512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* feeding doxygenMichael Niedermayer2003-01-26
| | | | Originally committed as revision 1511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Altivec on non darwin systems patch by Romain DolbeauRomain Dolbeau2003-01-26
| | | | Originally committed as revision 1509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed warningFabrice Bellard2003-01-23
| | | | Originally committed as revision 1506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_malloc() functions - added av_strdup and av_realloc()Fabrice Bellard2003-01-23
| | | | Originally committed as revision 1505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* undefine malloc macrosFabrice Bellard2003-01-23
| | | | Originally committed as revision 1503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reversing my own stupidity ... (raw packed yuv422 files dont use YUY2 but UYVY)Michael Niedermayer2003-01-23
| | | | Originally committed as revision 1494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed dependancy generation (I want the case where SRC_PATH is not . to work ↵Fabrice Bellard2003-01-22
| | | | | | too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff Originally committed as revision 1488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2003-01-21
| | | | Originally committed as revision 1487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* GetBitContext.size is allways multiplied by 8 -> use size_in_bits to avoid ↵Michael Niedermayer2003-01-21
| | | | | | useless *8 in a few inner loops Originally committed as revision 1486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More AltiVec MC functions patch by (Romain Dolbeau <dolbeau at irisa dot fr>)Romain Dolbeau2003-01-20
| | | | Originally committed as revision 1485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* img_convert() (YUV to YUV) patch by (Max Krasnyansky <maxk at qualcomm dot com>)Max Krasnyansky2003-01-20
| | | | Originally committed as revision 1484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added gray<->RGB functions - fixed rgb<->yuv functions for non RGB24 caseFabrice Bellard2003-01-20
| | | | Originally committed as revision 1483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* trying to fix mb skip bug in mpeg1/2 if slices are not usedMichael Niedermayer2003-01-20
| | | | Originally committed as revision 1482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing yuv422 -> yuv420p (i need that for the vceq videos ...)Michael Niedermayer2003-01-20
| | | | Originally committed as revision 1481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * code for parsing optionsZdenek Kabelac2003-01-20
| | | | | | | now options have to be added... - see main for a simple usage example. Originally committed as revision 1480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reverseNick Kurshev2003-01-20
| | | | Originally committed as revision 1479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Function renaming. Solves some namespace conflictsNick Kurshev2003-01-20
| | | | Originally committed as revision 1478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alignMichael Niedermayer2003-01-19
| | | | Originally committed as revision 1477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC perf, PPC clear_block, AltiVec put_pixels8_xy2 patch by (Romain Dolbeau ↵Romain Dolbeau2003-01-19
| | | | | | <dolbeau at irisa dot fr>) Originally committed as revision 1476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* C99 initializers and kill warnings patch by (mru at users dot sourceforge ↵Måns Rullgård2003-01-19
| | | | | | dot net (Måns Rullgård)) Originally committed as revision 1474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* finetuneing thresholds/factorsMichael Niedermayer2003-01-19
| | | | | | | nicer mb decission a few minor improvements & fixes Originally committed as revision 1472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sse16_c is totally fucked up (unaligned loads, LONG_MAX is undefined,Falk Hüffner2003-01-19
| | | | | | | uint32 array index -> segv), so let's just use a nice plain unobfuscated version, which also happens to be faster for me. Originally committed as revision 1470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bugsMichael Niedermayer2003-01-18
| | | | Originally committed as revision 1469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - removed nonsense *.d dependancy stuff, there was already a better 'make ↵Arpi2003-01-17
| | | | | | | | dep' support in it - enabled .depend generation by default, so no need to 'make dep' then... Originally committed as revision 1468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AltiVec perf (take 2), plus a couple AltiVec functions by (Romain Dolbeau ↵Michael Niedermayer2003-01-16
| | | | | | <dolbeau at irisa dot fr>) Originally committed as revision 1464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing DCTELEM != shortMichael Niedermayer2003-01-15
| | | | Originally committed as revision 1462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more compare functions (rd & bit)Michael Niedermayer2003-01-15
| | | | Originally committed as revision 1461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2003-01-14
| | | | Originally committed as revision 1460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AUtomatic dependency generation. Runs on Linux (at least). Probably shouldPhilip Gladstone2003-01-14
| | | | | | update .cvsignore (somehere) to exclude .d files Originally committed as revision 1459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* padding bug autodetection improvement 2nd tryMichael Niedermayer2003-01-13
| | | | Originally committed as revision 1458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better padding/stuffing bug autodetectionMichael Niedermayer2003-01-13
| | | | Originally committed as revision 1457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gmc1 segfault fix (found by kabi)Michael Niedermayer2003-01-13
| | | | Originally committed as revision 1456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dct_unquantize_h263_altivec by (Romain Dolbeau <dolbeaur at club-internet ↵Michael Niedermayer2003-01-12
| | | | | | dot fr>) Originally committed as revision 1455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* /* align 16 */Michael Niedermayer2003-01-12
| | | | Originally committed as revision 1454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* average motion vector rounding like the reference says and not what the ↵Michael Niedermayer2003-01-12
| | | | | | standard says Originally committed as revision 1453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_format()Michael Niedermayer2003-01-12
| | | | Originally committed as revision 1451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sse16 & pix_norm1 optimization patch by (Felix von Leitner <felix-ffmpeg at ↵Felix von Leitner2003-01-11
| | | | | | fefe dot de>) (with some modifications) Originally committed as revision 1450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add/diff_bytes bugfix patch by (Felix von Leitner <felix-ffmpeg at fefe dot de>)Felix von Leitner2003-01-11
| | | | Originally committed as revision 1449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* altivec jumbo patch by (Romain Dolbeau <dolbeaur at club-internet dot fr>)Romain Dolbeau2003-01-11
| | | | Originally committed as revision 1448 to svn://svn.ffmpeg.org/ffmpeg/trunk