summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/native
Commit message (Collapse)AuthorAgeFilesLines
* Use consistent #include paths without "../".diego2008-04-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26576 b3059339-0415-0410-9bf9-f77b7e298cf2
* Rename RTJPEG files so that filenames consist of lowercase name only.diego2008-04-063-2/+2
| | | | | | | Parts of the build system assume lowercase-only filenames. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26336 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do not #include libavutil/common.h. It is not used directly and mpbswap.hdiego2008-04-012-2/+0
| | | | | | | now #includes all required headers on its own. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26312 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add necessary header #includes to fix 'make checkheaders'.diego2008-03-061-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26179 b3059339-0415-0410-9bf9-f77b7e298cf2
* FFmpeg now uses different (unified) #include paths.diego2008-02-251-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26101 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add MPLAYER_ prefix to multiple inclusion guards.diego2008-02-224-12/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26061 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently use uppercase filename as multiple inclusion guard.diego2008-01-281-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25897 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add multiple inclusion guards.diego2008-01-273-2/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25895 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace with the output of the updated alaw-gen generator program.diego2008-01-271-64/+69
| | | | | | | This adds multiple inclusion guards and reformats the tables. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25894 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace implicit use of fast_memcpy via macro by explicit use to allowreimar2007-06-051-3/+3
| | | | | | | for future optimization. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23475 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove internal minilzo, external liblzo can be used instead.diego2007-02-183-3331/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22259 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use ffmpeg lzo instead of (also quite outdated) minlzo in nuppelvideo.reimar2007-01-311-20/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22098 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix FSF address and otherwise broken license headers.diego2007-01-222-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21995 b3059339-0415-0410-9bf9-f77b7e298cf2
* Hack around libavutil/bswap.h compilation problems due to always_inline ↵reimar2006-12-072-2/+2
| | | | | | undefined. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21523 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove bswap.h, use libavutil/bswap.h instead.diego2006-11-292-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21388 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove mmx.h, the licensing status was doubtful, and put a minimaldiego2006-11-101-0/+80
| | | | | | | replacement header in the place where it's needed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20837 b3059339-0415-0410-9bf9-f77b7e298cf2
* There is a reference to a file COPYRIGHT that we do not include, so pastediego2006-07-301-0/+16
| | | | | | | the contents of COPYRIGHT into the file header. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19269 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l, we should really, really use lzo1x_decompress_safe instead of ↵reimar2006-04-091-6/+6
| | | | | | lzo1x_decompress git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18069 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l: missing const put this in data segment instead of text/rodatarfelker2006-04-031-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18032 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by Stefan Huehner / stefan % huehner ! org \rathann2006-02-092-2/+2
| | | | | | | | | | | | | | | | | | | | | | patch replaces '()' for the correct '(void)' in function declarations/prototypes which have no parameters. The '()' syntax tell thats there is a variable list of arguments, so that the compiler cannot check this. The extra CFLAG '-Wstrict-declarations' shows those cases. Comments about a similar patch applied to ffmpeg: That in C++ these mean the same, but in ANSI C the semantics are different; function() is an (obsolete) K&R C style forward declaration, it basically means that the function can have any number and any types of parameters, effectively completely preventing the compiler from doing any sort of type checking. -- Erik Slagter Defining functions with unspecified arguments is allowed but bad. With arguments unspecified the compiler can't report an error/warning if the function is called with incorrect arguments. -- Måns Rullgård git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17567 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove tables used by MPlayer native 14_4 and 28_8 codecsrtognimp2005-12-272-2591/+0
| | | | | | | I forgot to remove them when i switched to lavc codecs git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17251 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove MPlayer native 14_4 and 28_8 codecs (they are in lavc)rtognimp2005-12-095-779/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17152 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify include path handling, -I.. is in CFLAGS.diego2005-11-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17013 b3059339-0415-0410-9bf9-f77b7e298cf2
* Stupidity in last patch broke compile without MMX: RTjpeg_lmask is a unionreimar2005-10-041-5/+5
| | | | | | | only in the MMX case. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16662 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix 100l bugs that break playback on 64 bit systems (like typedefing __u32reimar2005-10-042-21/+20
| | | | | | | as long!!). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16654 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make nuv files work on bigendian (but old nuv files created with mencoderreimar2005-03-032-4/+7
| | | | | | | wont play anymore - before they would have worked with mplayer on be) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14897 b3059339-0415-0410-9bf9-f77b7e298cf2
* bzero is deprecated patch by Gianluigi Tiesi <mplayer at netfarm.it>faust32005-02-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14643 b3059339-0415-0410-9bf9-f77b7e298cf2
* ICC 8.0 compilation fixesatmos42004-08-021-13/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12929 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cinepak and RoqA/V are now in ffmpegrtognimp2004-07-152-1563/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12829 b3059339-0415-0410-9bf9-f77b7e298cf2
* x86-64 (amd64) support by Kenny Rootalex2004-06-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12688 b3059339-0415-0410-9bf9-f77b7e298cf2
* Qt RLE is now in ffmpegrtognimp2004-05-051-400/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12430 b3059339-0415-0410-9bf9-f77b7e298cf2
* more lvalue casts, ugly this timerfelker2004-05-011-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12379 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove MSZH/ZLIB, FLI and QTRLE, they are now in ffmpegrtognimp2004-04-291-380/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12354 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove 8BPS, MsRLE, MsVideo1, RPZA, SMCrtognimp2003-12-233-1169/+0
| | | | | | | These codecs are now in libavcodec git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11676 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10^1337 litres (now, that's an inflation)alex2003-08-291-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10718 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed our native svq1 and huffyuv implementation as libavcodec's ↵alex2003-07-133-2808/+0
| | | | | | implementations are much better git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10419 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmeticsalex2003-07-032-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10368 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1000lrfelker2003-06-132-14/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10289 b3059339-0415-0410-9bf9-f77b7e298cf2
* RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.rtognimp2003-06-087-0/+3370
| | | | | | | | Author unknown, code from a public domain player for Amiga at http://www.honeypot.net/audio git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10261 b3059339-0415-0410-9bf9-f77b7e298cf2
* bcopy -> memcpy for MINGW32 portfaust32003-03-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9764 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed obsolete unused cyuv.carpi2003-02-091-84/+0
| | | | | | | noticed by Mike Melanson <melanson@pcisys.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9356 b3059339-0415-0410-9bf9-f77b7e298cf2
* Quicktime rle 32 bit supportedrtognimp2003-01-261-0/+100
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9115 b3059339-0415-0410-9bf9-f77b7e298cf2
* *HUGE* set of compiler warning fixes, unused variables removalarpi2002-11-061-2/+0
| | | | | | | based on patch by Dominik Mierzejewski <dominik@rangers.eu.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8124 b3059339-0415-0410-9bf9-f77b7e298cf2
* usage of libmpeg2, liba52, mp3lib & svq1 can be disabledarpi2002-11-011-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8027 b3059339-0415-0410-9bf9-f77b7e298cf2
* some cleanuparpi2002-09-271-79/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7519 b3059339-0415-0410-9bf9-f77b7e298cf2
* declarations moved to *.c filesarpi2002-09-221-12/+0
| | | | | | | | reason: single .h contained both audio and video decl, they depend on things like mp_image, which shouldn't be included in audio decoders... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7471 b3059339-0415-0410-9bf9-f77b7e298cf2
* use img_format.h instead of wine/mmioFOURCC hackarpi2002-09-221-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7469 b3059339-0415-0410-9bf9-f77b7e298cf2
* This patch fixes a segfault for native cvid decoder in bgr32 and bgr24 modes.arpi2002-09-151-6/+6
| | | | | | | Roberto Togni <rtogni@bresciaonline.it> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7410 b3059339-0415-0410-9bf9-f77b7e298cf2
* mostly compiler warning fixes, some small bugfixarpi2002-08-281-1/+1
| | | | | | | patch by Dominik Mierzejewski <dominik@rangers.eu.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7128 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unused codealex2002-08-271-32/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7099 b3059339-0415-0410-9bf9-f77b7e298cf2
* HPUX porting fixes - patch by Gansser, Martin <MGansser@rand.de>arpi2002-08-091-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6957 b3059339-0415-0410-9bf9-f77b7e298cf2
* 8 and 16bpp qtrle supportalex2002-07-121-3/+177
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6721 b3059339-0415-0410-9bf9-f77b7e298cf2
* Small fix: Correct mathematical order in MEDIAN macro (gcc 3.1 didn't like it).atmos42002-07-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6685 b3059339-0415-0410-9bf9-f77b7e298cf2
* bugfix by Michael.Lampe@iwr.uni-heidelberg.dearpi2002-07-061-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6657 b3059339-0415-0410-9bf9-f77b7e298cf2
* use libavcodec's get_bits() code (optional, disabled by default)arpi2002-06-232-18/+44
| | | | | | | | | unfortunatelly it's much slower :( and teh ALT version just sig11s :(( ideas? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6512 b3059339-0415-0410-9bf9-f77b7e298cf2
* use libavcodec's optimized MC functionsarpi2002-06-221-0/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6511 b3059339-0415-0410-9bf9-f77b7e298cf2
* imported from xine, generalized, created header file, all tables moved toarpi2002-06-223-0/+2762
| | | | | | | | | svq1_cb.h (was: svq1_codebooks.h) TODO: use libavcodec's MC and bit parsing routines, maybe VLC too, finally move the whole decoder to libavcodec git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6506 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>arpi2002-06-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6336 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning fix (strings.h > string.h)pl2002-05-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6239 b3059339-0415-0410-9bf9-f77b7e298cf2
* memset and memcpy were used without #include <string.h> in a few places.arpi2002-05-203-0/+3
| | | | | | | patch by Björn Sandell <biorn@dce.chalmers.se> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6132 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed block artefacts and speedup at the same timeiive2002-04-181-2/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5685 b3059339-0415-0410-9bf9-f77b7e298cf2
* mp_image.h and img_format.h moved to libmpcodecsarpi2002-04-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5608 b3059339-0415-0410-9bf9-f77b7e298cf2
* less namespace pollutionarpi2002-04-131-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5606 b3059339-0415-0410-9bf9-f77b7e298cf2
* fastmemcpy path fixedarpi2002-04-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5605 b3059339-0415-0410-9bf9-f77b7e298cf2
* native codecs files moved to libmpcodecs/native/arpi2002-04-133-0/+1117
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5604 b3059339-0415-0410-9bf9-f77b7e298cf2
* moved to libmpcodecs/native/arpi2002-04-1316-0/+10760
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5603 b3059339-0415-0410-9bf9-f77b7e298cf2