summaryrefslogtreecommitdiffstats
path: root/osdep
Commit message (Collapse)AuthorAgeFilesLines
* mac/libmpv: remove unused functionsder richter2024-03-211-37/+0
|
* mac/option: remove now unused computed option variablesder richter2024-03-211-1/+0
|
* mac/option: rename option structs to properly represent their contentder richter2024-03-214-35/+29
| | | | also optimise option cache setup.
* mac/libmpv: remove mac option handling in favour of option handlerder richter2024-03-211-14/+0
| | | | | | since the option handler is not optional anymore and available on init in cocoa-cb we don't need to duplicate this functionality in libmpv anymore.
* mac/option: make option helper none optionalder richter2024-03-211-1/+1
| | | | gets rid of some unwrapping boilerplate and nil coalescing operators.
* mac/option: make option helper vo struct independentder richter2024-03-211-6/+3
|
* mac/option: optimise option pointer accessder richter2024-03-211-3/+4
|
* mac/option: remove unused and obsolete variablesder richter2024-03-211-6/+1
|
* mac/option: move option functionality from mpv helper to option helperder richter2024-03-213-8/+8
| | | | delete now empty mpv helper
* mac/type: move c<>swift type bridging into a dedicated type helperder richter2024-03-216-70/+88
|
* win32: increase hires timer resolutionnanahi2024-03-193-21/+38
| | | | | | | | | | | timeBeginPeriod() only allows setting minimum timer resolution to 1 ms. However, modern x86 platforms support a minimum timer resolution of 0.5 ms. Use NtSetTimerResolution() instead for the increased resolution, which can be set with MPV_HRT_RES. Additionally, change the units of mp_start_hires_timers(), mp_end_hires_timer(), MPV_HRT_RES, and MPV_HRT_MAX to nanoseconds, in accordance with other functions used in timer.h.
* win32: avoid multi byte string to wide conversion if not neededKacper Michajłow2024-03-191-5/+18
|
* win32: add puts/fputs wrappersKacper Michajłow2024-03-195-14/+64
|
* win32: optimize mp_vfprintf a littleKacper Michajłow2024-03-194-23/+36
| | | | | | | | - remove redundant strlen/wcslen - reuse allocated temporary buffers The difference is not big, but it satisfies me to remove those redundancies.
* win32: cache GetConsoleMode state for stdout/stderrKacper Michajłow2024-03-193-31/+42
| | | | | | | GetConsoleMode() can be quite slow and in mpv the mode never changes, so we can just check it once. Fixes performance when writing lots of logs to terminal.
* win32: don't touch buffering optionsKacper Michajłow2024-03-191-1/+0
|
* win32-console-wrapper: fix printf specifiersKacper Michajłow2024-03-191-1/+1
| | | | | | | | | | | %s is evaluated as wchar_t only in "Windows classic" semantic. It is not C standard compliant. %ls is compatible with both and means the same wchar_t format. This commit fixes error output from mpv.com. See: https://devblogs.microsoft.com/oldnewthing/?p=102823
* win32: don't pass std handles if they are attached to consoleKacper Michajłow2024-03-191-15/+20
| | | | | | | | | | | This is default behavior to attach to existing console, passing custom handles is useful if we want to replace them, but in case they are already attached to console we want to attach to console directly. In theory, it should work out of the box because "console-like" handles should be managed by Windows internally, which works for INPUT and OUTPUT, but in certain cases, not for ERROR. This allows using VT features in those cases for stderr too.
* Revert "osdep/io: ignore 'x' mode for mp_fopen"nanahi2024-03-191-1/+2
| | | | | | | | | This flag is a GNU extension in C99, but was standardrized in C11, so mpv should be able to use it. fopen is wrapped on win32 so non-compliant MSVCRT.dll isn't a concern. Since the upcoming commit uses this feature it can be brought back. This reverts commit c36e051470dceb24c75d36316490e063a77dacba.
* win32: implement shell link target resolvingnanahi2024-03-192-0/+26
| | | | | Adds a function to resolve the target of a shell link (Windows shortcut) for use by other parts of mpv.
* osdep/main-fn-win: fix implicit conversion warningnanahi2024-03-191-1/+1
|
* osdep/threads: fix warning: initializer element is not constantnanahi2024-03-192-2/+2
|
* mac/touchbar: simplify item and view creationder richter2024-03-181-70/+53
|
* mac/touchbar: optimise time item updateder richter2024-03-181-6/+3
|
* mac/touchbar: optimise constraint calculationder richter2024-03-181-5/+3
|
* mac/touchbar: use DateComponentsFormatter for time formattingder richter2024-03-181-9/+5
|
* mac/touchbar: simplify update items logicder richter2024-03-181-27/+8
|
* mac/touchbar: take playback speed into account for rate limitingder richter2024-03-181-1/+4
|
* mac/touchbar: rewrite touch bar in swiftder richter2024-03-184-397/+344
|
* various: use static assertions where appropriatesfan52024-03-171-1/+1
|
* mac/input: optimise scroll wheel event handlingder richter2024-03-161-35/+18
|
* mac/input: move scroll wheel event handling into input helperder richter2024-03-161-5/+40
|
* mac/input: optimise mouse movement enabled checkder richter2024-03-161-2/+3
|
* mac/input: fix switched mouse forward and back buttonder richter2024-03-161-2/+2
|
* mac/input: move mouse event handling into input helperder richter2024-03-161-0/+28
|
* mac/input: add missing special keysder richter2024-03-141-0/+2
|
* mac/input: add simplified mp_keymap initder richter2024-03-142-52/+32
|
* mac/input: remove wrongly mapped modifier keysder richter2024-03-141-3/+0
|
* mac/event: move key event handling to input helper and optimise itder richter2024-03-147-165/+128
|
* mac/input: define AltGr mask as static NSEvent.ModifierFlags variableder richter2024-03-142-2/+8
| | | | | this makes it possible to properly test for those modifiers in a proper swift like way.
* mac/events: remove redundant functions and optimise input helper usageder richter2024-03-1410-109/+29
| | | | some redundant functions that jump through hoops.
* mac/helper: move input ctx related functionality into new input helperder richter2024-03-143-95/+76
| | | | also make functions thread safe.
* mac/events: move input ctx related functionality into new input helperder richter2024-03-143-31/+79
| | | | | preparation for mac/events cleanup and single responsibility principle. all functions are thread safe.
* mac/menu: add explicit menu type instead of an inferred typeder richter2024-03-071-45/+49
| | | | | with the use of an explicit type we can removed inferred type checks like separators/services menu by name or menus by sub configs.
* mac/menu: make menu creation recursive to allow nested submenusder richter2024-03-071-31/+31
| | | | also makes menu creation cleaner and more obvious.
* mac/menu: move conditional Bundle menu items into configder richter2024-03-071-11/+6
| | | | | | only add the "Show log File…" menu item config when invoked from the bundle, instead of testing on menu item creation. this is similar to the touch bar menu items now.
* mac/menu: keep track of menu items with dynamic actionsder richter2024-03-071-14/+8
| | | | | | keeping track of the dynamic menu items lets us directly access them by key. we don't need to search in the config array for the right config and menu item.
* mac/menu: merge file and url config propertiesder richter2024-03-071-15/+11
| | | | | a file path is basically an URL. both are also handled as URL objects in our code.
* mac/menu: properly guard playlist array accessder richter2024-03-071-2/+2
|
* mac/menu: attach menu config to menu item for direct accessder richter2024-03-071-27/+21
| | | | | add a config property to the menu items, so we don't need to search in the config array for the right config.
* mac/menu: replace app.command usage with event.commandder richter2024-03-071-2/+2
|
* mac/menu: fix touch bar menu itemder richter2024-03-071-6/+0
| | | | | | the check broke when the runtime check was removed, eg the menu item was never added to the menu. since we only add the menu item to the config when touch bar support is available the check is completely unnecessary.
* mac/menu: rename Preferences to Settings for consistency with macOSder richter2024-03-071-4/+4
|
* mac/menu: remove duplicate key assignment Undo/Zoomder richter2024-03-071-1/+1
| | | | this key is already assigned to Undo.
* mac/menu: optimise loading files functionder richter2024-03-071-7/+3
| | | | don't save files in a temporary array and use an in place mapping.
* mac/menu: replace deprecated openFile() usageder richter2024-03-071-8/+8
|
* mac/menu: remove unnecessary alert config fields and alertder richter2024-03-071-43/+10
| | | | | | | the config folder is created by mpv if it does not exist, so the last alert is unnecessary. also change config path priority.
* mac/menu: rewrite menu bar in swiftder richter2024-03-078-910/+472
|
* mac/app: remove unused functionder richter2024-03-072-7/+0
|
* osdep/mac: make mac naming of files, folders and function consistentder richter2024-02-2828-45/+45
| | | | | rename all macOS namings (osx, macosx, macOS, macos, apple) to mac, to make naming consistent.
* build: fix build when disabling cocoa-cbder richter2024-02-272-2/+2
| | | | | | | | | | the swift obj-c bridging header is only included when cocoa-cb is enabled. cocoa-cb is not the only swift feature anymore and disabling cocoa-cb leads to a runtime error that specific swift classes could not be found. include the swift obj-c bridging header in the case swift features are enabled.
* cocoa-cb: remove pre-allocation and initialise only when usedder richter2024-02-274-9/+24
| | | | | | | | | | | | | | | | | | | | | cocoa-cb was always pre-allocated in the Application itself because libmpv needs to be set up before usage, an opengl context has to be set and because it was decided mac specific code should be kept out of libmpv. this means that a completely working libmpv and opengl renderer was set up even if it wasn't used. leading to unnecessary log message, resources being used or reserved on the system that might not be used, triggering of dedicated GPU unnecessarily and many other things. even if not optimal, this wasn't the biggest problem since we only had that one working vo on macOS. though now that we have a vulkan gpu(-next) backend on macOS that was made the default, we always have that dangling cocoa-cb instance, which is completely unnecessary. move the cocoa-cb initialisation into libmpv preinit function and only init cocoa-cb when we are a standalone App and cocoa-cb support is build into.
* osdep/io: add mp_unlink()nanahi2024-02-252-0/+10
| | | | | | | | unlink() was never wrapped in win32, so all usages of it were referring the ANSI version of the function. This doesn't work properly for Windows versions before 1903 (where the UTF-8 codepage is requested). Fix this by adding mp_unlink() which wraps over _wunlink().
* mac: code consistency changesder richter2024-02-241-4/+0
|
* osdep/io: move I/O utility functions to misc/io_utilsnanahi2024-02-232-58/+0
| | | | | | | The purpose of osdep/io is to provide a wrapper for POSIX I/O functions on Windows. The last 2 functions are utility functions which don't serve this purpose. Move them to a separate file.
* osdep/io: ignore 'x' mode for mp_fopennanahi2024-02-231-2/+1
| | | | | | fopen() with 'x' mode is a non-portable glibc extension, is currently unused, and should not be used in order to maintain POSIX compatibility. Thus there is no need for the Windows wrapper mp_fopen() to support it.
* various: make mentions of macOS consistentder richter2024-02-212-2/+2
| | | | | change all mentions and variations of OSX, OS X, MacOSX, MacOS X, etc consistent. use the official naming macOS.
* osdep/threads-posix: fix headers for OpenBSD buildJose Maldonado aka Yukiteru2024-02-151-0/+5
| | | | | In OpenBSD the compilation fail because osdep/threads-posix.h need include pthread_np.h
* mac/remote: simplify cover retrievalder richter2024-02-151-3/+1
|
* mac/remote: remove unnecessary nowPlayingInfo variableder richter2024-02-151-14/+7
| | | | | no need to keep track of the nowPlayingInfo, MPNowPlayingInfoCenter already provides the current info.
* mac/remote: add album and artist infoder richter2024-02-152-3/+12
|
* mac/remote: add seek supportder richter2024-02-151-2/+14
| | | | Fixes #11233
* mac/remote: add chapter title infoder richter2024-02-153-4/+8
|
* mac/remote: add media-title infoder richter2024-02-152-3/+7
| | | | Fixes #11233
* mac/remote: add playback rate infoder richter2024-02-152-2/+6
| | | | also rate limit the position to update at max once per second.
* mac/remote: add duration and current position infoder richter2024-02-152-8/+26
| | | | Fixes #11233
* mac/remote: remove make current observer when stoppedder richter2024-02-151-0/+6
| | | | | | | | | | the observer is registered on every call of the start function. this could lead to several registered observers for the same event and several calls to the make current function, even though we only need it once per event. properly remove the observer on stop, so we only ever have one observer registered.
* mac/remote: replace command handler with generic handler function configder richter2024-02-151-15/+17
| | | | | preparation for the upcoming changes for new functionality not related to key handling.
* mac/remote: simplify repeatable key logicder richter2024-02-151-6/+2
|
* mac/remote: move configs to initialiser for new MediaPlayer shorthandsder richter2024-02-151-53/+56
|
* mac/remote: move class local struct and enum definition to extensionder richter2024-02-151-1/+3
| | | | | the class local struct and enum are moved to an extension to separate their definition and usage.
* mac/remote: use explicit struct instead of generic array for configsder richter2024-02-151-48/+31
| | | | | making the config explicit gets rid of some optional unwrapping. also rename some variables to better represent their values.
* osdep: fix infinite loop when cancelling subprocesssfan52024-02-111-1/+3
| | | | | Due to the state of the other fds/pipes it cannot safely be assumed that the loop breaks on its own.
* various: replace dead links in commentsnanahi2024-02-111-2/+4
| | | | | Replace various dead links with live replacements or archives. Less friction for anyone who wants to look up these references.
* io: add mp_save_fileKacper Michajłow2024-01-312-0/+30
| | | | Move from vo_gpu_next.c to io.c and return result.
* osdep/timer: update documentation and test for mp_time_nsKacper Michajłow2024-01-261-1/+1
| | | | No longer true after 8bbcc87feea7abf256a6c7f511244d09f5520c17.
* osdep/io: expand path before LoadLibraryKacper Michajłow2024-01-221-3/+17
| | | | | | Fixes compatibility with loading scripts from relative config paths. Fixes #13212
* terminal: don't print escape sequence if not ttyKacper Michajłow2024-01-151-2/+4
| </