[vlc-commits] lua: fix dailymotion parsing

2017-08-06 Thread Nicolas Chauvet
vlc | branch: master | Nicolas Chauvet <kwiz...@gmail.com> | Sun Aug  6 
12:59:15 2017 +0200| [0a66fee9984d573ac190a11181a3016784c219ba] | committer: 
Jean-Baptiste Kempf

lua: fix dailymotion parsing

Current dailymotion html uses "var __PLAYER_CONFIG__" instead of
"var config" to store data such as username, qualities and etc.
Others fields are unchanged.

Signed-off-by: Nicolas Chauvet <kwiz...@gmail.com>
Signed-off-by: Jean-Baptiste Kempf <j...@videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0a66fee9984d573ac190a11181a3016784c219ba
---

 share/lua/playlist/dailymotion.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/share/lua/playlist/dailymotion.lua 
b/share/lua/playlist/dailymotion.lua
index 28bf033c77..f117b0d5de 100644
--- a/share/lua/playlist/dailymotion.lua
+++ b/share/lua/playlist/dailymotion.lua
@@ -47,7 +47,7 @@ function parse()
_,_,arturl = string.find( line, "href=\"(.-)\"" )
end
 
-if string.match( line, "var config = {" ) then
+if string.match( line, "var __PLAYER_CONFIG__ = {" ) then
 artist = string.match( line, '"username":"([^"]+)"' )
 
 local streams = string.match( line, "\"qualities\":{(.-%])}" )

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] lua: fix dailymotion parsing

2017-08-06 Thread Nicolas Chauvet
vlc | branch: master | Nicolas Chauvet <kwiz...@gmail.com> | Sun Aug  6 
12:59:15 2017 +0200| [b1afd0d6938196e03c5fd0304bd72fbbe46b31fa] | committer: 
Jean-Baptiste Kempf

lua: fix dailymotion parsing

Current dailymotion html uses "var __PLAYER_CONFIG__" instead of
"var config" to store data such as username, qualities and etc.
Others fields are unchanged.

Signed-off-by: Nicolas Chauvet <kwiz...@gmail.com>
Signed-off-by: Jean-Baptiste Kempf <j...@videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b1afd0d6938196e03c5fd0304bd72fbbe46b31fa
---

 share/lua/playlist/dailymotion.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/share/lua/playlist/dailymotion.lua 
b/share/lua/playlist/dailymotion.lua
index 28bf033c77..f117b0d5de 100644
--- a/share/lua/playlist/dailymotion.lua
+++ b/share/lua/playlist/dailymotion.lua
@@ -47,7 +47,7 @@ function parse()
_,_,arturl = string.find( line, "href=\"(.-)\"" )
end
 
-if string.match( line, "var config = {" ) then
+if string.match( line, "var __PLAYER_CONFIG__ = {" ) then
 artist = string.match( line, '"username":"([^"]+)"' )
 
 local streams = string.match( line, "\"qualities\":{(.-%])}" )

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Fix make dist after ID3Genres.h move to meta_engine

2017-05-31 Thread Nicolas Chauvet
vlc | branch: master | Nicolas Chauvet <kwiz...@gmail.com> | Wed May 31 
12:43:17 2017 +0200| [d3f01827897854e32e78f32264a73d750bb87ffc] | committer: 
Francois Cartegnie

Fix make dist after ID3Genres.h move to meta_engine

Signed-off-by: Nicolas Chauvet <kwiz...@gmail.com>
Signed-off-by: Francois Cartegnie <fcvlc...@free.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d3f01827897854e32e78f32264a73d750bb87ffc
---

 modules/demux/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/Makefile.am b/modules/demux/Makefile.am
