Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
bef3f3ea
Commit
bef3f3ea
authored
Mar 02, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/vlc_config.h: removed deprecated stuff.
parent
791df933
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
51 deletions
+5
-51
include/vlc_config.h
include/vlc_config.h
+5
-51
No files found.
include/vlc_config.h
View file @
bef3f3ea
...
@@ -89,10 +89,6 @@
...
@@ -89,10 +89,6 @@
* General limitations
* General limitations
*/
*/
/* Maximum number of input threads - this value is used exclusively by
* interface, and is in fact an interface limitation */
#define INPUT_MAX_THREADS 10
/* Maximum size of a data packet (128 kB) */
/* Maximum size of a data packet (128 kB) */
#define INPUT_MAX_PACKET_SIZE 131072
#define INPUT_MAX_PACKET_SIZE 131072
...
@@ -105,14 +101,6 @@
...
@@ -105,14 +101,6 @@
/* Maximum memory the input is allowed to use (20 MB) */
/* Maximum memory the input is allowed to use (20 MB) */
#define INPUT_MAX_ALLOCATION 20971520
#define INPUT_MAX_ALLOCATION 20971520
/*
* Channel method
*/
/* Delay between channel changes - this is required to avoid flooding the
* channel server */
#define INPUT_CHANNEL_CHANGE_DELAY (mtime_t)(5*CLOCK_FREQ)
/* Duration between the time we receive the data packet, and the time we will
/* Duration between the time we receive the data packet, and the time we will
* mark it to be presented */
* mark it to be presented */
#define DEFAULT_PTS_DELAY (mtime_t)(.3*CLOCK_FREQ)
#define DEFAULT_PTS_DELAY (mtime_t)(.3*CLOCK_FREQ)
...
@@ -132,9 +120,6 @@
...
@@ -132,9 +120,6 @@
* Audio configuration
* Audio configuration
*****************************************************************************/
*****************************************************************************/
/* Maximum number of audio output threads */
#define AOUT_MAX_THREADS 10
/* Volume */
/* Volume */
#define AOUT_VOLUME_DEFAULT 256
#define AOUT_VOLUME_DEFAULT 256
#define AOUT_VOLUME_STEP 32
#define AOUT_VOLUME_STEP 32
...
@@ -170,9 +155,6 @@
...
@@ -170,9 +155,6 @@
* Video configuration
* Video configuration
*****************************************************************************/
*****************************************************************************/
/* Maximum number of video output threads */
#define VOUT_MAX_THREADS 256
/*
/*
* Default settings for video output threads
* Default settings for video output threads
*/
*/
...
@@ -189,7 +171,11 @@
...
@@ -189,7 +171,11 @@
/* Video heap size - remember that a decompressed picture is big
/* Video heap size - remember that a decompressed picture is big
* (~1 Mbyte) before using huge values */
* (~1 Mbyte) before using huge values */
#define VOUT_MAX_PICTURES 8
#ifdef UNDER_CE
# define VOUT_MAX_PICTURES 5
#else
# define VOUT_MAX_PICTURES 8
#endif
/* Minimum number of direct pictures the video output will accept without
/* Minimum number of direct pictures the video output will accept without
* creating additional pictures in system memory */
* creating additional pictures in system memory */
...
@@ -245,38 +231,6 @@
...
@@ -245,38 +231,6 @@
/* The default video output window title */
/* The default video output window title */
#define VOUT_TITLE "VLC"
#define VOUT_TITLE "VLC"
/*****************************************************************************
* Video parser configuration
*****************************************************************************/
#define VPAR_IDLE_SLEEP ((mtime_t)(0.010*CLOCK_FREQ))
/* Optimization level, from 0 to 2 - 1 is generally a good compromise. Remember
* that raising this level dramatically lengthens the compilation time. */
#if defined( HAVE_RELEASE )
# define VPAR_OPTIM_LEVEL 2
#else
# define VPAR_OPTIM_LEVEL 1
#endif
/* Maximum number of macroblocks in a picture. */
#define MAX_MB 2048
/*****************************************************************************
* Video decoder configuration
*****************************************************************************/
#define VDEC_IDLE_SLEEP ((mtime_t)(0.100*CLOCK_FREQ))
/* Maximum range of values out of the IDCT + motion compensation. */
#define VDEC_CROPRANGE 2048
/* No SMP by default, since it slows down things on non-smp machines. */
#define VDEC_SMP_DEFAULT 0
/* Nice increments for decoders -- necessary for x11 scheduling */
#define VDEC_NICE 3
/*****************************************************************************
/*****************************************************************************
* Messages and console interfaces configuration
* Messages and console interfaces configuration
*****************************************************************************/
*****************************************************************************/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment