[vlc-devel] [PATCH] DCP: pause
Valentin Vetter
vvetter at outlook.com
Wed Feb 26 21:51:13 CET 2014
Allow to pause
---
modules/access/dcp/dcp.cpp | 8 ++++++++
modules/access/dcp/dcpparser.cpp | 5 +++++
modules/access/dcp/dcpparser.h | 5 +++++
3 files changed, 18 insertions(+)
diff --git a/modules/access/dcp/dcp.cpp b/modules/access/dcp/dcp.cpp
index 578ac91..7960c6e 100644
--- a/modules/access/dcp/dcp.cpp
+++ b/modules/access/dcp/dcp.cpp
@@ -5,6 +5,11 @@
* Nicolas Bertrand <nico at isf.cc>
* Simona-Marinela Prodea <simona dot marinela dot prodea at gmail dot com>
* Jean-Baptiste Kempf <jb at videolan.org>
+ * Guillaume Gonnaud
+ * Valentin Vetter <vvetter at outlook.com>
+ * Anthony Giniers
+ * Ludovic Hoareau
+ * Loukmane Dessai
* Pierre Villard <pierre dot villard dot fr at gmail dot com>
* Claire Etienne
* Aurélie Sbinné
@@ -754,6 +759,9 @@ static int Control( demux_t *p_demux, int query, va_list args )
*pb = false;
break;
+ case DEMUX_SET_PAUSE_STATE:
+ return VLC_SUCCESS;
+
case DEMUX_GET_POSITION:
pf = ( double* ) va_arg ( args, double* );
if( p_sys->frames_total != 0 )
diff --git a/modules/access/dcp/dcpparser.cpp b/modules/access/dcp/dcpparser.cpp
index 8e43104..cd42922 100644
--- a/modules/access/dcp/dcpparser.cpp
+++ b/modules/access/dcp/dcpparser.cpp
@@ -4,6 +4,11 @@
* Authors:
* Nicolas Bertrand <nico at isf.cc>
* Jean-Baptiste Kempf <jb at videolan.org>
+ * Guillaume Gonnaud
+ * Valentin Vetter <vvetter at outlook.com>
+ * Anthony Giniers
+ * Ludovic Hoareau
+ * Loukmane Dessai
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
diff --git a/modules/access/dcp/dcpparser.h b/modules/access/dcp/dcpparser.h
index 531fd66..32059f5 100644
--- a/modules/access/dcp/dcpparser.h
+++ b/modules/access/dcp/dcpparser.h
@@ -3,6 +3,11 @@
*
* Authors: Nicolas Bertrand <nico at isf.cc>
* Jean-Baptiste Kempf <jb at videolan.org>
+ * Guillaume Gonnaud
+ * Valentin Vetter <vvetter at outlook.com>
+ * Anthony Giniers
+ * Ludovic Hoareau
+ * Loukmane Dessai
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
--
1.7.9.5
More information about the vlc-devel
mailing list