summaryrefslogtreecommitdiff
path: root/src/xine-engine/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r--src/xine-engine/video_out.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 65a7f7d56..2f8deadf0 100644
--- a/src/xine-engine/video_out.c
+++ b/src/xine-engine/video_out.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.c,v 1.190 2004/04/22 23:19:04 tmattern Exp $
+ * $Id: video_out.c,v 1.191 2004/04/26 17:50:13 mroi Exp $
*
* frame allocation / queuing / scheduling / output functions
*/
@@ -1550,12 +1550,16 @@ xine_video_port_t *_x_vo_new_port (xine_t *xine, vo_driver_t *driver,
this->warn_skipped_threshold =
xine->config->register_num (xine->config, "video.warn_skipped_threshold", 10,
- "send event to front end if percentage of skipped frames exceed this value",
- NULL, 20, NULL, NULL);
+ _("percentage of skipped frames to tolerate"),
+ _("When more than this percentage of frames are not shown, because they "
+ "were not decoded in time, xine sends a notification."),
+ 20, NULL, NULL);
this->warn_discarded_threshold =
xine->config->register_num (xine->config, "video.warn_discarded_threshold", 10,
- "send event to front end if percentage of discarded frames exceed this value",
- NULL, 20, NULL, NULL);
+ _("percentage of discarded frames to tolerate"),
+ _("When more than this percentage of frames are not shown, because they "
+ "were not scheduled for display in time, xine sends a notification."),
+ 20, NULL, NULL);
if (grabonly) {