[Jdvb-cvs] jdvb-server/src/uk/midearth/dvb Constants.java,1.1,1.2 Channel.java,1.2,1.3
Status: Inactive
Brought to you by:
hundalz
|
From: pinder <hu...@us...> - 2006-02-26 11:53:36
|
Update of /cvsroot/jdvb/jdvb-server/src/uk/midearth/dvb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17752/src/uk/midearth/dvb Modified Files: Constants.java Channel.java Log Message: spaces in channel names field offsets for channels.conf file to get video and audio pids Index: Channel.java =================================================================== RCS file: /cvsroot/jdvb/jdvb-server/src/uk/midearth/dvb/Channel.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Channel.java 19 Feb 2006 16:59:33 -0000 1.2 --- Channel.java 26 Feb 2006 11:53:32 -0000 1.3 *************** *** 43,45 **** --- 43,49 ---- return audioPID; } + + public String getChannelNameEscaped() { + return channelName.replace(" ", "\\ "); + } } Index: Constants.java =================================================================== RCS file: /cvsroot/jdvb/jdvb-server/src/uk/midearth/dvb/Constants.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Constants.java 25 Feb 2006 15:19:51 -0000 1.1 --- Constants.java 26 Feb 2006 11:53:32 -0000 1.2 *************** *** 23,25 **** --- 23,29 ---- public static String PROPS_FILENAME = "props.filename"; + + public static String PROPS_AUDIOPID_FIELD = "audiopid.field"; + + public static String PROPS_VIDEOPID_FIELD = "videopid.field"; } |