aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Collapse)AuthorAgeFilesLines
* flacenc: remove unneeded context variable, 'ch_code'Justin Ruggles2009-03-211-3/+1
| | | | Originally committed as revision 18083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* share channel mode constants between the FLAC decoder and FLAC encoderJustin Ruggles2009-03-213-26/+20
| | | | Originally committed as revision 18082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove declaration of the removed function img_convert().Stefano Sabatini2009-03-201-3/+0
| | | | Originally committed as revision 18080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of av_random in cook.cBenjamin Larsson2009-03-201-4/+5
| | | | Originally committed as revision 18079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of av_random in nellymoserdec.cBenjamin Larsson2009-03-201-4/+5
| | | | Originally committed as revision 18078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PCX encoder that handles 1-, 8-, and 24-bpp pixfmts.Daniel Verkamp2009-03-203-1/+208
| | | | | | Patch by Daniel Verkamp, daniel drv nu Originally committed as revision 18077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp, truehd: support non 1:1 channel mapping.Ramiro Polla2009-03-201-9/+16
| | | | Originally committed as revision 18074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support "next parameter flags present" flag.Ramiro Polla2009-03-201-0/+2
| | | | Originally committed as revision 18073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* truehd: support up to 3 substreams.Ramiro Polla2009-03-202-3/+7
| | | | Originally committed as revision 18072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename hwaccel_data_private to hwaccel_picture_private.Gwenole Beauchesne2009-03-202-6/+6
| | | | Originally committed as revision 18071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace random() usage in test programs by av_lfg_*().Diego Biurrun2009-03-206-25/+44
| | | | Originally committed as revision 18070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only build motion-test if MMX is enabled.Diego Biurrun2009-03-201-1/+2
| | | | Originally committed as revision 18069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Align test program output columns.Diego Biurrun2009-03-201-2/+2
| | | | Originally committed as revision 18068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused libavutil/random.h #include.Diego Biurrun2009-03-201-1/+0
| | | | Originally committed as revision 18067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use correct header for struct AVLFG.Diego Biurrun2009-03-201-1/+1
| | | | Originally committed as revision 18066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless casting in asm "m" operand.Matthieu Castet2009-03-191-2/+2
| | | | | | Patch by Matthieu Castet, castet D matthieu A free D fr Originally committed as revision 18054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after r18047.Reimar Döffinger2009-03-191-7/+7
| | | | Originally committed as revision 18048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]Reimar Döffinger2009-03-191-1/+9
| | | | | | | for YUV420P and YUV422P always. Fixes MPEG-2 4:2:2 encoding on PPC and ARM, and should fix mxf_d10 regression. Originally committed as revision 18047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not set linesize for palette data, it does not make sense and createsReimar Döffinger2009-03-191-1/+0
| | | | | | problems with following patch to fix linesize alignment. Originally committed as revision 18046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split TrueHD decoder from MLPRamiro Polla2009-03-195-3/+21
| | | | Originally committed as revision 18045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Nicely align output columns.Diego Biurrun2009-03-191-1/+1
| | | | Originally committed as revision 18042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* share some constants between the FLAC encoder and FLAC decoderJustin Ruggles2009-03-193-15/+10
| | | | Originally committed as revision 18041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a name field for AVPixFmtDescriptor.Stefano Sabatini2009-03-182-0/+17
| | | | Originally committed as revision 18035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in AOT_ER_AAC_ELDAlex Converse2009-03-181-1/+1
| | | | Originally committed as revision 18034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update the MPEG-4 AOT table.Alex Converse2009-03-181-0/+13
| | | | Originally committed as revision 18033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move MPEG-4 AOT enum to mpeg4audio.h.Alex Converse2009-03-182-30/+30
| | | | Originally committed as revision 18031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use intptr_t to cast pointers to int in codecs maintained by benjamin larssonRamiro Polla2009-03-172-2/+2
| | | | Originally committed as revision 18027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Amend AVCodecContext with hwaccel_context (HW accelerator context).Gwenole Beauchesne2009-03-171-0/+12
| | | | | | | | This is needed for some HW accelerators that require a context that FFmpeg can't instantiate itself. e.g. display-dependent data from VA API and VDPAU. Originally committed as revision 18025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add documentation about missing E-AC-3 features.Justin Ruggles2009-03-171-0/+28
| | | | Originally committed as revision 18021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix SEIs when splitting H264 input.John Cox2009-03-161-1/+1
| | | | | | Patch by John Cox, jc A kynesim D co D uk Originally committed as revision 18020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: IEEE-754 type punning for 16-bit floating point rounding.Alex Converse2009-03-161-12/+14
| | | | Originally committed as revision 18015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an assert().Daniel Verkamp2009-03-161-1/+1
| | | | | | Patch by Daniel Verkamp daniel drv nu Originally committed as revision 18006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove long unused ALTIVEC_USE_REFERENCE_C_CODE ifdef; all other referencesDavid Conrad2009-03-161-1/+1
| | | | | | to it were removed in r6606 Originally committed as revision 17997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add cook channel count function, part of multichannel cookBenjamin Larsson2009-03-151-0/+10
| | | | Originally committed as revision 17992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add max allowed subpackets in multichannel cookBenjamin Larsson2009-03-151-0/+1
| | | | Originally committed as revision 17991 to svn://svn.ffmpeg.org/ffmpeg/trunk
* save avctx in cook decoder context and use it for av_logBenjamin Larsson2009-03-151-13/+15
| | | | Originally committed as revision 17988 to svn://svn.ffmpeg.org/ffmpeg/trunk
* memset when category is >=7, part of cook multichannelBenjamin Larsson2009-03-151-1/+1
| | | | Originally committed as revision 17987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1 km^3 cola, timecode_frame_start is a 64 bit integer, this resulted inReimar Döffinger2009-03-151-1/+1
| | | | | | complete nonsense if timecode_frame_start was used on big-endian systems. Originally committed as revision 17986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove file name from file header.Diego Biurrun2009-03-151-2/+1
| | | | Originally committed as revision 17984 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Expand "lsb" to "least significant bits".Stefano Sabatini2009-03-151-1/+1
| | | | Originally committed as revision 17978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename the (yet not defined) macros:Stefano Sabatini2009-03-151-2/+2
| | | | | | | | PIX_FMT_RGB565_BE -> PIX_FMT_RGB565BE PIX_FMT_RGB565_LE -> PIX_FMT_RGB565LE for consistency with the other pixfmts macros. Originally committed as revision 17977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct MV prediction for B-frame blocks in RV4 decoderKostya Shishkov2009-03-151-1/+1
| | | | Originally committed as revision 17974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2009-03-142-15/+15
| | | | Originally committed as revision 17962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_uninit to vsrcBuc variable to work around someDiego Biurrun2009-03-142-2/+2
| | | | | | 'may be used uninitialized' warnings. Originally committed as revision 17961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve description of next_free_data_block_num struct member.Diego Biurrun2009-03-141-3/+3
| | | | Originally committed as revision 17960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 1bpp, 8bpp, 15bpp, and 16bpp support to BMP encoder.Daniel Verkamp2009-03-131-11/+61
| | | | | | Patch by Daniel Verkamp, daniel drv nu Originally committed as revision 17954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print timing_info on -debug 1.Michael Niedermayer2009-03-131-2/+4
| | | | Originally committed as revision 17949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix direct and skip MB motion compensation in RV4:Kostya Shishkov2009-03-131-3/+4
| | | | | | | two conditions were incomplete and zeroing motion vectors was performed only on half of them. Originally committed as revision 17947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_mallocz() to initialize hwaccel_data_private.Gwenole Beauchesne2009-03-112-4/+4
| | | | Originally committed as revision 17942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bug when elbg->utility_inc[elbg->numCB-1] == 1Vitor Sessak2009-03-101-1/+1
| | | | Originally committed as revision 17926 to svn://svn.ffmpeg.org/ffmpeg/trunk