summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
Commit message (Collapse)AuthorAgeFilesLines
* Add missing #includes to pass 'make checkheaders' to codecs.conf.h.diego2008-04-091-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26364 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, free strdup'd stringsreimar2008-01-121-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25691 b3059339-0415-0410-9bf9-f77b7e298cf2
* Builtin codecs array can now be constreimar2008-01-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25690 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" withreimar2008-01-121-28/+22
| | | | | | | | | an almost-trivial implementation. This allows making the builtin codec structs const, and it also makes clearer that this "selected" status is not used outside the init functions. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25689 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of some useless extra ()reimar2007-12-021-11/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25275 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid short forms; has the added benefit of allowing compilation with gcc 2.95diego2007-11-031-1/+1
| | | | | | | which complains about 'unterminated string or character constant'. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24961 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace some Hungarian comments, thanks to Denes Balatoni for the translation.diego2007-11-031-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24956 b3059339-0415-0410-9bf9-f77b7e298cf2
* C99 varargs in macros can not be empty, adjust definition so it compilesreimar2007-07-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23930 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove some more useless *alloc castsreimar2007-07-191-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23826 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix comment about test application compilation.diego2007-03-121-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22519 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove support for obsolete and non-free divx4/odivx libraries.diego2006-07-141-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19087 b3059339-0415-0410-9bf9-f77b7e298cf2
* Marks several string parameters as const when they are not modified in the ↵reynaldo2006-07-091-1/+1
| | | | | | function, Patch by Stefan Huehner, stefan AT huehner-org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18985 b3059339-0415-0410-9bf9-f77b7e298cf2
* reverse previous patch which caused sig11.rfelker2006-04-031-1/+1
| | | | | | | | | 1000000000000000l: broken codecs.conf code modifies every page of a huge object -> tons of page faults and cannot be const. this needs to be fixed! do we have a volunteer to remove the whole codecs.conf shit? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18035 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1000l: absolutely huge missing constrfelker2006-04-031-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18034 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove mp_msg.c dependency when compiling codec-cfg binary.reimar2006-03-121-0/+7
| | | | | | | | Fixes MinGW compilation (caused by missing -liconv), this solution seems best to me because of e.g. cross-compilation issues just adding -liconv might cause. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17842 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation command in comment.diego2006-03-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17764 b3059339-0415-0410-9bf9-f77b7e298cf2
* Comment out debug output.diego2006-03-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17763 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by Stefan Huehner / stefan % huehner ! org \rathann2006-02-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | 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
* Some more cola for msglevel, codec-cfg can't even call mp_msg_init or it'llods152005-12-071-12/+0
| | | | | | | print bogus stuff. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17121 b3059339-0415-0410-9bf9-f77b7e298cf2
* another 100l, codec-cfg relied on mp_msg printing nothing....ods152005-12-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17113 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, codec-cfg needs fixing after -msgl patchods152005-12-061-0/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17112 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow forcing of demuxers and codecs by prepending '+'reimar2005-08-301-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16322 b3059339-0415-0410-9bf9-f77b7e298cf2
* codecs-status.html should be written to an existing path.diego2005-05-011-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15316 b3059339-0415-0410-9bf9-f77b7e298cf2
* compilation fix for codecs2htmldiego2005-04-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15306 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1l typodiego2005-04-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15305 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix wrong compilation instructions.diego2005-04-301-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15304 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow Y8 and Y800 as OUT format in codecs.confreimar2004-12-171-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14171 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reduce excessive verbosity.diego2004-11-151-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13947 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix crash when a "driver" line is missing in codecs.conf.reimar2004-11-141-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13937 b3059339-0415-0410-9bf9-f77b7e298cf2
* Memory Free function Fix, based on patch by Wei Jiang <jiangw98@yahoo.com>faust32004-10-301-11/+28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13808 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translatable messages moved to help_mp-en.h.diego2004-10-121-29/+31
| | | | | | | patch by The Wanderer <inverseparadox at comcast dot net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13620 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed loader/ dependancy, imported some files from g2, also used patches ↵alex2004-04-281-1/+1
| | | | | | from Dominik Mierzejewski git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12342 b3059339-0415-0410-9bf9-f77b7e298cf2
* add -codecs-file for selecting a specific codecs.conf on the comand lineattila2004-01-081-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11760 b3059339-0415-0410-9bf9-f77b7e298cf2
* updates for new image formats for zoran mjpeg passthroughrik2003-11-041-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11389 b3059339-0415-0410-9bf9-f77b7e298cf2
* codecs-in.html moved to DOCS/tech/.diego2003-09-121-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10860 b3059339-0415-0410-9bf9-f77b7e298cf2
* added nv12/nv21 and some other fourccs (still not synced)alex2003-08-311-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10747 b3059339-0415-0410-9bf9-f77b7e298cf2
* FourCC is the preferred spelling according to iive and arpi.diego2003-08-041-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10521 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling/grammar fixesdiego2003-07-291-14/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10502 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed our native svq1 and huffyuv implementation as libavcodec's ↵alex2003-07-131-2/+0
| | | | | | implementations are much better git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10419 b3059339-0415-0410-9bf9-f77b7e298cf2
* basic xvmc image supportiive2003-06-211-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10317 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing language suffix to DOCS/ path.diego2003-06-131-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10287 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10larpi2002-12-161-3/+3
| | | | | | | foudn by Steven Schultz git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8473 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fallback to builtin (generated from etc/codecs.conf at compile time)arpi2002-12-151-4/+112
| | | | | | | | codecs.conf if no ext configfile found. Based on patch by Sidik Isani <lksi@cfht.hawaii.edu> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8468 b3059339-0415-0410-9bf9-f77b7e298cf2
* - fixed vfw/vfwex/acm fm namesarpi2002-11-161-2/+4
| | | | | | | - disabled win32 separation git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8212 b3059339-0415-0410-9bf9-f77b7e298cf2
* This patch goes into the #ifdef CODECS2HTML section ofarpi2002-11-161-6/+13
| | | | | | | | | | codec-cfg.c and makes it possible to build that utility again. It also fixes two cases where *_codecs was set to NULL if it was NULL ;-) Sidik Isani <lksi@cfht.hawaii.edu> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8206 b3059339-0415-0410-9bf9-f77b7e298cf2
* - rgb1, rgb4 supportarpi2002-10-171-8/+23
| | | | | | | | - format mapping support - memleak fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7771 b3059339-0415-0410-9bf9-f77b7e298cf2
* new func: select_codec() - disables codec by namearpi2002-09-261-0/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7506 b3059339-0415-0410-9bf9-f77b7e298cf2
* make -ac/-vc help look betterarpi2002-08-311-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7194 b3059339-0415-0410-9bf9-f77b7e298cf2
* -afm/-vfm migration from ID (int) to NAME (string) - simplifies code and ↵arpi2002-08-301-10/+10
| | | | | | makes dlopen()'ing possible git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7181 b3059339-0415-0410-9bf9-f77b7e298cf2
* native DV audio/video decoders using libdvarpi2002-08-051-0/+2
| | | | | | | based on patch by Alexander Neundorf <neundorf@kde.org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6928 b3059339-0415-0410-9bf9-f77b7e298cf2
* planar yuv 444 422 411 supportmichael2002-08-011-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6864 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support for Xvid using their new api. If divx4 compatiblity is disabeledalbeu2002-07-101-0/+1
| | | | | | | in xvid it can be used along with divx4. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6702 b3059339-0415-0410-9bf9-f77b7e298cf2
* new global codec flag: align16arpi2002-06-251-0/+3
| | | | | | | | it means that width/height should be round up to n*16 (some buggy codec needs it to avoid sig11 / image distortions) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6566 b3059339-0415-0410-9bf9-f77b7e298cf2
* yvu9 and if09 supportalex2002-06-231-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6527 b3059339-0415-0410-9bf9-f77b7e298cf2
* SVQ1 addedarpi2002-06-221-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6507 b3059339-0415-0410-9bf9-f77b7e298cf2
* yvu9 support, 0l to me becouse i forget to commit it (0l becouse i've ↵alex2002-06-211-0/+1
| | | | | | drinken 1litre of bier, yet ;) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6490 b3059339-0415-0410-9bf9-f77b7e298cf2
* realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>arpi2002-06-081-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6344 b3059339-0415-0410-9bf9-f77b7e298cf2
* codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>arpi2002-05-261-3/+25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6201 b3059339-0415-0410-9bf9-f77b7e298cf2
* 'static' outfmt-flag addedarpi2002-05-161-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6104 b3059339-0415-0410-9bf9-f77b7e298cf2
* printf to mp_msgalbeu2002-05-021-33/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5938 b3059339-0415-0410-9bf9-f77b7e298cf2
* mpegpes added... thx Mw3arpi2002-04-031-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5479 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l :(arpi2002-03-251-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5328 b3059339-0415-0410-9bf9-f77b7e298cf2
* use codec selectionarpi2002-03-251-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5327 b3059339-0415-0410-9bf9-f77b7e298cf2
* tagging selected codec to avoid trying the same codec several timesarpi2002-03-251-0/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5326 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing #include config.h, removed LIBVO2 ifdef.arpi2002-03-231-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5285 b3059339-0415-0410-9bf9-f77b7e298cf2
* added zlib supportalex2002-03-221-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5264 b3059339-0415-0410-9bf9-f77b7e298cf2
* query flag addedarpi2002-03-211-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5250 b3059339-0415-0410-9bf9-f77b7e298cf2
* added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>melanson2002-03-211-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5236 b3059339-0415-0410-9bf9-f77b7e298cf2
* MPlayer now has a Microsoft RLE decoder to call its own...only supportsmelanson2002-03-191-1/+1
| | | | | | | 8-bit right now, but 4-bit is forthcoming git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5194 b3059339-0415-0410-9bf9-f77b7e298cf2
* Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 ↵atmos42002-03-181-0/+1
| | | | | | video in qt to ffmpeg4 although it's still buggy in decoding git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5191 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add IJPG decoder.pontscho2002-03-101-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5030 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed, strengthened, rewrote, and renamed a variety of the ADPCM decodersmelanson2002-02-251-2/+2
| | | | | | | (including MS, DK4 and DK3 ADPCM) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4855 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed old testing partalex2002-02-121-8/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4677 b3059339-0415-0410-9bf9-f77b7e298cf2
* added informat support (for encoding)alex2002-02-121-2/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4676 b3059339-0415-0410-9bf9-f77b7e298cf2
* add initial mPNG supportpontscho2002-02-111-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4657 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added native codec support for QT RPZA data, courtesy of Roberto Tognimelanson2002-02-091-0/+1
| | | | | | | <rtogni@freemail.it> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4616 b3059339-0415-0410-9bf9-f77b7e298cf2
* added skeleton decoders for RoQ audio and video format decodersmelanson2002-02-011-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4451 b3059339-0415-0410-9bf9-f77b7e298cf2
* added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)melanson2002-01-221-0/+1
| | | |