diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2003-05-26 11:33:01 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2003-05-26 11:33:01 +0000 |
commit | 26461f9255ad266478bb7224b0c578a508ec90d9 (patch) | |
tree | 9bc41d029548e6406c37c2741e6a79036c1c4189 /src/video_out | |
parent | 2e6af99e329094970bddb026acf379aed958721a (diff) | |
download | xine-lib-26461f9255ad266478bb7224b0c578a508ec90d9.tar.gz xine-lib-26461f9255ad266478bb7224b0c578a508ec90d9.tar.bz2 |
- quieter adpcm plugin and xshm one
CVS patchset: 4942
CVS date: 2003/05/26 11:33:01
Diffstat (limited to 'src/video_out')
-rw-r--r-- | src/video_out/video_out_xshm.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c index 9775e641d..14d17299f 100644 --- a/src/video_out/video_out_xshm.c +++ b/src/video_out/video_out_xshm.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_xshm.c,v 1.109 2003/04/16 11:30:13 miguelfreitas Exp $ + * $Id: video_out_xshm.c,v 1.110 2003/05/26 11:33:01 hadess Exp $ * * video_out_xshm.c, X11 shared memory extension interface for xine * @@ -791,8 +791,10 @@ static int xshm_get_property (vo_driver_t *this_gen, int property) { case VO_PROP_SATURATION: return this->yuv2rgb_saturation; default: - printf ("video_out_xshm: tried to get unsupported property %d\n", - property); + if (this->xine->verbosity >= XINE_VERBOSITY_LOG) { + printf ("video_out_xshm: tried to get unsupported property %d\n", + property); + } } return 0; |