1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00
Commit Graph

13357 Commits

Author SHA1 Message Date
rtognimp
d73d711330 100l
sys_errlist[] is deprecated and breaks compilation on some systems,
replaced it with strerror()
also commented out the printf


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13307 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-10 22:22:02 +00:00
al
6c46da9932 Don't prepend basepath to a full unix path. ( 10l to Joey. )
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13306 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-10 20:53:22 +00:00
diego
f1794afafa libavformat
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13305 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-10 17:54:17 +00:00
rtognimp
9e9aec9bf9 Fixes for VirtualAlloc function:
* mplayer received a SIGSEGV under Linux after
	Opening video decoder: [dmo] DMO video codecs
	VirtualAlloc(0x00400000, 859648, 0x00003000, 0x00000040)
      because that region was already under use and mmap() with
      MAP_FIXED has problems under Linux (see code).
      VirtualAlloc() fixed in "loader/ext.c".

    * VirtualAlloc() made to conform with win32 documented behavior
      regarding the alignment of the address and size arguments.

    * VirtualAlloc() detection of overlap with previous regions fixed.

Patch by A. Guru ( a.guru at sympatico dot ca )


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13304 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-10 16:39:31 +00:00
diego
052031df6d typos, wording
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13303 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-10 10:15:50 +00:00
rfelker
c3a928cbe6 show video format for all demuxers, not just avi (move this somewhere else if you prefer)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13302 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-10 02:07:16 +00:00
ivo
38321e0fe4 Removed unused variable (leftover of having two instances of directory creation
code, before I moved both and created a function for that).
Made code clearer by moving ++variable out of a function call.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13301 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-10 01:15:24 +00:00
reimar
2fd7617dc8 avoid always skipping first junk with a "sync lost" message
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13300 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 19:28:54 +00:00
rtognimp
f50e3682eb Don't leave a messed up terminal after a crash
Old way:
crash: try uninit + exit (4 times)
crash: try exit(1)
crash: send self kill -9

With this patch:
crash: try uninit + exit (4 times)
crash: forget about the normal mplayer uninit codepaths and try
  restore terminal by force + exit
crash: try exit
crash: send self kill -9

Patch by Jan Knutar ( jknutar at nic dot fi )
Approved by alex


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13299 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 19:24:12 +00:00
gpoirier
2e6733cb05 typos and wordings picked up by Diego
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13298 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 18:36:15 +00:00
gpoirier
4796df0924 Sync with 1.709: "some typo, case change"
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13297 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 15:36:47 +00:00
gpoirier
dd87f6da90 Encoding options update, most are XviD related
The manpage is up-to-date, in perfect sync with English 1.708. Yeah! ;-)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13296 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 15:25:06 +00:00
paszczi
ef621a31f2 sync
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13295 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 13:33:40 +00:00
danny
0b0b70006b some typo, case change
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13294 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 12:53:30 +00:00
paszczi
55ecc82bca synced with 1.708 (aka first sync from my laptop;P)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13293 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 12:22:27 +00:00
gpoirier
8b59d72a5a All video filters are now documented and in sync against English man page.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13292 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 10:33:36 +00:00
attila
3145bff020 adding the code documentation guide lines
now everyone has to follow them


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13291 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-09 01:13:26 +00:00
diego
e8452368cf chunk size fix from Ross Finlayson, ported from xine
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13290 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-08 23:44:34 +00:00
diego
3d6e5d3644 CVS policy updated as discussed on dev-eng.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13289 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-08 15:31:47 +00:00
diego
b2caf6d225 Von/van should not determine alphabetical order, email address added.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13288 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-08 14:58:28 +00:00
gpoirier
d425b8087e Typos on the XviD section
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13287 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-08 11:49:39 +00:00
danny
79f1312178 Synced with 1.707
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13286 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-08 09:42:05 +00:00
ivo
07839ac723 Renamed some MSGTR_VO_JPEG_* messages to MSGTR_VO_* messages, so they can
easily be re-used by other video output drivers, without having inapproriate
names.

To make live easier for the translators, I have made the same changes to
the German and Spanish translations (those who already picked up on the
MSGTR_VO_* messages).


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13285 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-08 03:51:37 +00:00
ivo
b8c10b5b26 This patch moves the directory creation code to a separate function. I have
tried to re-use as much code as possible, to reduce the size of the patch.
All duplicate code is removed, resulting in my first patch that actually
decreases the size of the binary by about 700 bytes :-)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13284 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-08 01:11:16 +00:00
gpoirier
28aac68c03 Big changes on XviD documentation.
All options are now _very well_ documented ;-)
Some options related to each others have been moved around
Deprecated are marked as such


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13283 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 20:27:05 +00:00
diego
d3e6f0ff7f OpenBSD clarification by Björn Sandell <biorn @ dce . chalmers . se>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13282 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 17:30:07 +00:00
kraymer
f1cc473944 newly created videofilters section
\-vf has been moved there from decoding section


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13281 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 11:00:27 +00:00
kraymer
278bae86f7 finished translation and review of decoding/filtering section
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13280 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 10:40:30 +00:00
kraymer
4ffffb3304 \-af note added
typos and expression changes
unification of some technical terms
	macroblock -> makroblock
	bewegungsvektor -> Motion-Vector
	Nachbearbeitung -> Postprocessing
little general work on decoding/filtering section


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13279 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 10:23:27 +00:00
gpoirier
c1db011988 Cumulative patch
"X11 options do not affect SDL", "\-noencodedups", "mplayer -af help now lists
all available audio filters", "pullup docs + new feature for slow cpus"


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13278 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 09:59:27 +00:00
gpoirier
9605a7fbe9 Sync with Diego's alphabetical order for lavdopts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13277 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 08:53:09 +00:00
michael
05d729ee2b disable direct rendering for h264
until now we did try with dr, and disabled it if more then 1 reference frame was used, but that rarely resulted in dr+h264 and its not guranteed to work as stride may end up different, and remocing CODEC_CAP_DR1 from h264 in ffmpeg isnt correct either as the h264 codec does support it


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13276 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 01:20:19 +00:00
diego
01463b7cf4 MPlayer X11 options do not affect SDL.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13275 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 01:05:56 +00:00
diego
f0374b30da spelling
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13274 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-07 00:56:58 +00:00
kraymer
f4a5fdc012 reorder lavdopts suboptions to achieve alphabetical order
fixed the same typo a few times
changed macro definition (now in sync) that fixed 'non-compliant'
	display of suboptions listings


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13273 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 23:07:20 +00:00
kraymer
e6f193b5f0 \-jpeg moved
updates in decoding/filtering section, especially addes lavdopts suboptions
changed disclaimer
other minor fixes


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13272 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 22:54:06 +00:00
rfelker
c4ca2f24f1 finally diego will be happy....this is totally useless but oh well :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13271 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 22:30:53 +00:00
ivo
bdc25d636e mplayer -af help now lists all available audio filters.
Updated manual page.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13270 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 22:27:08 +00:00
reimar
2fa8fe4ad3 do not modify d_width and d_height when -xy option was given, otherwise -xy has no effect with e.g. vo_gl
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13269 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 21:26:46 +00:00
rfelker
49a7110b03 pullup docs + new feature for slow cpus :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13268 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 21:25:59 +00:00
reimar
fa0823db47 Copy-n-Paste bug breaking channel selection in audio configuration dialog
Patch by (eyager at chartermi dot net)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13267 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 20:11:37 +00:00
diego
19b4690152 typo
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13266 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 14:07:48 +00:00
diego
74ab77d342 pan filter needs number of _input_ channels, ported from the man page.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13265 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 14:06:33 +00:00
diego
2153dd615f List administrators.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13264 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 14:05:09 +00:00
diego
564d13a1b9 mailing lists and german documentation maintainers, spelling
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13263 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 11:11:02 +00:00
diego
94dcf724a0 -lavdopts fast, small fix to -lavdopts ec
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13262 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 11:03:51 +00:00
diego
0808566b89 alphabetical order for lavdopts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13261 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 10:55:01 +00:00
diego
fd84501756 MB, QP explanation, some more consistency
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13260 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 10:50:19 +00:00
diego
f58ee65f7f some new patch policy: compression, mail threading, printf vs mp_msg
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13259 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 09:05:38 +00:00
gpoirier
62f9f9f285 More information on XviD's "interlaced" and "4mv" options thanks to a
discution with XviD devs.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13258 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-09-06 07:52:49 +00:00