1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00
No description
Find a file
David Herrmann 4ea4bb7d82 wifi: parse P2P_DEVICE_FOUND immediately
If we delay device-parsing until P2P_PEER returns, we might receive other
device events in between which we cannot handle as the peer is unknown.
Avoid that by immediately creating the peer and appending more detailed
data later once P2P_PEER returns.

As P2P_PEER keys and P2P_DEVICE_FOUND keys are different (wholy shit, what
a fucking interface), we need to parse both. Lets hope there won't be any
conflicts.

WARNING: The wfd_subelements field is currently very inconsistent.
Sometimes we only use dev_info fields, somethings the whole IE. Users
shall use it as boolean value, only (set vs. unset). Once we add a proper
IE parser, we will provide more advanced fields.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
2014-05-08 12:24:19 +02:00
res Add new miracle-wifid daemon 2014-03-19 13:08:25 +01:00
src wifi: parse P2P_DEVICE_FOUND immediately 2014-05-08 12:24:19 +02:00
test rtsp: add rtsp bus 2014-05-08 11:39:02 +02:00
.gitignore rtsp: add rtsp bus 2014-05-08 11:39:02 +02:00
autogen.sh Initial MiracleCast Implementation 2014-02-09 18:36:06 +01:00
configure.ac Remove old miraclectl 2014-03-19 13:23:58 +01:00
COPYING Change license to LGPL 2014-03-19 13:01:23 +01:00
LICENSE_gdhcp Initial MiracleCast Implementation 2014-02-09 18:36:06 +01:00
LICENSE_htable Initial MiracleCast Implementation 2014-02-09 18:36:06 +01:00
LICENSE_lgpl Change license to LGPL 2014-03-19 13:01:23 +01:00
Makefile.am rtsp: add rtsp bus 2014-05-08 11:39:02 +02:00
NEWS Initial MiracleCast Implementation 2014-02-09 18:36:06 +01:00
README build: update fdo links 2014-02-15 14:10:25 +01:00
test.supp test: add valgrind memory checks 2014-03-28 12:48:10 +01:00

= 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:
    - libwfd: A stand-alone library implementing the Wifi-Display protocol.
              http://www.freedesktop.org/wiki/Software/miracle/libwfd
      required: >=libwfd-1

    - systemd: A system management daemon. It is used for device-management
               (udev), dbus management (sd-bus) and service management.
      required: >=systemd-209

    - 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..)

  Note that systemd-209 is not released, yet. However, several unreleased
  interfaces of it are used. Please see the MiracleCast website for hints how
  you can use it right now.

== 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 an MIT-like 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.