~ubuntu-branches/debian/sid/smplayer/sid

« back to all changes in this revision

Viewing changes to src/prefperformance.h

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2008-01-31 13:44:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080131134453-nc4dwsn5pkiw5s9h
Tags: 0.6.0~rc1-1
* New upstream release.
* debian/control:
  - Build-depend on CDBS.
  - Updated upstream homepage.
* debian/copyright:
  - Updated download address.
* debian/rules:
  - Migrated to CDBS.
  - Tweaked get-orig-source to work with release candidates.
* debian/docs:
  - Removed Translations.txt, upstream removed it from the tarball.
  - Added Release_notes.txt.
* debian/manpages, debian/smplayer.1:
  - Deleted, manpage merged upstream.
* debian/smplayer.install:
  - Install usr/share/man.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2007 Ricardo Villalba <rvm@escomposlinux.org>
 
2
    Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
3
3
 
4
4
    This program is free software; you can redistribute it and/or modify
5
5
    it under the terms of the GNU General Public License as published by
44
44
protected:
45
45
        virtual void createHelp();
46
46
 
47
 
        void setCacheEnabled(bool b);
48
 
        bool cacheEnabled();
49
 
 
50
 
        void setCache(int n);
51
 
        int cache();
 
47
        void setCacheForFiles(int n);
 
48
        int cacheForFiles();
 
49
 
 
50
        void setCacheForStreams(int n);
 
51
        int cacheForStreams();
 
52
 
 
53
        void setCacheForDVDs(int n);
 
54
        int cacheForDVDs();
52
55
 
53
56
        void setPriority(int n);
54
57
        int priority();
59
62
        void setHardFrameDrop(bool b);
60
63
        bool hardFrameDrop();
61
64
 
62
 
        void setSkipLoop(bool b);
63
 
        bool skipLoop();
64
 
 
65
 
        void setSkipFrames(bool b);
66
 
        bool skipFrames();
 
65
        void setSkipLoop(Preferences::H264LoopFilter value);
 
66
        Preferences::H264LoopFilter skipLoop();
67
67
 
68
68
        void setAutoSyncFactor(int factor);
69
69
        int autoSyncFactor();