summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* remove useless static cm variableMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove silly static int done protecting the initalization of 32 elements to 1Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant memset()Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont malloc() static mv_penalty arraysMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* deprecate av_mallocz_static()Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Combine the window and overlap loops,Ian Braithwaite2007-03-13
| | | | | | | | and get rid of the data swapping. Patch by Ian Braithwaite <dk dot braithwaite at ian> Originally committed as revision 8387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give context to dprintfMichel Bardiaux2007-03-12
| | | | Originally committed as revision 8338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Respect the gop size (-g) for marking I frames. Use -g 0 gives the old ↵Benjamin Larsson2007-03-11
| | | | | | behaviour. Originally committed as revision 8326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace custom modified discrete cosine transform with ffmpeg's own.Ian Braithwaite2007-03-11
| | | | | | | | | | This does alter the decoded output, but not by much. The new output is closer to that produced by Real's "official" decoder, and the decoder runs slightly faster. Patch by Ian Braithwaite ian at braithwaite dot dk Originally committed as revision 8325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* the AC-3 parser needs ac3.oJustin Ruggles2007-03-11
| | | | Originally committed as revision 8324 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move AC-3 header parsing to ac3.cJustin Ruggles2007-03-11
| | | | Originally committed as revision 8323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly ME border blocksKostya Shishkov2007-03-11
| | | | Originally committed as revision 8322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check dimensions to avoid division by zero due to invalid new dimensions.Reimar Döffinger2007-03-11
| | | | | | Partially fixes http://bugzilla.mplayerhq.hu/show_bug.cgi?id=773. Originally committed as revision 8321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundancy in AC-3 parser by using common tables from ac3tab.hJustin Ruggles2007-03-11
| | | | Originally committed as revision 8318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify, use avctx->frame_number.Benjamin Larsson2007-03-10
| | | | Originally committed as revision 8309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove common code from AC-3 encoder and utilize ac3.c.Justin Ruggles2007-03-09
| | | | Originally committed as revision 8306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create ac3.c which will be used for AC-3 common code.Justin Ruggles2007-03-09
| | | | Originally committed as revision 8305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify AC-3 bit allocationJustin Ruggles2007-03-09
| | | | Originally committed as revision 8302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics. remove space before semi-colon.Justin Ruggles2007-03-08
| | | | Originally committed as revision 8301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify gain block handling.Ian Braithwaite2007-03-08
| | | | | | Patch by Ian Braithwaite <ian at braithwaite dot dk> Originally committed as revision 8298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't output the first two frames, since they don't contain valid audio.Ian Braithwaite2007-03-08
| | | | | | | | This also eases comparison of decoded output with Real's binary decoder. Patch by Ian Braithwaite <ian at braithwaite dot dk> Originally committed as revision 8297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix drop frame timecode flagBaptiste Coudurier2007-03-08
| | | | Originally committed as revision 8296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrections so that builds with DEBUG workMichel Bardiaux2007-03-08
| | | | Originally committed as revision 8295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bitrate sanity check (fixes assertion failure)Michael Niedermayer2007-03-08
| | | | Originally committed as revision 8293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless casts as recommended by Måns Rullgård.Benoit Fouet2007-03-08
| | | | | | Patch by Benoit Fouet, benoit fouet % purplelabs com. Originally committed as revision 8292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics in amr.c.Benoit Fouet2007-03-08
| | | | | | | | | - remove carriage returns where (i find it) unneeded - don't break lines when defining variables - break line between variable definition and the rest of the code Patch by Ben Fouet, benoit fouet % purplelabs com. Originally committed as revision 8291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the initialization on context definition. In amr.c, only theBenoit Fouet2007-03-08
| | | | | | | | amr_wb_encode_frame function initialized its context on a different line as it defined it. Patch by Benoit Fouet, benoit fouet % purplelabs com. Originally committed as revision 8290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a -ab with default of 64kMichael Niedermayer2007-03-07
| | | | | | | change -b to only apply to video this returns -ab/-b to the old defautls and old behavior regarding ordering of them Originally committed as revision 8286 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add avcodec_get_context_defaults2() / avcodec_alloc_context2() which take ↵Michael Niedermayer2007-03-07
| | | | | | | | CodecType as an additional parameter also mark them as NOT part of the public API yet, so we can change their argument to CodecID if we decide to do so Originally committed as revision 8283 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add av_opt_set_defaults2() which sets just defaults from AVOptions whos ↵Michael Niedermayer2007-03-07
| | | | | | flags match a user specified & mask = flags Originally committed as revision 8280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make av_find_opt() available to the public and add a mask+flags parameter to ↵Michael Niedermayer2007-03-07
| | | | | | search for specific AVOptions Originally committed as revision 8279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: unkown->unknownAlex Beregszaszi2007-03-07
| | | | Originally committed as revision 8274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add little endian 24bit read/writeAlex Beregszaszi2007-03-06
| | | | Originally committed as revision 8270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change management of "ab" option in ffmpeg.c, so that it works as "b" option.Benoit Fouet2007-03-05
| | | | | | | | | patch by Benoit Fouet % benoit P fouet A purplelabs P com % Original thread: Subj: [Ffmpeg-devel] [PATCH] use new way to handle "ab" option Date: 03/03/2007 10:51 PM Originally committed as revision 8244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"Panagiotis Issaris2007-03-04
| | | | | | to "picture" as suggested by Baptiste Coudurier. Originally committed as revision 8220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* imx dump header bitstream filter, modifies bitstream to fit in mov and be ↵Baptiste Coudurier2007-03-04
| | | | | | decoded by final cut pro decoder Originally committed as revision 8218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add bytestream_get/put_be24 functionsBaptiste Coudurier2007-03-04
| | | | Originally committed as revision 8217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dummy support for mpeg2 non linear quantBaptiste Coudurier2007-03-04
| | | | Originally committed as revision 8215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for no frame and prevent segfaultMichael Niedermayer2007-03-03
| | | | Originally committed as revision 8211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* partial avid meridien uncompressed supportBaptiste Coudurier2007-03-03
| | | | Originally committed as revision 8203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add proper #idef to dlsymm call, also fixes an unresolved symbol on OS X 10.2.Patrice Bensoussan2007-03-03
| | | | | | patch by Patrice Bensoussan, patrice.bensoussan free fr Originally committed as revision 8200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify that this decoder uses liba52.Diego Biurrun2007-03-03
| | | | Originally committed as revision 8199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support feeding individual NAL units to the decoder instead of just complete ↵Michael Niedermayer2007-03-02
| | | | | | frames Originally committed as revision 8197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support for mjpeg bottom field first in movBaptiste Coudurier2007-03-02
| | | | Originally committed as revision 8192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix adpcm swf decodingBaptiste Coudurier2007-03-02
| | | | Originally committed as revision 8186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ps option and rename rtp_payload_size AVOption to psBaptiste Coudurier2007-03-01
| | | | Originally committed as revision 8172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add documentation to some avcodec.h's pix_fmt related functions and defines.Panagiotis Issaris2007-03-01
| | | | Originally committed as revision 8171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* quicktime 'raw ' supportBaptiste Coudurier2007-03-01
| | | | Originally committed as revision 8168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of CODEC_FLAG_H263P_AIC with next major bumpBaptiste Coudurier2007-03-01
| | | | Originally committed as revision 8167 to svn://svn.ffmpeg.org/ffmpeg/trunk