Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
3e356e56
Commit
3e356e56
authored
Nov 02, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed check on OPTIMIZE_MEMORY in installed headers.
parent
60bba9e0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
17 deletions
+5
-17
include/vlc_config.h
include/vlc_config.h
+2
-17
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+3
-0
No files found.
include/vlc_config.h
View file @
3e356e56
...
@@ -148,26 +148,11 @@
...
@@ -148,26 +148,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 */
#ifdef OPTIMIZE_MEMORY
#define VOUT_MAX_PICTURES 16
# define VOUT_MAX_PICTURES 8
#else
# define VOUT_MAX_PICTURES 16
#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 */
#ifdef OPTIMIZE_MEMORY
#define VOUT_MIN_DIRECT_PICTURES 12
# define VOUT_MIN_DIRECT_PICTURES 6
#else
# define VOUT_MIN_DIRECT_PICTURES 12
#endif
/* Number of simultaneous subpictures */
#ifdef OPTIMIZE_MEMORY
# define VOUT_MAX_SUBPICTURES 8
#else
# define VOUT_MAX_SUBPICTURES 16
#endif
/* Statistics are displayed every n loops (=~ pictures) */
/* Statistics are displayed every n loops (=~ pictures) */
#define VOUT_STATS_NB_LOOPS 100
#define VOUT_STATS_NB_LOOPS 100
...
...
src/video_output/vout_subpictures.c
View file @
3e356e56
...
@@ -44,6 +44,9 @@
...
@@ -44,6 +44,9 @@
/*****************************************************************************
/*****************************************************************************
* Local prototypes
* Local prototypes
*****************************************************************************/
*****************************************************************************/
/* Number of simultaneous subpictures */
#define VOUT_MAX_SUBPICTURES (VOUT_MAX_PICTURES)
#define VLC_FOURCC_YUVP VLC_FOURCC('Y','U','V','P')
#define VLC_FOURCC_YUVP VLC_FOURCC('Y','U','V','P')
#define VLC_FOURCC_YUVA VLC_FOURCC('Y','U','V','A')
#define VLC_FOURCC_YUVA VLC_FOURCC('Y','U','V','A')
#define VLC_FOURCC_RGBA VLC_FOURCC('R','G','B','A')
#define VLC_FOURCC_RGBA VLC_FOURCC('R','G','B','A')
...
...
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