diff options
author | Mike Lampard <mlampard@users.sourceforge.net> | 2001-11-19 17:07:15 +0000 |
---|---|---|
committer | Mike Lampard <mlampard@users.sourceforge.net> | 2001-11-19 17:07:15 +0000 |
commit | 6689ec37a04a8119be383b3ab5ebff0150a256fa (patch) | |
tree | eb466060119f15d9a7c79fa39131839d8e03a5c1 /src/dxr3/dxr3_vo_encoder.c | |
parent | 3377adc5847430b8060e245fc7ffd60e2f4ecd77 (diff) | |
download | xine-lib-6689ec37a04a8119be383b3ab5ebff0150a256fa.tar.gz xine-lib-6689ec37a04a8119be383b3ab5ebff0150a256fa.tar.bz2 |
unify standard dxr3 config options under one banner (dxr3). The dxr3 encoder
is now under its own banner (dxr3enc).
CVS patchset: 1078
CVS date: 2001/11/19 17:07:15
Diffstat (limited to 'src/dxr3/dxr3_vo_encoder.c')
-rw-r--r-- | src/dxr3/dxr3_vo_encoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dxr3/dxr3_vo_encoder.c b/src/dxr3/dxr3_vo_encoder.c index 726508b59..366633ab1 100644 --- a/src/dxr3/dxr3_vo_encoder.c +++ b/src/dxr3/dxr3_vo_encoder.c @@ -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: dxr3_vo_encoder.c,v 1.5 2001/11/19 15:06:12 mlampard Exp $ + * $Id: dxr3_vo_encoder.c,v 1.6 2001/11/19 17:07:15 mlampard Exp $ * * mpeg1 encoding video out plugin for the dxr3. * @@ -302,7 +302,7 @@ static void dxr3_update_frame_format (vo_driver_t *this_gen, puts ("Couldn't start the FAME library"); buffer = (unsigned char *) malloc (DEFAULT_BUFFER_SIZE); - fp.quality=this->config->register_range(this->config,"video.dxr3enc_quality",90, 10,100, "Dxr3enc: mpeg encoding quality",NULL,NULL,NULL); + fp.quality=this->config->register_range(this->config,"dxr3enc.quality",90, 10,100, "Dxr3enc: mpeg encoding quality",NULL,NULL,NULL); fp.width = width; fp.height = oheight; @@ -555,7 +555,7 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) return 0; } /* output mpeg to file instead of dxr3? */ - file_out = config->register_string(config, "video.dxr3enc_file", "<none>", "Dxr3enc: output file for debugging",NULL,NULL,NULL); + file_out = config->register_string(config, "dxr3enc.outputfile", "<none>", "Dxr3enc: output file for debugging",NULL,NULL,NULL); if (file_out && strcmp(file_out, "<none>")) { this->fd_video = open(file_out, O_WRONLY | O_CREAT); |