summaryrefslogtreecommitdiffstats
path: root/libavcodec/svq1.c
Commit message (Collapse)AuthorAgeFilesLines
...
* rate distorted intra only encodingMichael Niedermayer2004-05-071-0/+140
| | | | | | | | 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-071-14/+738
| | | | Originally committed as revision 3113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init cleanupMichael Niedermayer2004-03-161-0/+2
| | | | 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-221-1/+0
| | | | | | 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-021-1/+1
| | | | 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-031-1/+1
| | | | Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_bits -> skip_bitsAlex Beregszaszi2003-07-251-10/+10
| | | | Originally committed as revision 2083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVCodec.flush()Michael Niedermayer2003-07-171-0/+1
| | | | | | 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-261-571/+172
| | | | | | | 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-241-1/+0
| | | | Originally committed as revision 1902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* field pic decoding cleanupMichael Niedermayer2003-03-161-1/+1
| | | | Originally committed as revision 1686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* per file doxyMichael Niedermayer2003-03-061-0/+6
| | | | Originally committed as revision 1634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-111-1/+1
| | | | 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-041-7/+32
| | | | 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-211-1/+1
| | | | | | 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-091-0/+4
| | | | Originally committed as revision 1424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVVideoFrame -> AVFrameMichael Niedermayer2002-12-091-3/+3
| | | | Originally committed as revision 1327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup / messup?Michael Niedermayer2002-12-091-1/+1
| | | | | | | | 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-041-12/+13
| | | | | | | | | | | 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-121-4/+4
| | | | 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-111-9/+9
| | | | Originally committed as revision 1194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* handle direct rendering buffer allocation failureMichael Niedermayer2002-10-271-1/+2
| | | | Originally committed as revision 1075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put/avg_pixels16Michael Niedermayer2002-09-111-3/+2
| | | | | | 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-221-1484/+2
| | | | Originally committed as revision 788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* hurry up supportMichael Niedermayer2002-07-161-1/+3
| | | | | | returning buf_size insetad of 0 Originally committed as revision 767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* grayscale only decodingMichael Niedermayer2002-07-161-0/+2
| | | | Originally committed as revision 766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* direct rendering for SVQ1Michael Niedermayer2002-07-151-32/+30
| | | | | | | | | 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-151-3/+3
| | | | Originally committed as revision 761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* faster get_bit_cacheMichael Niedermayer2002-07-141-3/+7
| | | | Originally committed as revision 757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10LNick Kurshev2002-07-111-1/+0
| | | | Originally committed as revision 744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Arpi to list of porters.Nick Kurshev2002-07-111-0/+1
| | | | 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-111-15/+17
| | | | | | author Originally committed as revision 742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Applied patch of Felix BuenemannNick Kurshev2002-07-101-1/+1
| | | | Originally committed as revision 736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * prefixication (due Kabi's request)Nick Kurshev2002-07-101-204/+251
| | | | | | | | | | * generic optimization: - enable ALT and ALIGNED stream - move "if(const)" out from loops - supress duplicated computing * first attempt to fix problem with strides Originally committed as revision 734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new codec: Sorenson v1Nick Kurshev2002-07-091-0/+2632
Originally committed as revision 726 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud