summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at ↵faust32006-02-092-5/+18
| | | | | | hotmail.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17569 b3059339-0415-0410-9bf9-f77b7e298cf2
* I took over ao_alsa maintainership.cladisch2006-02-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17568 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by Stefan Huehner / stefan % huehner ! org \rathann2006-02-0986-208/+208
| | | | | | | | | | | | | | | | | | | | | | 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
* include config.h as img_format.h needs endian definitions, noticed by Alan ↵iive2006-02-091-0/+1
| | | | | | Curry <pacman at theworld com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17566 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix -idx with ODML files (patch by Benjamin Zores < ben _at_ tutuxclan.org >)aurel2006-02-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17565 b3059339-0415-0410-9bf9-f77b7e298cf2
* Correct RGB vs. BGR confusion, the macros vec_mstrgb24 and vec_mstbgr24 eachdiego2006-02-091-3/+3
| | | | | | | | | | do the opposite of what they say. The vec_mstrgb24 and vec_mstbgr24 macros should be opposites and not perform the same things. patch by Alan Curry, pacman_at_world_dot_std_dot_com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17564 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix CSeq answer for keepalive OPTIONS requests during playbackrtognimp2006-02-081-2/+2
| | | | | | | | | The CSeq was mispelled as Cseq, so MPlayer alwys answered with CSeq=1 Fixed with help from xiojason on #mplayer git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17563 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add support for grayscale [m]jpegrtognimp2006-02-082-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17562 b3059339-0415-0410-9bf9-f77b7e298cf2
* altivec_yuv2packedX() ignores the requested output format and unconditionallydiego2006-02-081-2/+32
| | | | | | | | | outputs RGBA. This patch supports 6 output formats and prints an error message if it is asked to provide an output format it is not capable of. patch by Alan Curry, pacman_at_world_dot_std_dot_com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17561 b3059339-0415-0410-9bf9-f77b7e298cf2
* expanded and improved NeoMagic TV-out sectiondiego2006-02-081-15/+20
| | | | | | | based on a patch by Helio Polis, simplesmoke_at_hotmail_dot_com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17560 b3059339-0415-0410-9bf9-f77b7e298cf2
* AltiVec operations need to have memory aligned on 16-byte boundaries.diego2006-02-082-5/+10
| | | | | | | patch by Alan Curry, pacman at world dot std dot com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17559 b3059339-0415-0410-9bf9-f77b7e298cf2
* vYCoeffsBank and vCCoeffsBank are allocated and initialized using incorrectdiego2006-02-081-4/+4
| | | | | | | | sizes based on the image width instead of height. patch by Alan Curry, pacman at world dot std dot com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17558 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l 1000 fps fixmichael2006-02-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17557 b3059339-0415-0410-9bf9-f77b7e298cf2
* fftruespeech works now that the nBlockAlign issue is settled.diego2006-02-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17556 b3059339-0415-0410-9bf9-f77b7e298cf2
* read data in nBlockAlign aligned chunksreimar2006-02-071-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17555 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1. Include audio_delay as an argument to demux_seek.corey2006-02-0724-33/+34
| | | | | | | | | | | 2. Modify demux_seek_avi to adjust the audio/video stream positions so that mplayer/mencoder will instantly be in sync even when -delay is specified. Other demuxers could be modified similarly in the future. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17554 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix mpng to work correctly with 16 bit png's. don't have any files to testods152006-02-071-0/+1
| | | | | | | | this on, but mpng still works correctly for files that worked fine before. patch by derf < tterribe BANG xiph POIT org > git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17553 b3059339-0415-0410-9bf9-f77b7e298cf2
* EOR can only be (un)set for non delayed streams.ods152006-02-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17552 b3059339-0415-0410-9bf9-f77b7e298cf2
* small syntax/upper-lowercase fixptt2006-02-071-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17551 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 1.1223gpoirier2006-02-071-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17550 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor correction of last two updatesdanny2006-02-071-5/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17549 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow headers to be repeated anywhereods152006-02-071-2/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17548 b3059339-0415-0410-9bf9-f77b7e298cf2
* let osx sleep if video is pausednplourde2006-02-072-30/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17547 b3059339-0415-0410-9bf9-f77b7e298cf2
* -fixed-vo shall no longer be called BETA-CODE.diego2006-02-071-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17546 b3059339-0415-0410-9bf9-f77b7e298cf2
* ZMB decoderdiego2006-02-061-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17545 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.diego2006-02-061-18/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17544 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark ffrv20 as working.diego2006-02-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17543 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add support for Zip Motion-Block Video (ZMB), patch by Kostya.diego2006-02-061-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17542 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unused variablesnicodvb2006-02-061-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17541 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed wrong delta_frame calculation that would affect soft-telecinenicodvb2006-02-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17540 b3059339-0415-0410-9bf9-f77b7e298cf2
* Build muxers only when MEncoder is enabled.diego2006-02-061-5/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17539 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1.221: Typo fixkraymer2006-02-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17538 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1.1222: cs and ls swscale parameters accept different value ranges now.kraymer2006-02-051-15/+12
| | | | | | | | 1.1221: Add -nocache option, -cache is not a flag option. 1.1220: x264 tweaks git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17537 b3059339-0415-0410-9bf9-f77b7e298cf2
* cs and ls swscale parameters accept different value ranges now.diego2006-02-051-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17536 b3059339-0415-0410-9bf9-f77b7e298cf2
* reinitialize adapter_count to 0, EnumCallbackEx will not work otherwisereimar2006-02-051-0/+1
| | | | | | | | (when playing more that one file). Fixes bug #429. Based on patch by Miguel Scaramozzino - dyingshell at yahoo com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17535 b3059339-0415-0410-9bf9-f77b7e298cf2
* Index repetitionods152006-02-041-7/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17534 b3059339-0415-0410-9bf9-f77b7e298cf2
* add compare_tsods152006-02-041-0/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17533 b3059339-0415-0410-9bf9-f77b7e298cf2
* EOR in indexods152006-02-041-4/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17532 b3059339-0415-0410-9bf9-f77b7e298cf2
* change sws sharpen filter a littlemichael2006-02-042-31/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17531 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 1.1221gpoirier2006-02-031-14/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17530 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add -nocache option, -cache is not a flag option.diego2006-02-021-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17529 b3059339-0415-0410-9bf9-f77b7e298cf2
* avoid conflicting types error on cygwinfaust32006-02-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17528 b3059339-0415-0410-9bf9-f77b7e298cf2
* x264 tweakslorenm2006-02-021-12/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17527 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo fixesptt2006-02-011-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17526 b3059339-0415-0410-9bf9-f77b7e298cf2
* Only compile libmpencoders if MEncoder has been enabled.diego2006-01-311-1/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17525 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move conditional compilation out of the code and into the build system.diego2006-01-3111-51/+39
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17524 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move conditional compilation out of the code and into the build system.diego2006-01-312-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17523 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync up to 1.221ptt2006-01-311-7/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17522 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync up to 1.1216ptt2006-01-311-49/+136
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17521 b3059339-0415-0410-9bf9-f77b7e298cf2
* update for recent developmentsdiego2006-01-301-19/+25
| | | | | | | based on a patch by compn, tempn %%@%% twmi %%.%% rr %%.%% com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17520 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed forgotten fprintf()nicodvb2006-01-301-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17519 b3059339-0415-0410-9bf9-f77b7e298cf2
* when linking to external libav* try using pkg-config firstnicodvb2006-01-301-4/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17518 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 1.221gabrov2006-01-301-8/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17517 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typo fixgabrov2006-01-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17516 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1.218: typo, consistencykraymer2006-01-301-86/+86
| | | | | | | | | 1.217: Try to only use a linebreak without hyphenation (\:) where it makes sense. 1.216: Unify the handling of escaped spaces. + some wording git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17515 b3059339-0415-0410-9bf9-f77b7e298cf2
* Synced with 1.1214jheryan2006-01-301-68/+246
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17514 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync up to 1.202ptt2006-01-301-47/+116
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17513 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1.219: More detailed description of brd_scale.kraymer2006-01-301-5/+18
| | | | | | | | | 1.215: Include MEncoder config files in list of files. 1.214: [does not apply] 1.213: Fix up new profiles section and the MPLAYER_VERBSE environment variable. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17512 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 1.1219 + typo fixgpoirier2006-01-301-4/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17511 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 1.216gabrov2006-01-301-40/+69
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17510 b3059339-0415-0410-9bf9-f77b7e298cf2
* mention TOOLS/encode2mpeglightnicodvb2006-01-291-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17509 b3059339-0415-0410-9bf9-f77b7e298cf2
* new tool to encode to mpeg using only mencoder; patch by Giacomo Comes ↵nicodvb2006-01-292-0/+1869
| | | | | | <comes ad naic punctum edu> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17508 b3059339-0415-0410-9bf9-f77b7e298cf2
* More detailed description of brd_scale.corey2006-01-291-2/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17507 b3059339-0415-0410-9bf9-f77b7e298cf2
* Update musepack entry: I actually implemented seeking and sometimes -af ↵reimar2006-01-291-2/+2
| | | | | | volume is needed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17506 b3059339-0415-0410-9bf9-f77b7e298cf2
* added missing entries since the last release (approved by Diego with smallrathann2006-01-291-6/+59
| | | | | | | fixes) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17505 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 1.1218gpoirier2006-01-291-75/+75
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17504 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo, consistencydiego2006-01-291-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17503 b3059339-0415-0410-9bf9-f77b7e298cf2
* Try to only use a linebreak without hyphenation (\:) where it makes sense.diego2006-01-291-69/+69
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17502 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with 1.1216gpoirier2006-01-291-44/+104
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17501 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify the handling of escaped spaces.diego2006-01-291-38/+38
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17500 b3059339-0415-0410-9bf9-f77b7e298cf2
* Include MEncoder config files in list of files.diego2006-01-291-2/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17499 b3059339-0415-0410-9bf9-f77b7e298cf2
* French MEncoder docs are not synced yet.diego2006-01-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17498 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l: wrong syntaxgpoirier2006-01-282-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17497 b3059339-0415-0410-9bf9-f77b7e298cf2
* SDL video out syntax has changed a while ago, but the XML was not updated ↵gpoirier2006-01-282-5/+5
| | | | | | since now :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17496 b3059339-0415-0410-9bf9-f77b7e298cf2
* Also remove objects in subdirectories.diego2006-01-281-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17495 b3059339-0415-0410-9bf9-f77b7e298cf2
* use mp_a52_framesize() when liba52 is not availablenicodvb2006-01-271-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17494 b3059339-0415-0410-9bf9-f77b7e298cf2
* export custom mp_a52_framesize(), needed to parse ac3 frames when liba52 is ↵nicodvb2006-01-271-3/+6
| | | | | | not present; will be moved in a more appropriate place sometimes in the future git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17493 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetic, fix spacingods152006-01-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17492 b3059339-0415-0410-9bf9-f77b7e298cf2
* MPlayer OSX port: Add a call to UDFFindFile to verify that we are opening a ↵nplourde2006-01-271-0/+9
| | | | | | valid udf image. Patch by Emanuele Giaquita <emanuele.giaquinta@gmail.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17491 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make clean/distclean behave uniformly in all directories.diego