Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2af5e585
Commit
2af5e585
authored
Oct 21, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NULL rather than 0 pointers
parent
2bd9b911
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
modules/access/screen/screen.c
modules/access/screen/screen.c
+1
-1
modules/demux/rawaud.c
modules/demux/rawaud.c
+2
-2
modules/demux/rawvid.c
modules/demux/rawvid.c
+2
-2
No files found.
modules/access/screen/screen.c
View file @
2af5e585
...
@@ -99,7 +99,7 @@ vlc_module_begin ()
...
@@ -99,7 +99,7 @@ vlc_module_begin ()
add_integer
(
"screen-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
add_integer
(
"screen-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
add_float
(
"screen-fps"
,
SCREEN_FPS
,
0
,
FPS_TEXT
,
FPS_LONGTEXT
,
true
)
add_float
(
"screen-fps"
,
SCREEN_FPS
,
NULL
,
FPS_TEXT
,
FPS_LONGTEXT
,
true
)
#ifdef SCREEN_SUBSCREEN
#ifdef SCREEN_SUBSCREEN
add_integer
(
"screen-top"
,
0
,
NULL
,
TOP_TEXT
,
TOP_LONGTEXT
,
true
)
add_integer
(
"screen-top"
,
0
,
NULL
,
TOP_TEXT
,
TOP_LONGTEXT
,
true
)
...
...
modules/demux/rawaud.c
View file @
2af5e585
...
@@ -67,8 +67,8 @@ vlc_module_begin();
...
@@ -67,8 +67,8 @@ vlc_module_begin();
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
set_subcategory
(
SUBCAT_INPUT_DEMUX
);
set_callbacks
(
Open
,
Close
);
set_callbacks
(
Open
,
Close
);
add_shortcut
(
"rawaud"
);
add_shortcut
(
"rawaud"
);
add_integer
(
"rawaud-channels"
,
2
,
0
,
CHANNELS_TEXT
,
CHANNELS_LONGTEXT
,
false
);
add_integer
(
"rawaud-channels"
,
2
,
NULL
,
CHANNELS_TEXT
,
CHANNELS_LONGTEXT
,
false
);
add_integer
(
"rawaud-samplerate"
,
48000
,
0
,
SAMPLERATE_TEXT
,
SAMPLERATE_LONGTEXT
,
false
);
add_integer
(
"rawaud-samplerate"
,
48000
,
NULL
,
SAMPLERATE_TEXT
,
SAMPLERATE_LONGTEXT
,
false
);
add_string
(
"rawaud-fourcc"
,
FOURCC_DEFAULT
,
NULL
,
add_string
(
"rawaud-fourcc"
,
FOURCC_DEFAULT
,
NULL
,
FOURCC_TEXT
,
FOURCC_LONGTEXT
,
false
);
FOURCC_TEXT
,
FOURCC_LONGTEXT
,
false
);
add_string
(
"rawaud-lang"
,
"eng"
,
NULL
,
LANG_TEXT
,
LANG_LONGTEXT
,
false
);
add_string
(
"rawaud-lang"
,
"eng"
,
NULL
,
LANG_TEXT
,
LANG_LONGTEXT
,
false
);
...
...
modules/demux/rawvid.c
View file @
2af5e585
...
@@ -69,8 +69,8 @@ vlc_module_begin ()
...
@@ -69,8 +69,8 @@ vlc_module_begin ()
set_callbacks
(
Open
,
Close
)
set_callbacks
(
Open
,
Close
)
add_shortcut
(
"rawvideo"
)
add_shortcut
(
"rawvideo"
)
add_string
(
"rawvid-fps"
,
NULL
,
NULL
,
FPS_TEXT
,
FPS_LONGTEXT
,
false
)
add_string
(
"rawvid-fps"
,
NULL
,
NULL
,
FPS_TEXT
,
FPS_LONGTEXT
,
false
)
add_integer
(
"rawvid-width"
,
0
,
0
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
0
)
add_integer
(
"rawvid-width"
,
0
,
NULL
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
0
)
add_integer
(
"rawvid-height"
,
0
,
0
,
HEIGHT_TEXT
,
HEIGHT_LONGTEXT
,
0
)
add_integer
(
"rawvid-height"
,
0
,
NULL
,
HEIGHT_TEXT
,
HEIGHT_LONGTEXT
,
0
)
add_string
(
"rawvid-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
add_string
(
"rawvid-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
true
)
true
)
add_string
(
"rawvid-aspect-ratio"
,
NULL
,
NULL
,
add_string
(
"rawvid-aspect-ratio"
,
NULL
,
NULL
,
...
...
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