changeset 19914:dfd1bb3fc7c0

made file-static new_dvdnav_stream() and dvdnav_stream_read()
author nicodvb
date Wed, 20 Sep 2006 21:09:32 +0000
parents ae5618f5f517
children 9e90906df06f
files stream/stream_dvdnav.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/stream/stream_dvdnav.c	Wed Sep 20 21:08:38 2006 +0000
+++ b/stream/stream_dvdnav.c	Wed Sep 20 21:09:32 2006 +0000
@@ -53,7 +53,7 @@
 
 static int seek(stream_t *s, off_t newpos);
 
-dvdnav_priv_t * new_dvdnav_stream(char * filename) {
+static dvdnav_priv_t * new_dvdnav_stream(char * filename) {
   char * title_str;
   dvdnav_priv_t *dvdnav_priv;
 
@@ -105,7 +105,7 @@
   return dvdnav_priv;
 }
 
-int dvdnav_stream_read(dvdnav_priv_t * dvdnav_priv, unsigned char *buf, int *len) {
+static int dvdnav_stream_read(dvdnav_priv_t * dvdnav_priv, unsigned char *buf, int *len) {
   int event = DVDNAV_NOP;
 
   if (!len) return -1;