index 656675391c..3067e39d18 100644
--- a/modules/demux/Makefile.am
+++ b/modules/demux/Makefile.am
@@ -205,9 +205,9 @@ libmp4_plugin_la_SOURCES = demux/mp4/mp4.c demux/mp4/mp4.h \
demux/mp4/libmp4.c demux/mp4/libmp4.h \
demux/mp4/languages.h \
demux/asf/asfpacket.c demux/asf/asfpacket.h \
-   demux/meta_engine/ID3Genres.h \
demux/mp4/avci.h \
-   demux/mp4/essetup.c demux/mp4/meta.c
+   demux/mp4/essetup.c demux/mp4/meta.c \
+   meta_engine/ID3Genres.h
 libmp4_plugin_la_LIBADD = $(LIBM)
 libmp4_plugin_la_LDFLAGS = $(AM_LDFLAGS)
 if HAVE_ZLIB

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Fix lirc activation after detection

2017-01-17 Thread Nicolas Chauvet
vlc | branch: master | Nicolas Chauvet <kwiz...@gmail.com> | Mon Jan 16 
22:49:54 2017 +0100| [409c41370f5eae1b7e1b3790a69071a0b9934dd0] | committer: 
Thomas Guillem

Fix lirc activation after detection

This fix build time activation of lirc.
"true" isn't "yes", so the HAVE_LIRC condition isn't met

This bug was initialy reported as
https://bugzilla.rpmfusion.org/4420

Signed-off-by: Thomas Guillem <tho...@gllm.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=409c41370f5eae1b7e1b3790a69071a0b9934dd0
---

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 29eaed9..864ff98 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3931,7 +3931,7 @@ have_lirc="no"
 AS_IF([test "${enable_lirc}" = "yes"], [
   AC_CHECK_HEADER(lirc/lirc_client.h, [
 AC_CHECK_LIB(lirc_client, lirc_init, [
-  have_lirc="true"
+  have_lirc="yes"
 ])
   ])
 ])

___
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Redistribute omxil/OMX_Broadcom.h

2013-05-25 Thread Nicolas Chauvet
vlc | branch: master | Nicolas Chauvet kwiz...@gmail.com | Sat May 25 
17:33:03 2013 +0200| [b43986a141df145bfe65fa8e8f7ca23ac9461eb6] | committer: 
Rémi Denis-Courmont

Redistribute omxil/OMX_Broadcom.h

Signed-off-by: Rémi Denis-Courmont r...@remlab.net

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b43986a141df145bfe65fa8e8f7ca23ac9461eb6
---

 modules/codec/Modules.am |1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/codec/Modules.am b/modules/codec/Modules.am
index 1fb65df..b9240ca 100644
--- a/modules/codec/Modules.am
+++ b/modules/codec/Modules.am
@@ -174,6 +174,7 @@ EXTRA_LTLIBRARIES += libxwd_plugin.la
 
 ### OpenMAX ###
 noinst_HEADERS += \
+   omxil/OMX_Broadcom.h \
omxil/OMX_Component.h \
omxil/OMX_Core.h \
omxil/OMX_Image.h \

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Fix build with unreleased FLAC 1.3.x

2013-01-03 Thread Nicolas Chauvet
vlc | branch: master | Nicolas Chauvet kwiz...@gmail.com | Wed Jan  2 
22:44:33 2013 +0100| [607065b410b4768372c204ccdbbca200230fff25] | committer: 
Jean-Baptiste Kempf

Fix build with unreleased FLAC 1.3.x

The issue was initialy reported here:
http://bugzilla.redhat.com/891123

FLAC upstream has always expected to include FLAC/ suffix
for included headers as shown in examples/c/decode/file/main.c

The FLAC suffix will not be be made available in the flac.pc
for the next release:
http://lists.xiph.org/pipermail/flac-dev/2012-April/003355.html

Signed-off-by: Jean-Baptiste Kempf j...@videolan.org

 http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=607065b410b4768372c204ccdbbca200230fff25
---

 modules/codec/flac.c |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/codec/flac.c b/modules/codec/flac.c
index 4cfbfa9..543e8bb 100644
--- a/modules/codec/flac.c
+++ b/modules/codec/flac.c
@@ -37,8 +37,8 @@
 #include vlc_plugin.h
 #include vlc_codec.h
 
-#include stream_decoder.h
-#include stream_encoder.h
+#include FLAC/stream_decoder.h
+#include FLAC/stream_encoder.h
 
 #include vlc_block_helper.h
 #include vlc_bits.h

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits