summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* -vfm -afm -vc -acgabucino2001-07-201-10/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1364 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix segfault in DShow video decoder. Using directshow, thejkeil2001-07-201-1/+1
| | | | | | | | | | | | | sh_video->out_out_buffer is NULL on the first few decoded frames, and is initialized in loader/DirectShow/outputpin.cpp, method COutputPin::Receive(), while the video is already running. Do not try to display a frame while sh_video->out_out_buffer is still NULL. Such a test was present in the previous to last revision of this file, but was lost in the last revision. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1363 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some corrections.atmos42001-07-202-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1362 b3059339-0415-0410-9bf9-f77b7e298cf2
* some cleanup, redundant code removedarpi2001-07-201-99/+53
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1361 b3059339-0415-0410-9bf9-f77b7e298cf2
* fontpath fixed again...arpi2001-07-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1360 b3059339-0415-0410-9bf9-f77b7e298cf2
* indeo5-vfw vs. YV12 updatearpi2001-07-201-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1359 b3059339-0415-0410-9bf9-f77b7e298cf2
* crash fixed if no [fontpath] in .descarpi2001-07-201-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1358 b3059339-0415-0410-9bf9-f77b7e298cf2
* argh. -d fixed. fixed?arpi2001-07-201-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1357 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed typoarpi2001-07-201-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1356 b3059339-0415-0410-9bf9-f77b7e298cf2
* install -D changed to -darpi2001-07-201-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1355 b3059339-0415-0410-9bf9-f77b7e298cf2
* Applied DATADIR patch by Vladimir Kushnirarpi2001-07-204-21/+35
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1354 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed shmem size, and now compiles without divx4linux too :)arpi2001-07-201-2/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1353 b3059339-0415-0410-9bf9-f77b7e298cf2
* info about odivx vs. divx4arpi2001-07-191-2/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1352 b3059339-0415-0410-9bf9-f77b7e298cf2
* DivX4Linux supportarpi2001-07-191-0/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1351 b3059339-0415-0410-9bf9-f77b7e298cf2
* DivX4Linux supportarpi2001-07-195-16/+103
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1350 b3059339-0415-0410-9bf9-f77b7e298cf2
* added Gerard Lantau, ffmpeg/libavcodec authorarpi2001-07-192-6/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1349 b3059339-0415-0410-9bf9-f77b7e298cf2
* Solaris 2.6 and older do not support MAP_ANON, just fail the mmap MAP_ANONjkeil2001-07-191-2/+7
| | | | | | | | | | | | attempt on such a system. The code tries mmap with /dev/zero and MIT-shm next. Fix a possible filedesc leak, when the code tries to mmap shared memeory via /dev/zero. Reuse the already open /dev/zero from a previous shmem_alloc call. (same change; now without changing the indentation of the code) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1348 b3059339-0415-0410-9bf9-f77b7e298cf2
* AUDIO_ENCODING_LINEAR8 format is not available on sunos 5.5. Format isjkeil2001-07-191-0/+2
| | | | | | | | unsupported in mplayer for now, to get the code compiled on that old version of the OS. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1347 b3059339-0415-0410-9bf9-f77b7e298cf2
* x11_common does not compile, when the XDPMS extension is not available on thejkeil2001-07-191-2/+9
| | | | | | | target system. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1346 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove "sdl-config: not found" error message during configure, when the systemjkeil2001-07-191-2/+5
| | | | | | | | | | | | | has no SDL installed. Grab nanosleep from libposix4 on solaris (instead of librt), works on old solaris versions, too. Autodetect XDPMS: provide a "#define HAVE_XDPMS", so that C code can leave out DPMS stuff when DPMS is not available on the target platform. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1345 b3059339-0415-0410-9bf9-f77b7e298cf2
* ASF support for non-x86 cpusjkeil2001-07-191-0/+85
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1344 b3059339-0415-0410-9bf9-f77b7e298cf2
* ASF support for non-x86 cpusjkeil2001-07-194-180/+163
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1343 b3059339-0415-0410-9bf9-f77b7e298cf2
* Initial draft of my new cache system...arpi2001-07-181-0/+168
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1342 b3059339-0415-0410-9bf9-f77b7e298cf2
* demuxer struct access code temporary disabled - FIXMEarpi2001-07-171-2/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1341 b3059339-0415-0410-9bf9-f77b7e298cf2
* svga driver didn't compile on linux/ppcjkeil2001-07-171-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1340 b3059339-0415-0410-9bf9-f77b7e298cf2
* mpeg PES steram support (only 1E0 & 1C0 packets, no 1BA/1BB headers)arpi2001-07-162-4/+29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1339 b3059339-0415-0410-9bf9-f77b7e298cf2
* MPlayer doesn't compile on linux/alphajkeil2001-07-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1338 b3059339-0415-0410-9bf9-f77b7e298cf2
* vo_dga doesn't compile on non-x86 architecture due to x86 asm usage.jkeil2001-07-161-5/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1337 b3059339-0415-0410-9bf9-f77b7e298cf2
* Detect cpu architecture for a few more linux variants (linux/sparc, linux/ppc,jkeil2001-07-161-1/+16
| | | | | | | | | | linux/alpha) Try to find out cpu architecture for OpenBSD/x86 (of cause someone still needs to port the code to openbsd...) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1336 b3059339-0415-0410-9bf9-f77b7e298cf2
* some more cleanuparpi2001-07-161-41/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1335 b3059339-0415-0410-9bf9-f77b7e298cf2
* Translated by Justyna Biala <nell@skrzynka.pl>eyck2001-07-168-0/+407
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1334 b3059339-0415-0410-9bf9-f77b7e298cf2
* Poprawki wprowadzone przez: Justyna Bia³a <nell@skrzynka.pl>eyck2001-07-162-82/+91
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1333 b3059339-0415-0410-9bf9-f77b7e298cf2
* ds->type removed - using id-based audio format detection in mplayer.carpi2001-07-164-22/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1332 b3059339-0415-0410-9bf9-f77b7e298cf2
* d_audio->type stuff fixedarpi2001-07-162-5/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1331 b3059339-0415-0410-9bf9-f77b7e298cf2
* kernel 2.2.x + SSE warning message extendedarpi2001-07-161-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1330 b3059339-0415-0410-9bf9-f77b7e298cf2
* ranges fixed (MAX vs. MAX+1 dilemma)arpi2001-07-161-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1329 b3059339-0415-0410-9bf9-f77b7e298cf2
* some cleanup - fixed warnings, removed old stuff, moved audio resync to ↵arpi2001-07-164-58/+46
| | | | | | dec_audio git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1328 b3059339-0415-0410-9bf9-f77b7e298cf2
* added prototype of vo_init()arpi2001-07-161-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1327 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unused DEFAULT_MPG123 stuffarpi2001-07-161-16/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1326 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix typo in shell variable name usagejkeil2001-07-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1325 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some minor comment fixes.jkeil2001-07-141-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1324 b3059339-0415-0410-9bf9-f77b7e298cf2
* Document the latest changes to the mplayer code.jkeil2001-07-141-19/+41
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1323 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove some superfluous casts. Fixes a few compile warnings.jkeil2001-07-141-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1322 b3059339-0415-0410-9bf9-f77b7e298cf2
* On big-endian architectures, all audio decoders default to big-endian 16-bitjkeil2001-07-142-6/+22
| | | | | | | | | | audio sample format. Add support to play both big- and little-endian 16-bit audio format to the sun audio_out driver. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1321 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added some directory existance tests to the distclean and depend targets, sojkeil2001-07-141-3/+11
| | | | | | | | that the user can disable the libavcodec code by removing/renaming the libavcodec subdirectory once again. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1320 b3059339-0415-0410-9bf9-f77b7e298cf2
* mp3 audio decoding didn't work on big-endian architecturesjkeil2001-07-141-2/+44
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1319 b3059339-0415-0410-9bf9-f77b7e298cf2
* *** empty log message ***gabucino2001-07-142-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1318 b3059339-0415-0410-9bf9-f77b7e298cf2
* Disable 3dnow when mmx is disabled.atmos42001-07-131-3/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1317 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reorder dependancies a bit, all *.o *.a files depend on version.h, this allowsjkeil2001-07-131-2/+12
| | | | | | | parallel builds using "gmake -j N" git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1316 b3059339-0415-0410-9bf9-f77b7e298cf2
* Handle linux SMP machines (suggested by Martin Aumueller)jkeil2001-07-131-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1315 b3059339-0415-0410-9bf9-f77b7e298cf2
* sh_audio->a_buffer is freed twice (here and in mplayer.c), can result tojkeil2001-07-131-0/+1
| | | | | | | malloc heap corruption. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1314 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix two prototype warningsjkeil2001-07-132-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1313 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor code cleanup from Vladimir Kushnirjkeil2001-07-131-4/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1312 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix sys/mman.h header test for netbsd (may work no freebsd, too)jkeil2001-07-121-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1311 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some preliminary support for non-x86 architectures to mplayerjkeil2001-07-1210-203/+515
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1310 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support playback of AFMT_S16_LE audio data on a big endian machinejkeil2001-07-121-86/+127
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1309 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add prototypes to wine/loader stuff, so that we can catch __stdcall functionjkeil2001-07-1221-697/+533
| | | | | | | | | | | attribute mismatch between caller/caller. wine/loader is less sensitive to optimization now. (now that avifile-0.6 has the same patch installed, we're a bit closer to their CVS tree) Speed up win32 "QueryPerformanceFrequency" emulation on solaris. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1308 b3059339-0415-0410-9bf9-f77b7e298cf2
* yuv2rgb_mmx crashes with ffdivx codec, when we play back avi files that havejkeil2001-07-121-85/+59
| | | | | | | | | | | | | | | | | | | a frame width that is not an exact multiple of 8. Testcase: 405.avi (356x240). Playing on an MMX capable x86 system using the x11 video-out driver results in a segfault. The MMX routines convert image data in quantities of 8 pixels in each loop, and the inner loop was not terminated in case there are only 1-7 pixels left, producing too much RGB output. For now, just ignore the last few pixels on each row, to avoid the segfaults. (Gives a black vertical border on the right, if you play a video with width%8 != 0) A possible future enhancement would be, to add a second loop to convert the last width%8 pixels to RGB using a byte loop. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1307 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use FOURCC macro to encode fcc values. Avoids accessing 32-bit data fromjkeil2001-07-121-4/+7
| | | | | | | unaligned memory locations and improves portability git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1306 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix gcc-3.0 warningjkeil2001-07-121-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1305 b3059339-0415-0410-9bf9-f77b7e298cf2
* Changed sugnature.atmos42001-07-124-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1304 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed a typo and wrong varname.atmos42001-07-102-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1303 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed untill I figure out why it doesen't work in certain circumstances.eyck2001-07-101-176/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1302 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added nasmnick2001-07-101-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1301 b3059339-0415-0410-9bf9-f77b7e298cf2
* As promised, -afm and -vfm to prefer audio/video driver family, -ac and -vc ↵atmos42001-07-082-3/+23
| | | | | | have higher precedence, so they can override -afm/-vfm. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1300 b3059339-0415-0410-9bf9-f77b7e298cf2
* *** empty log message ***gabucino2001-07-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1299 b3059339-0415-0410-9bf9-f77b7e298cf2
* VfwEx supportarpi2001-07-085-5/+102
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1298 b3059339-0415-0410-9bf9-f77b7e298cf2
* mpeg2 timing & fps fix for ffmpeg12 codecarpi2001-07-081-20/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1297 b3059339-0415-0410-9bf9-f77b7e298cf2
* mpeg2 timing & fps fix for ffmpeg12 codecarpi2001-07-081-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1296 b3059339-0415-0410-9bf9-f77b7e298cf2
* video decoder stuffarpi2001-07-081-0/+368
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1295 b3059339-0415-0410-9bf9-f77b7e298cf2
* added new driver: nullarpi2001-07-081-3/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1294 b3059339-0415-0410-9bf9-f77b7e298cf2
* First few german docs by JAF <jaf.corporation at gmx.at> and me.atmos42001-07-084-0/+286
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1293 b3059339-0415-0410-9bf9-f77b7e298cf2
* video codec stuff moved to dec_video.carpi2001-07-085-333/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1292 b3059339-0415-0410-9bf9-f77b7e298cf2
* no segfault if no glx presentalex2001-07-071-6/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1291 b3059339-0415-0410-9bf9-f77b7e298cf2
* some code clanup (first step to libdemuxer)arpi2001-07-076-68/+55
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1290 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix subdriver stuffarpi2001-07-071-7/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1289 b3059339-0415-0410-9bf9-f77b7e298cf2
* *** empty log message ***gabucino2001-07-071-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1288 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replaced LGBs video codec forcing change with mine for audio and video ↵atmos42001-07-072-21/+14
| | | | | | codecs, which is IMHO more convenient cause codecs are selected by name instead of number, one unclearity is left to me, that's why audio_format is used once before codecs selection for MPEG_PS files, that's why I left -afm in for that one. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1287 b3059339-0415-0410-9bf9-f77b7e298cf2
*