From 2eb8fe0b86bb2e508a18b205cfe9ea97456e9342 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 21 May 2015 10:42:45 +0100 Subject: Typo. --- src/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.h b/src/types.h index a309121a..36dcc3fe 100644 --- a/src/types.h +++ b/src/types.h @@ -47,7 +47,7 @@ enum Channel { LC = 8, RC = 9, BSL = 10, - BSR = 111 + BSR = 11 }; enum ContentKind -- cgit v1.2.3 From 856bf40f586665549c7b890b9f5c1b3240daa145 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 29 May 2015 19:15:45 +0100 Subject: Use markdown for README. --- README | 35 ----------------------------------- README.md | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 35 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index deb4b528..00000000 --- a/README +++ /dev/null @@ -1,35 +0,0 @@ -== libdcp - -Hello. - - -== Acknowledgements - -Wolfgang Woehl's cinemaslides was most informative on the -nasty details of encryption. - - - - -== Building: - -./waf configure -./waf -./waf install - - -== Dependencies - -boost filesystem, signals2 and unit testing libraries -openssl -libsigc++ -libxml++ -xmlsec -openjpeg (1.5.0 or above) - - -== Documentation - -Run doxygen in the top-level directory and then see build/doc/html/index.html. - -There are some examples in the examples/ directory. diff --git a/README.md b/README.md new file mode 100644 index 00000000..b8bcc3f3 --- /dev/null +++ b/README.md @@ -0,0 +1,38 @@ +libdcp +====== + +Hello. + + +Acknowledgements +================ + +Wolfgang Woehl's cinemaslides was most informative on the +nasty details of encryption. + + +Building +======== + + ./waf configure + ./waf + sudo ./waf install + + +Dependencies +============ + +boost filesystem, signals2 and unit testing libraries +openssl +libsigc++ +libxml++ +xmlsec +openjpeg (1.5.0 or above) + + +Documentation +============= + +Run doxygen in the top-level directory and then see build/doc/html/index.html. + +There are some examples in the examples/ directory. -- cgit v1.2.3