summaryrefslogtreecommitdiff
path: root/libavcodec/svq1.c
Commit message (Collapse)AuthorAge
* 10l (segfault)Michael Niedermayer2004-09-27
| | | | Originally committed as revision 3520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try to select w/h from tablesAlex Beregszaszi2004-09-08
| | | | Originally committed as revision 3443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* svq1 mv array size fixMichael Niedermayer2004-07-28
| | | | Originally committed as revision 3361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* well that does not need to be there anymoreMike Melanson2004-07-27
| | | | Originally committed as revision 3349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* the ongoing struggle for encoding conditionalsMike Melanson2004-06-13
| | | | Originally committed as revision 3220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gcc bug workaround by (Jonathan Gray <khalek at linuxgamers dot net>)Michael Niedermayer2004-06-08
| | | | Originally committed as revision 3208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data_size = 0 cleanupMichael Niedermayer2004-05-21
| | | | Originally committed as revision 3146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some of the warning fixes by (Michael Roitzsch <mroi at users dot ↵Michael Niedermayer2004-05-18
| | | | | | sourceforge dot net>) Originally committed as revision 3140 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removing unused encoding codeMichael Niedermayer2004-05-12
| | | | Originally committed as revision 3133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* automatic pixel format selectionMichael Niedermayer2004-05-12
| | | | Originally committed as revision 3131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* segfault fixMichael Niedermayer2004-05-12
| | | | Originally committed as revision 3128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support skiped blocks in SVQ1Michael Niedermayer2004-05-12
| | | | Originally committed as revision 3127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* motion estimation for SVQ1Michael Niedermayer2004-05-12
| | | | Originally committed as revision 3126 to svn://svn.ffmpeg.org/ffmpeg/trunk
* p frame encoding, only with 0,0 motion vectors yet thoughMichael Niedermayer2004-05-09
| | | | Originally committed as revision 3121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* using pointers so the code could eventually be used for P framesMichael Niedermayer2004-05-08
| | | | | | a few const modifiers to make gcc happier Originally committed as revision 3120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* width height %64 != 0 fixMichael Niedermayer2004-05-08
| | | | | | | print average RD score at the end precalculated codebook vector mean tables Originally committed as revision 3119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* color and 10lMichael Niedermayer2004-05-07
| | | | Originally committed as revision 3116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rate distorted intra only encodingMichael Niedermayer2004-05-07
| | | | | | | | still grayscale, still no real ratecontrol ... use -qscale x to set the quality not optimized yet ... Originally committed as revision 3115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* first pass at a Sorenson Video 1 (SVQ1) encoderMike Melanson2004-05-07
| | | | Originally committed as revision 3113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init cleanupMichael Niedermayer2004-03-16
| | | | Originally committed as revision 2899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* closed gop support & flags2 as all bits in flags are usedMichael Niedermayer2004-01-22
| | | | | | and a few minor things i forgot to commit ... Originally committed as revision 2718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* off-by-1 error in the never-before-tested embedded string codeMike Melanson2004-01-02
| | | | Originally committed as revision 2649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2003-11-03
| | | | Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_bits -> skip_bitsAlex Beregszaszi2003-07-25
| | | | Originally committed as revision 2083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVCodec.flush()Michael Niedermayer2003-07-17
| | | | | | ff_draw_horiz_band() in coded order / cleanup Originally committed as revision 2064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rework SVQ1 decoder to use more intuitive VLC tables as well as ffmpeg'sMike Melanson2003-05-26
| | | | | | | native VLC facilities; also added decoding of some more frame header fields Originally committed as revision 1907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warning and compatibility fixes.Falk Hüffner2003-05-24
| | | | Originally committed as revision 1902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* field pic decoding cleanupMichael Niedermayer2003-03-16
| | | | Originally committed as revision 1686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* per file doxyMichael Niedermayer2003-03-06
| | | | Originally committed as revision 1634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-11
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cliping MVs, i dunno if its correct but it looks better then without itMichael Niedermayer2003-02-04
| | | | Originally committed as revision 1543 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
* workaround dropable p frame after first frame bugMichael Niedermayer2003-01-09
| | | | Originally committed as revision 1424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVVideoFrame -> AVFrameMichael Niedermayer2002-12-09
| | | | Originally committed as revision 1327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup / messup?Michael Niedermayer2002-12-09
| | | | | | | | fixes 20% speedloss bug removes redundant variables from MpegEncContext release buffers in avcodec_flush_buffers() (untested) Originally committed as revision 1325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2002-12-04
| | | | | | | | | | | adding AVVideoFrame moving quality, pict_type, key_frame, qscale_table, ... to AVVideoFrame removing obsolete variables in AVCodecContext skiping of MBs in b frames correctly initalizing AVCodecContext picture buffer cleanup Originally committed as revision 1302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fixing some minor const warningsZdenek Kabelac2002-11-12
| | | | Originally committed as revision 1205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * using DSPContext - so each codec could use its local (sub)set of CPU extensionZdenek Kabelac2002-11-11
| | | | Originally committed as revision 1194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* handle direct rendering buffer allocation failureMichael Niedermayer2002-10-27
| | | | Originally committed as revision 1075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put/avg_pixels16Michael Niedermayer2002-09-11
| | | | | | fixing 2 small qpel bugs Originally committed as revision 915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moved codebooks to svq1_cb.hAlex Beregszaszi2002-07-22
| | | | Originally committed as revision 788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* hurry up supportMichael Niedermayer2002-07-16
| | | | | | returning buf_size insetad of 0 Originally committed as revision 767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* grayscale only decodingMichael Niedermayer2002-07-16
| | | | Originally committed as revision 766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* direct rendering for SVQ1Michael Niedermayer2002-07-15
| | | | | | | | | MpegEncContext->opaque MUST NOT be used by the codec, its for the parent program using standart values for pict_type using (uv)linesize handling dropable p-frames like b-frames Originally committed as revision 763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1001LNick Kurshev2002-07-15
| | | | Originally committed as revision 761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* faster get_bit_cacheMichael Niedermayer2002-07-14
| | | | Originally committed as revision 757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10LNick Kurshev2002-07-11
| | | | Originally committed as revision 744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Arpi to list of porters.Nick Kurshev2002-07-11
| | | | Originally committed as revision 743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change licence to LGPL since there are no objections from side of original ↵Nick Kurshev2002-07-11
| | | | | | author Originally committed as revision 742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Applied patch of Felix BuenemannNick Kurshev2002-07-10
| | | | Originally committed as revision 736 to svn://svn.ffmpeg.org/ffmpeg/trunk