summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* remove unused variable, min_framesizeJustin Ruggles2008-04-29
| | | | Originally committed as revision 13015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate motion vector information based on PTS provided in slice headerKostya Shishkov2008-04-28
| | | | Originally committed as revision 13011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to some AVCodec declarations.Stefano Sabatini2008-04-28
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make 8SVX codec names just a single word for consistency with other codec names.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use filename as multiple inclusion guard.Diego Biurrun2008-04-27
| | | | Originally committed as revision 13004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename i386/cputest.c --> i386/cpuid.c.Diego Biurrun2008-04-26
| | | | Originally committed as revision 13002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary test program dependency declarations.Diego Biurrun2008-04-26
| | | | Originally committed as revision 13001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Grammar fixes and improvements for the new ACELP codeRobert Swain2008-04-26
| | | | Originally committed as revision 13000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* break if error in header so it can output already decoded framesBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12999 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge init with declarationBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: merge declsBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify: merge loopsBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12995 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify: remove useless fields and varsBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12994 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move MP3On4DecodeContext def near the code and under ifdefBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12993 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly patch syncword for samples rates < 16000, decoder now fully ↵Baptiste Coudurier2008-04-26
| | | | | | support all iso ref files Originally committed as revision 12992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 1 frame config decodingBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove old draft last case not present anymore in iso specsBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mp3on4 decoder now depends on mpeg4audio codeBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use mpeg4audio common codeBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip blocks in B-frames reuse motion vectors from next reference frame.Kostya Shishkov2008-04-26
| | | | | | | So if referenced blocks is 16x8, 8x16 or 8x8 partitions, skip block will have them too. Originally committed as revision 12987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly compute out_size and samples numberBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fsize is 12 bits according to specsBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12984 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify using FFMIN3Baptiste Coudurier2008-04-26
| | | | Originally committed as revision 12983 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error if buf_size is too smallBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* values can fit uint8_tBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add constBaptiste Coudurier2008-04-26
| | | | Originally committed as revision 12979 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixed-point LSP and LPC decoding routines for ACELP-based codecsVladimir Voroshilov2008-04-26
| | | | Originally committed as revision 12978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_vlc2() only gets up to three levels in the tables. The last codes ↵Ramiro Polla2008-04-26
| | | | | | weren't being read properly. Originally committed as revision 12976 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct company nameKostya Shishkov2008-04-26
| | | | Originally committed as revision 12975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixed-point implementation of ff_cos, ff_log2, ff_exp2.Vladimir Voroshilov2008-04-25
| | | | | | Also implemented routine for calculating sum(a[i] * a[i-offset]>>shift) Originally committed as revision 12974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, alphabetical orderBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* identationBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed fieldBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused varBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ima qt decoding hack, decode whole frame at onceBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix adpcm ima qt decoding, channel at init is 0, correct stereo out since ↵Baptiste Coudurier2008-04-25
| | | | | | samples += avctx->channels Originally committed as revision 12965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set channels and sample rate from mpeg4audio configBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov demuxer depends on mpeg4audio code nowBaptiste Coudurier2008-04-25
| | | | Originally committed as revision 12963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure some value is always returned via data_sizeMichel Bardiaux2008-04-25
| | | | Originally committed as revision 12955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow bitrates zero and 13200 (needed for decoding mov and aiff)Michel Bardiaux2008-04-25
| | | | Originally committed as revision 12953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()Bartlomiej Wolowiec2008-04-24
| | | | | | and then reads the channel_map stuff Originally committed as revision 12944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set pixel aspect ratio for libxvid wrapper.Thorsten Jordan2008-04-24
| | | | | | Patch by Thorsten Jordan tjordanATmacrosystem de Originally committed as revision 12936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix regression introduced by r12929.Ramiro Polla2008-04-22
| | | | | | | num_coeffs is just one byte. It would make no sense for num_coeffs to be as high as 2^32. Originally committed as revision 12931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The code now is pretty self explanatory about the header structure.Ramiro Polla2008-04-22
| | | | | | Remove the big comment and add comments about the skipped fields. Originally committed as revision 12930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use bytestream functions for reading frame header.Ramiro Polla2008-04-22
| | | | Originally committed as revision 12929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Xvid wrapper use threads (with support for newest CVS Xvid only)Thorsten Jordan2008-04-22
| | | | | | Patch by Thorsten Jordan ( tjordan macrosystem de ) Originally committed as revision 12928 to svn://svn.ffmpeg.org/ffmpeg/trunk