summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-01-19 02:32:00 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-01-19 02:32:00 +0000
commita0044b6bea994ea4f32ad049bd5fcccc5216e2be (patch)
tree3ea4aeb74098fd671d337252e3dabfc4ffa2154a /src
parent528c2f2246d52a89cb99906193f434d58781a2eb (diff)
downloadxine-lib-a0044b6bea994ea4f32ad049bd5fcccc5216e2be.tar.gz
xine-lib-a0044b6bea994ea4f32ad049bd5fcccc5216e2be.tar.bz2
Make supported_types a pointer to constant.
CVS patchset: 8531 CVS date: 2007/01/19 02:32:00
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/xine_plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine_plugin.h b/src/xine-engine/xine_plugin.h
index f55c5be63..1a6ebe04e 100644
--- a/src/xine-engine/xine_plugin.h
+++ b/src/xine-engine/xine_plugin.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_plugin.h,v 1.21 2006/09/26 05:19:49 dgp85 Exp $
+ * $Id: xine_plugin.h,v 1.22 2007/01/19 02:32:00 dgp85 Exp $
*
* generic plugin definitions
*
@@ -73,7 +73,7 @@ typedef struct {
/* special_info for a decoder plugin */
typedef struct {
- uint32_t *supported_types; /* streamtypes this decoder can handle */
+ const uint32_t *supported_types; /* streamtypes this decoder can handle */
int priority;
} decoder_info_t;