mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-13 02:01:55 +00:00
No description
As it turns out, the C standard forbids passing va_list by value and then continue using it in the parent function (C Standard, 7.16, paragraph 3). Luckily, there's a footnote stating: "It is permitted to create a pointer to a va_list and pass that pointer to another function, in which case the original function may take further use of the original list after the other function returns." Therefore, we're safe passing va_list by reference and thus can keep the current coding style. This fixes weird bugs on ARM32 which really doesn't allow passing va_list by value. Signed-off-by: David Herrmann <dh.herrmann@gmail.com> |
||
---|---|---|
res | ||
src | ||
test | ||
.gitignore | ||
autogen.sh | ||
configure.ac | ||
COPYING | ||
LICENSE_gdhcp | ||
LICENSE_htable | ||
LICENSE_lgpl | ||
Makefile.am | ||
NEWS | ||
README | ||
test.supp |
= MiracleCast - Wifi-Display/Miracast Implementation = The MiracleCast project provides software to connect external monitors to your system via Wifi. It is compatible to the Wifi-Display specification also known as Miracast. MiracleCast implements the Display-Source as well as Display-Sink side. The Display-Source side allows you to connect external displays to your system and stream local content to the device. A lot of effort is put into making this as easy as connecting external displays via HDMI. On the other hand, the Display-Sink side allows you to create wifi-capable external displays yourself. You can use it on your embedded devices or even on full desktops to allow other systems to use your device as external display. Website: http://www.freedesktop.org/wiki/Software/miracle == Requirements == The MiracleCast projects requires the following software to be installed: - systemd: A system management daemon. It is used for device-management (udev), dbus management (sd-bus) and service management. Systemd must be compiled with --enable-kdbus, even though kdbus isn't used, but only the independent, experimental sd-libraries. required: >=systemd-212 - glib: A utility library. Used by the current DHCP implementation. Will be removed once sd-dns gains DHCP-server capabilities. required: ~=glib2-2.38 (might work with older releases, untested..) - check: Test-suite for C programs. Used for optional tests of the MiracleCast code base. optional: ~=check-0.9.11 (might work with older releases, untested..) == Download == Released tarballs can be found at: http://www.freedesktop.org/software/miracle/releases == Install == To compile MiracleCast, run the standard autotools commands: $ test -f ./configure || NOCONFIGURE=1 ./autogen.sh $ ./configure --prefix=/usr/local $ make $ sudo make install To compile and run the test applications, use: $ make check == Documentation == WIP - Please see the MiracleCast website == License == This software is licensed under the terms of the GNU-LGPL license. Please see ./COPYING for further information. == Contact == This software is maintained by: David Herrmann <dh.herrmann@gmail.com> If you have any questions, do not hesitate to contact one of the maintainers.