diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-07-04 15:29:37 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-07-04 15:29:37 +0000 |
commit | 3f26ef9d76cd1dbab23fde1382fcffa18f2392de (patch) | |
tree | 7369fa80acc1088cce141edc5633089290538b83 | |
parent | 3ae22decfa4531118ef33bc4591685eccb4ba008 (diff) | |
download | xine-lib-3f26ef9d76cd1dbab23fde1382fcffa18f2392de.tar.gz xine-lib-3f26ef9d76cd1dbab23fde1382fcffa18f2392de.tar.bz2 |
fix off by one error
thanks to Binoj for reporting it
CVS patchset: 2205
CVS date: 2002/07/04 15:29:37
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index f05f8548a..adf756f9f 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.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: video_out_dxr3.c,v 1.34 2002/06/30 10:47:06 mroi Exp $ + * $Id: video_out_dxr3.c,v 1.35 2002/07/04 15:29:37 mroi Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -126,7 +126,7 @@ vo_driver_t *init_video_out_plugin(config_values_t *config, void *visual_gen) char tmpstr[100]; const char *confstr; int dashpos, encoder, confnum; - static char *available_encoders[SUPPORTED_ENCODER_COUNT + 1]; + static char *available_encoders[SUPPORTED_ENCODER_COUNT + 2]; static char *videoout_modes[] = { "tv", "overlay", NULL }; static char *tv_modes[] = { "ntsc", "pal", "pal60" , "default", NULL }; |