aboutsummaryrefslogtreecommitdiffhomepage
path: root/codec-cfg.c
Commit message (Collapse)AuthorAge
* Rename two GUI-related preprocessor directives:Gravatar diego2008-07-30
| | | | | | | HAVE_NEW_GUI --> CONFIG_GUI, HAVE_GTK2_GUI --> CONFIG_GTK2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27375 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix codec-cfg-test compilation.Gravatar diego2008-05-27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26880 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing #includes to pass 'make checkheaders' to codecs.conf.h.Gravatar diego2008-04-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26364 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, free strdup'd stringsGravatar reimar2008-01-12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25691 b3059339-0415-0410-9bf9-f77b7e298cf2
* Builtin codecs array can now be constGravatar reimar2008-01-12
| | | | 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" withGravatar reimar2008-01-12
| | | | | | | | | 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 ()Gravatar reimar2007-12-02
| | | | 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.95Gravatar diego2007-11-03
| | | | | | | 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.Gravatar diego2007-11-03
| | | | 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 compilesGravatar reimar2007-07-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23930 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove some more useless *alloc castsGravatar reimar2007-07-19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23826 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix comment about test application compilation.Gravatar diego2007-03-12
| | | | 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.Gravatar diego2006-07-14
| | | | 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 ↵Gravatar reynaldo2006-07-09
| | | | | | 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.Gravatar rfelker2006-04-03
| | | | | | | | | 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 constGravatar rfelker2006-04-03
| | | | 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.Gravatar reimar2006-03-12
| | | | | | | | 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.Gravatar diego2006-03-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17764 b3059339-0415-0410-9bf9-f77b7e298cf2
* Comment out debug output.Gravatar diego2006-03-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17763 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by Stefan Huehner / stefan % huehner ! org \Gravatar rathann2006-02-09
| | | | | | | | | | | | | | | | | | | | | | 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'llGravatar ods152005-12-07
| | | | | | | 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....Gravatar ods152005-12-06
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17113 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, codec-cfg needs fixing after -msgl patchGravatar ods152005-12-06
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17112 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow forcing of demuxers and codecs by prepending '+'Gravatar reimar2005-08-30
| | | | 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.Gravatar diego2005-05-01
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15316 b3059339-0415-0410-9bf9-f77b7e298cf2
* compilation fix for codecs2htmlGravatar diego2005-04-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15306 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1l typoGravatar diego2005-04-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15305 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix wrong compilation instructions.Gravatar diego2005-04-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15304 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow Y8 and Y800 as OUT format in codecs.confGravatar reimar2004-12-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14171 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reduce excessive verbosity.Gravatar diego2004-11-15
| | | | 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.Gravatar reimar2004-11-14
| | | | 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>Gravatar faust32004-10-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13808 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translatable messages moved to help_mp-en.h.Gravatar diego2004-10-12
| | | | | | | 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 ↵Gravatar alex2004-04-28
| | | | | | 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 lineGravatar attila2004-01-08
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11760 b3059339-0415-0410-9bf9-f77b7e298cf2
* updates for new image formats for zoran mjpeg passthroughGravatar rik2003-11-04
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11389 b3059339-0415-0410-9bf9-f77b7e298cf2
* codecs-in.html moved to DOCS/tech/.Gravatar diego2003-09-12
| | | | 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)Gravatar alex2003-08-31
| | | | 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.Gravatar diego2003-08-04
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10521 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling/grammar fixesGravatar diego2003-07-29
| | | | 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 ↵Gravatar alex2003-07-13
| | | | | | implementations are much better git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10419 b3059339-0415-0410-9bf9-f77b7e298cf2
* basic xvmc image supportGravatar iive2003-06-21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10317 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing language suffix to DOCS/ path.Gravatar diego2003-06-13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10287 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10lGravatar arpi2002-12-16
| | | | | | | 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)Gravatar arpi2002-12-15
| | | | | | | | 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 namesGravatar arpi2002-11-16
| | | | | | | - 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 ofGravatar arpi2002-11-16
| | | | | | | | | | 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 supportGravatar arpi2002-10-17
| | | | | | | | - 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 nameGravatar arpi2002-09-26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7506 b3059339-0415-0410-9bf9-f77b7e298cf2
* make -ac/-vc help look betterGravatar arpi2002-08-31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7194 b3059339-0415-0410-9bf9-f77b7e298cf2