aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* loop wish fulfilledGravatar compn2007-07-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23749 b3059339-0415-0410-9bf9-f77b7e298cf2
* Leave out (no) prefix from option names for consistency.Gravatar diego2007-07-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23748 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a loop command and property.Gravatar albeu2007-07-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23747 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move loop_times into mpctx.Gravatar albeu2007-07-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23746 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add the sub_scale property and command.Gravatar albeu2007-07-09
| | | | | | | Patch from Anatoli Marinov (anatoli [dot] marinov [at] gmail [dot] com). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23745 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unnecessary flip for RGB in v4l1.Gravatar voroshil2007-07-08
| | | | | | | | Patch was provided and tested by Trent Piepho xyzzy at speakeasy dot org. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23744 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100% cosmetics: reindentation and removal of trailing spacesGravatar nicodvb2007-07-08
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23743 b3059339-0415-0410-9bf9-f77b7e298cf2
* unified the skip of header and stuffing bytes after the parsing of ↵Gravatar nicodvb2007-07-08
| | | | | | pes_extension[12] fields git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23742 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23687: Implemented tv://[<channel>][/<input_id>] url syntaxGravatar voroshil2007-07-08
| | | | | | | | | r23714: roff fix (new line for new sentence) r23718: small grammar fix fix untranslated word git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23741 b3059339-0415-0410-9bf9-f77b7e298cf2
* r23690: fix BUK->BUP typoGravatar voroshil2007-07-08
| | | | | | | r23691: revert r23538. my fault, didn't see there where 2 phrases, sorry... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23740 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100000000000000l, cured painful stab at the grammarGravatar nicodvb2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23739 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 23536Gravatar torinthiel2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23738 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 23520Gravatar torinthiel2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23737 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 23579Gravatar torinthiel2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23736 b3059339-0415-0410-9bf9-f77b7e298cf2
* And antoher one, missed by me previouslyGravatar torinthiel2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23735 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some typos found and fixed by arctgx <arctgx@tlen.pl>Gravatar torinthiel2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23734 b3059339-0415-0410-9bf9-f77b7e298cf2
* Xvid name changeGravatar torinthiel2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23733 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r23731Gravatar Gabrov2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23732 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l, forgot to skip the stuffing bytes eventually prepended to vc1 packets ↵Gravatar nicodvb2007-07-07
| | | | | | (identified by pes_extension2 subid) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23731 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: split separate instructions in separate linesGravatar nicodvb2007-07-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23730 b3059339-0415-0410-9bf9-f77b7e298cf2
* proper parsing of pes_extension[12] fields (replaces the previous code that ↵Gravatar nicodvb2007-07-07
| | | | | | relied on specific flags set git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23729 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix crash on some DVDsGravatar iive2007-07-06
| | | | | | | | | | sprintf(tmp,"%.02x",(char)0xef); would print "ffffffef" instead of "ef", in this case this leads to local array buffer overflow and hard to trace stack corruption. The quick, easy & durty solution is to use (unsigned char) or (uint8_t) Fixes Bugzilla 860 & 845 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23728 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix CSS format strings, they could print more than two digits forGravatar reimar2007-07-06
| | | | | | | "negative" numbers. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23727 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add ENABLE_THREADS and ENABLE_SMALL definesGravatar reimar2007-07-06
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23726 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove empty strlcat and strlcpy filesGravatar reimar2007-07-06
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23725 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some missing frees.Gravatar reimar2007-07-05
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23724 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpyGravatar reimar2007-07-05
| | | | | | | instead of plain strlcat/strlcpy git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23723 b3059339-0415-0410-9bf9-f77b7e298cf2
* license header consistency cosmeticsGravatar diego2007-07-05
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23722 b3059339-0415-0410-9bf9-f77b7e298cf2
* Group all copyright and author notices together.Gravatar diego2007-07-05
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23721 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused variables.Gravatar diego2007-07-04
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23720 b3059339-0415-0410-9bf9-f77b7e298cf2
* Also remove generated tools on distclean.Gravatar diego2007-07-04
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23719 b3059339-0415-0410-9bf9-f77b7e298cf2
* small grammar fixGravatar diego2007-07-04
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23718 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove LIBXVID_ENCODER from the list of libavcodec encoders if the test fails.Gravatar diego2007-07-04
| | | | | | | Hopefully fixes Bugzilla #757. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23717 b3059339-0415-0410-9bf9-f77b7e298cf2
* Write configure parameters to configure.log.Gravatar diego2007-07-04
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23716 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused fileGravatar lucabe2007-07-03
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23715 b3059339-0415-0410-9bf9-f77b7e298cf2
* roff fix (new line for new sentence)Gravatar kraymer2007-07-03
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23714 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync FFmpeg changes:Gravatar diego2007-07-03
| | | | | | | CONFIG_X264 --> CONFIG_LIBX264, CONFIG_XVID --> CONFIG_LIBXVID git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23713 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cygwin has had inttypes.h since version 1.5.Gravatar diego2007-07-03
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23712 b3059339-0415-0410-9bf9-f77b7e298cf2
* The file is compiled conditional to USE_DVDREAD so the #ifdef USE_DVDREADGravatar diego2007-07-03
| | | | | | | in the file are senseless. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23711 b3059339-0415-0410-9bf9-f77b7e298cf2
* The header is always included conditional to USE_DVDREAD,Gravatar diego2007-07-03
| | | | | | | no need to duplicate the #ifdef. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23710 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do not use leading underscores in multiple inclusion guards, they are reserved.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23709 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add equivalent of -Wno-pointer-sign for iccGravatar cehoyos2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23708 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently use filename as multiple inclusion guard.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23707 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently use filenames as multiple inclusion guards.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23706 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add consistent GUI prefix to multiple inclusion guards.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23705 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add multiple inclusion guard.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23704 b3059339-0415-0410-9bf9-f77b7e298cf2
* Consistently use filenames as multiple inclusion guards.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23703 b3059339-0415-0410-9bf9-f77b7e298cf2
* first step of video.xml translation... (it's soooo huuuuuge..... :))Gravatar ptt2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23702 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix 'make checkheaders'.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23701 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove obsolete and misleading comment.Gravatar diego2007-07-02
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23700 b3059339-0415-0410-9bf9-f77b7e298cf2