aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Disable unused query_format functions for now until they areGravatar diego2007-09-26
| | | | | | | | | | | | investigated and properly used/fixed. Fixes warnings: vf_softskip.c:50: warning: 'query_format' defined but not used vf_tfields.c:433: warning: 'query_format' defined but not used vf_telecine.c:91: warning: 'query_format' defined but not used vf_telecine.c:105: warning: 'config' defined but not used git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24625 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation after FFmpegs r10594.Gravatar cehoyos2007-09-26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24624 b3059339-0415-0410-9bf9-f77b7e298cf2
* Disable buggy unused function via #if 0, blessed by Rich.Gravatar diego2007-09-26
| | | | | | | | | Fixes warning: vf_pullup.c: At top level: vf_pullup.c:82: warning: 'get_image' defined but not used git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24623 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused crappy hash_pic function, blessed by Rich.Gravatar diego2007-09-26
| | | | | | | | Fixes warning: vf_detc.c:57: warning: 'hash_pic' defined but not used git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24622 b3059339-0415-0410-9bf9-f77b7e298cf2
* BFIN is an architecture not a CPU extension, so move it from _cpuexts_all to ↵Gravatar reimar2007-09-26
| | | | | | _arch_all git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24621 b3059339-0415-0410-9bf9-f77b7e298cf2
* have ChangeLog a bit more generic about vidix ati drivers upgradeGravatar ben2007-09-26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24620 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning fixes:Gravatar diego2007-09-26
| | | | | | | | | vo_directfb2.c: In function 'config': vo_directfb2.c:499: warning: unused variable 'flip' vo_directfb2.c:498: warning: unused variable 'zoom' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24619 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix playback of streams with more than one audio track (only one supported).Gravatar cehoyos2007-09-25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24618 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24550: msglevel 5 is the default.Gravatar kraymer2007-09-25
| | | | | | | | | | | r24551: Clarify description of MPLAYER_VERBOSE. r24558: Clarify the relationship between -msglevel and MPLAYER_VERBOSE. r24573: Implement setting gain control for video devices (usually webcams) in v4l2 tv:// driver. r24592: Change outdated note for -subfps git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24617 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc updates and spelling fixesGravatar diego2007-09-25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24616 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: misc typo fixesGravatar diego2007-09-25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24615 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add IRC nick for Gianluigi Tiesi.Gravatar diego2007-09-25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24614 b3059339-0415-0410-9bf9-f77b7e298cf2
* The FFmpeg RoQ video decoder now uses 444P colorspace.Gravatar diego2007-09-25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24613 b3059339-0415-0410-9bf9-f77b7e298cf2
* Simplify: initialize at declaration at the start of the functionGravatar reimar2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24612 b3059339-0415-0410-9bf9-f77b7e298cf2
* Get rid of rather pointless assertsGravatar reimar2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24611 b3059339-0415-0410-9bf9-f77b7e298cf2
* ao_alsa: Fix get_space() return values larger than buffersizeGravatar uau2007-09-24
| | | | | | | | | | | | | | | | | After a buffer underrun the ALSA get_space() function sometimes returned values larger than the ao had set in ao_data.buffersize. Fix this by replacing the old check against MAX_OUTBURST by one against ao_data.buffersize. There should be no need for the MAX_OUTBURST check; the current MPlayer side should no longer have any constant limit on the amount of data an ao can buffer or request at once. The get_space() values larger than ao_data.buffersize triggered errors in audio decoding causing the current attempt to fill audio buffers to be aborted. I'm not sure how often that caused behavior noticeably worse then an underrun already is. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24610 b3059339-0415-0410-9bf9-f77b7e298cf2
* demux_audio.c: Fix timestamp handlingGravatar uau2007-09-24
| | | | | | | | | | | | | | | | | | The code calculated the pts values of audio packets by adding the length of the current packet to the pts of the previous one. The length of the previous packet should be added instead. This broke WAV timestamps near the end of the stream where a short packet occurs. Change the code to store the pts of the next packet instead of the last one. This fixes the WAV timestamps and allows some simplifications. MP3 timestamps are not affected as packets are always treated as constant decoded length, and FLAC timestamps still have worse problems (FLAC is treated as as if it was constant bitrate even though it isn't). Also store the timestamps as double instead of float. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24609 b3059339-0415-0410-9bf9-f77b7e298cf2
* codecs.conf: Change Monkey's Audio decoder status to "working"Gravatar uau2007-09-24
| | | | | | | | | The FFmpeg issue that broke decoding of some files has been fixed and no other problems are known, so there's no need to mark it "buggy" any more. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24608 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24606Gravatar Gabrov2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24607 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24604: Teletext documentationGravatar voroshil2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24606 b3059339-0415-0410-9bf9-f77b7e298cf2
* r24558: Clarify the relationship between -msglevel and MPLAYER_VERBOSE.Gravatar voroshil2007-09-24
| | | | | | | | r24573: Implement setting gain control for video devices (usually webcams) r24592: Change outdated note for -subfps git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24605 b3059339-0415-0410-9bf9-f77b7e298cf2
* Teletext documentationGravatar voroshil2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24604 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation with enabled radio capture and disabled OSS audio.Gravatar voroshil2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24603 b3059339-0415-0410-9bf9-f77b7e298cf2
* warning fix:Gravatar diego2007-09-24
| | | | | | | | sub.c: In function 'vo_update_osd': sub.c:1104: warning: suggest explicit braces to avoid ambiguous 'else' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24602 b3059339-0415-0410-9bf9-f77b7e298cf2
* add support for yuva420p colorspace (yuv420p + alpha)Gravatar aurel2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24601 b3059339-0415-0410-9bf9-f77b7e298cf2
* Pass URLs to gmplayer when executing, it accepts URLs on the command line.Gravatar diego2007-09-24
| | | | | | | patch by Chidambar 'ilLogict' Zinnoury, illogict online fr git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24600 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove Application from list of Categories, it is not a valid category.Gravatar diego2007-09-24
| | | | | | | patch by Chidambar 'ilLogict' Zinnoury, illogict online fr git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24599 b3059339-0415-0410-9bf9-f77b7e298cf2
* French typoGravatar diego2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24598 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetic (get rid of _ at the start of local variable names)Gravatar michael2007-09-24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24597 b3059339-0415-0410-9bf9-f77b7e298cf2
* According to MSDN a thread must call CoUninitialize once for each successfulGravatar diego2007-09-23
| | | | | | | | | | call it has made to CoInitialize or CoInitializeEx, including any call that returns S_FALSE. Only the CoUninitialize call corresponding to the CoInitialize or CoInitializeEx call that initialized the library can close it. patch by Gianluigi Tiesi, mplayer netfarm it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24596 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add new features, implemented in tv://Gravatar voroshil2007-09-23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24595 b3059339-0415-0410-9bf9-f77b7e298cf2
* add functions for the vga register access patch by Guillaume LECERF <foxcore ↵Gravatar faust32007-09-23
| | | | | | at gmail.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24594 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix building without network.Gravatar iive2007-09-22
| | | | | | | | | When _network=='no' then _nemesi, _live and _native_rtsp would keep their default values, in the the case of _native_rtsp this happens to be 'yes'. Clearing them also produces nicer output. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24593 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change outdated note for -subfpsGravatar reimar2007-09-22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24592 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert r24103, it was nonsense and add a comment that explains the codeGravatar reimar2007-09-22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24591 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unused function parametersGravatar nicodvb2007-09-22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24590 b3059339-0415-0410-9bf9-f77b7e298cf2
* in ts_detect_streams() moved the iteration condition inside the loopGravatar nicodvb2007-09-22
| | | | | | | | because it depends on the updated value of stream_tell(); (fixes infinite wait on enctrypted TS streams) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24589 b3059339-0415-0410-9bf9-f77b7e298cf2
* add some commented register dumping codeGravatar faust32007-09-20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24588 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r24573Gravatar Gabrov2007-09-20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24587 b3059339-0415-0410-9bf9-f77b7e298cf2
* libnemesi changelog itemGravatar lu_zero2007-09-20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24586 b3059339-0415-0410-9bf9-f77b7e298cf2
* rivatv_lock_nv04 is actually an extended version of rivatv_lock_nv03 (patch ↵Gravatar faust32007-09-19
| | | | | | by Guillaume LECERF <foxcore at gmail.com>) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24585 b3059339-0415-0410-9bf9-f77b7e298cf2
* libnemesi support, yet another rtsp/rtp library...Gravatar lu_zero2007-09-19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24584 b3059339-0415-0410-9bf9-f77b7e298cf2
* I have overhauled the build system.Gravatar diego2007-09-19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24583 b3059339-0415-0410-9bf9-f77b7e298cf2
* I don't maintain any Windows ports, but the Debian package.Gravatar diego2007-09-19
| | | | | | | Michael maintains all of FFmpeg. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24582 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix loads of typosGravatar reimar2007-09-19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24581 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add myself as Debian package maintainer, Dariush has not been active in years.Gravatar diego2007-09-19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24580 b3059339-0415-0410-9bf9-f77b7e298cf2
* (Re)move idiotic checks, ret can't be < 0 or > 0 if the loop conditionGravatar reimar2007-09-19
| | | | | | | is that it is == 0! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24579 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix a few typosGravatar reimar2007-09-19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24578 b3059339-0415-0410-9bf9-f77b7e298cf2
* More precise line spacing.Gravatar eugeni2007-09-18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24577 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix text height calculation. It depends on line spacing.Gravatar eugeni2007-09-18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24576 b3059339-0415-0410-9bf9-f77b7e298cf2