summaryrefslogtreecommitdiffstats
path: root/DOCS
Commit message (Collapse)AuthorAgeFilesLines
* spelling, more wishesdiego2004-04-121-8/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12181 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove old example streammichael2004-04-091-63/+12
| | | | | | | | add startcode values remove nonsense redownloading goal git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12163 b3059339-0415-0410-9bf9-f77b7e298cf2
* removing checksum_threshold & keyframe predictionmichael2004-04-091-11/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12162 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1l fix.nauj272004-04-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12161 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_gl supporting more color formats for testingreimar2004-04-081-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12160 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added <application> missing tags.nauj272004-04-0818-280/+372
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12159 b3059339-0415-0410-9bf9-f77b7e298cf2
* typopaszczi2004-04-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12155 b3059339-0415-0410-9bf9-f77b7e298cf2
* language_code & fourcc vb->v reversalmichael2004-04-071-4/+4
| | | | | | | | version 0->1, 0 was NUT with subpackets :) stream_id < stream_count rule (otherwise stream[stream_id] would be problematic ...) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12151 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncnauj272004-04-064-79/+220
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12148 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncnauj272004-04-053-100/+238
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12120 b3059339-0415-0410-9bf9-f77b7e298cf2
* switching from crc32 to adler32 checksums, cuz they are faster and simplermichael2004-04-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12119 b3059339-0415-0410-9bf9-f77b7e298cf2
* minor changesmichael2004-04-041-11/+10
| | | | | | | | rename b -> vb, so 'v' is the vlc, 'b' is simply a series of bytes and 'vb' is the length as vlc + the bytes encode the fourcc & language code as v instead of vb, this is much simpler in practice, at least in lavf as the fourcc is an int there git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12118 b3059339-0415-0410-9bf9-f77b7e298cf2
* restrictions to ensure that O(log n) seeking and error recovery is possiblemichael2004-04-031-1/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12111 b3059339-0415-0410-9bf9-f77b7e298cf2
* Developers should subscribe to mplayer-cvslog, mention mplayer-docs.diego2004-04-021-2/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12108 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmeticsdiego2004-04-021-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12107 b3059339-0415-0410-9bf9-f77b7e298cf2
* Commit independent changes separately.diego2004-04-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12100 b3059339-0415-0410-9bf9-f77b7e298cf2
* How to handle incomplete translations of message files.diego2004-04-011-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12092 b3059339-0415-0410-9bf9-f77b7e298cf2
* reversing the change to the forw/backw pointers, its somewhat simpler to ↵michael2004-03-311-38/+39
| | | | | | | | | | | | update it if the forward pointer is first much more efficient encoding of the frame_code table stream_id -> stream_id_plus1, that way 0 is the special case instead of stream_count and we can be sure the table needs only 8bit per entry replace timestamp_msb by timestamp (and obviously dont code the lsb if the whole is coded) thats simpler and more compact add a msb_timestamp flag to the frame_code[].flags git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12085 b3059339-0415-0410-9bf9-f77b7e298cf2
* removing subpackets (everyone hates them ...)michael2004-03-301-120/+103
| | | | | | | | | | | removing shuffle_type (meaningless without subpackets) making timestamp_lsb a simple unsigned value (someone proposed that a long time ago, dunno dont remember who, IIRC it was rejected as it more often required the timestamp_msb to be coded but by defining lsb relative to the last lsb we need very few msbs in the error free case and for damaged files its also pretty difficult to trash the timestamp, for example for a fixed fps stream with 7bit lsb_timestamps we need to loose >64 frames in a row to end up with a wrong timestamp) cleanup (filesize and such where only partially removed) frame_code byte, with the meaning of each value stored in the main header the frame_code contains the keyframe_flag, packet_type and can contain the timestamp_delta, stream_id and the data_size or part if it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12083 b3059339-0415-0410-9bf9-f77b7e298cf2
* vf_phase filter by Ville Saari (114263 at foo dot bar dot org)rfelker2004-03-291-0/+46
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12082 b3059339-0415-0410-9bf9-f77b7e298cf2
* added <application> tag and some 10l, patch by frogu <l_j_p@wp.pl>paszczi2004-03-281-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12080 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use aspect from encoder for AVI vprp headerranma2004-03-241-21/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12062 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync by danny <guru@digitalfantasy.it>diego2004-03-231-30/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12056 b3059339-0415-0410-9bf9-f77b7e298cf2
* Include the comments from -aviaspect into the description of -useaviaspect ↵ranma2004-03-221-29/+21
| | | | | | and remove -aviaspect git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12055 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better vprp aspect fixranma2004-03-221-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12054 b3059339-0415-0410-9bf9-f77b7e298cf2
* -aviaspect option moved to its alphabetical position, new sentences shoulddiego2004-03-211-32/+33
| | | | | | | start on a new line, spelling fixes. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12053 b3059339-0415-0410-9bf9-f77b7e298cf2
* explicit option for AVI PRP headerhenry2004-03-211-0/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12052 b3059339-0415-0410-9bf9-f77b7e298cf2
* -geometry examples corrected.diego2004-03-191-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12046 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l bug fixes, -noaspect moved just below -aspect.diego2004-03-191-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12045 b3059339-0415-0410-9bf9-f77b7e298cf2
* -adapter, -refreshrate options, based on patch by Sascha Sommerdiego2004-03-181-1/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12041 b3059339-0415-0410-9bf9-f77b7e298cf2
* updates, spellingdiego2004-03-171-5/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12039 b3059339-0415-0410-9bf9-f77b7e298cf2
* OpenDML read/write supportranma2004-03-171-13/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12037 b3059339-0415-0410-9bf9-f77b7e298cf2
* Italian man page translation by Daniele Forghieri <guru@digitalfantasy.it>diego2004-03-151-0/+5544
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12030 b3059339-0415-0410-9bf9-f77b7e298cf2
* spelling fixesdiego2004-03-151-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12029 b3059339-0415-0410-9bf9-f77b7e298cf2
* How to make MPlayer work on Fedora core.diego2004-03-151-0/+58
| | | | | | | Based on a patch sent by Alex Eskin <alexeskin@yahoo.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12027 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explain why 'cvs admin' should only be used on the last revision of a file.diego2004-03-151-4/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12026 b3059339-0415-0410-9bf9-f77b7e298cf2
* whitespace cosmeticsdiego2004-03-151-32/+32
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12025 b3059339-0415-0410-9bf9-f77b7e298cf2
* rawvideo muxer patch by John Earl <jwe21@cam.ac.uk>ranma2004-03-091-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12017 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncpaszczi2004-03-091-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12016 b3059339-0415-0410-9bf9-f77b7e298cf2
* OpenGL now works under Windows.diego2004-03-091-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12015 b3059339-0415-0410-9bf9-f77b7e298cf2
* -vo directfb options by Jiri Svobodadiego2004-03-051-6/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12014 b3059339-0415-0410-9bf9-f77b7e298cf2
* Telecined and related syncnauj272004-03-041-1/+553
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12011 b3059339-0415-0410-9bf9-f77b7e298cf2
* Keep the ./configure options for xvid in sync.rathann2004-02-271-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12001 b3059339-0415-0410-9bf9-f77b7e298cf2
* spp soft thresholding patch by (James Crowson <jbcrowso at ncsu dot edu>)michael2004-02-241-3/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11994 b3059339-0415-0410-9bf9-f77b7e298cf2
* vd_ffmpeg to set repeat-first-field patch by (Zoltan Hidvegi <mplayer at ↵michael2004-02-241-5/+3
| | | | | | hzoli do 2y dot net>) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11993 b3059339-0415-0410-9bf9-f77b7e298cf2
* A bit late, but here's the "more sane options ordering" patch.ranma2004-02-231-3/+3
| | | | | | | Also fixes the supported formats. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11992 b3059339-0415-0410-9bf9-f77b7e298cf2
* new location of codecs-status.htmlgabucino2004-02-233-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11991 b3059339-0415-0410-9bf9-f77b7e298cf2
* Line breaks inserted, overly long lines wrapped, partly reworded.diego2004-02-191-15/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11982 b3059339-0415-0410-9bf9-f77b7e298cf2
* replaygainalex2004-02-181-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11976 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove 1000000l example that DOES NOT WORK. 9 times out of 10 it willrfelker2004-02-171-3/+0
| | | | | | | | ruin a/v sync due to the fact that mencoder doesn't have cache and can't seek!!! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11972 b3059339-0415-0410-9bf9-f77b7e298cf2
* get some new maintainersattila2004-02-171-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11970 b3059339-0415-0410-9bf9-f77b7e298cf2
* Adds support for the film grain effect and deblocking filters in xvidattila2004-02-171-0/+11
| | | | | | | patch by Jan Knutar <jknutar@nic.fi> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11968 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove raw nonsense and replace it by one ovcattila2004-02-171-5/+3
| | | | | | | patch by John Earl <jwe21@cam.ac.uk> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11967 b3059339-0415-0410-9bf9-f77b7e298cf2
* dfbmga docs updategabucino2004-02-121-0/+30
| | | | | | | Patch by Thomas Jarosch <tomj@simonv.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11955 b3059339-0415-0410-9bf9-f77b7e298cf2
* SuSE docbook DTD path, patch by Thomas Jarosch <tomj@simonv.com>diego2004-02-111-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11953 b3059339-0415-0410-9bf9-f77b7e298cf2
* slight wording improvement, noticed by Dominikdiego2004-02-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11950 b3059339-0415-0410-9bf9-f77b7e298cf2
* We need make 3.80 to build.diego2004-02-101-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11946 b3059339-0415-0410-9bf9-f77b7e298cf2
* new section structurediego2004-02-101-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11945 b3059339-0415-0410-9bf9-f77b7e298cf2
* GENERAL OPTIONS section added with a few entries, misc changes.diego2004-02-101-35/+36
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11944 b3059339-0415-0410-9bf9-f77b7e298cf2
* Keyboard control section moved to the beginning.diego2004-02-101-49/+49
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11943 b3059339-0415-0410-9bf9-f77b7e298cf2
* filmdint=fast description corrected, xvidencopts clarified.diego2004-02-101-6/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11942 b3059339-0415-0410-9bf9-f77b7e298cf2
* better description bit_exact lavc optiondiego2004-02-101-4/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11939 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncnicolas2004-02-091-8/+35
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11938 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncnicolas2004-02-091-6/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11934 b3059339-0415-0410-9bf9-f77b7e298cf2
* change_rectangle documentation by Angel <knight@sunflower.com>diego2004-02-091-2/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11933 b3059339-0415-0410-9bf9-f77b7e298cf2
* bit_exact lavc option, patch by "Steven M. Schultz" <sms@2BSD.COM>diego2004-02-081-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11932 b3059339-0415-0410-9bf9-f77b7e298cf2
* new filter: vf_noformat.joey2004-02-061-0/+13
| | | | | | | like vf_format, but in reverse. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11928 b3059339-0415-0410-9bf9-f77b7e298cf2
* Expand frame dropping state description, qp filter explanation improved.diego2004-02-061-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11926 b3059339-0415-0410-9bf9-f77b7e298cf2
* qp change filtermichael2004-02-051-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11922 b3059339-0415-0410-9bf9-f77b7e298cf2
* missing \wight2004-02-041-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11920 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncnauj272004-02-037-36/+125
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11918 b3059339-0415-0410-9bf9-f77b7e298cf2
* xvid4 new aspect options - patch by Nico <nsabbi@tiscali.it>iive2004-02-031-0/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11917 b3059339-0415-0410-9bf9-f77b7e298cf2
* lame accepts only integers, pointed out by iive.diego2004-02-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11916 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncnicolas2004-02-028-36/+616
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11915 b3059339-0415-0410-9bf9-f77b7e298cf2
* duplicate words and spaces removednicolas2004-02-021-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11914 b3059339-0415-0410-9bf9-f77b7e298cf2
* qns tipmichael2004-02-021-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11912 b3059339-0415-0410-9bf9-f77b7e298cf2
* quantizer noise shapingmichael2004-02-021-0/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11911 b3059339-0415-0410-9bf9-f77b7e298cf2
* syncwight2004-02-022-7/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11910 b3059339-0415-0410-9bf9-f77b7e298cf2
* & removed - build fixwight2004-02-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11909 b3059339-0415-0410-9bf9-f77b7e298cf2
* Search links updated.diego2004-02-023-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11908 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix description of -srate, as pointed out by Rich.diego2004-02-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11907 b3059339-0415-0410-9bf9-f77b7e298cf2
* Telecine HOWTO by Corey Hickey <bugfood-ml@fatooh.org>, some modificationsdiego2004-02-011-0/+544