Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e45fbdc1
Commit
e45fbdc1
authored
Mar 03, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DVB: Remove old syntax check
It's been 7 years now...
parent
31d319d6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
17 deletions
+0
-17
modules/access/dvb/access.c
modules/access/dvb/access.c
+0
-17
No files found.
modules/access/dvb/access.c
View file @
e45fbdc1
...
...
@@ -37,7 +37,6 @@
#include <vlc_access.h>
#include <vlc_input.h>
#include <vlc_interface.h>
#include <vlc_dialog.h>
#include <vlc_fs.h>
#ifdef HAVE_UNISTD_H
...
...
@@ -966,19 +965,6 @@ static int ParseMRL( access_t *p_access )
psz_parser += strlen( val.psz_string ); \
}
/* Test for old syntax */
strtol
(
psz_parser
,
&
psz_next
,
10
);
if
(
psz_next
!=
psz_parser
)
{
msg_Err
(
p_access
,
"the DVB input old syntax is deprecated, use vlc "
"-p dvb to see an explanation of the new syntax"
);
dialog_FatalWait
(
p_access
,
_
(
"Input syntax is deprecated"
),
"%s"
,
_
(
"The given syntax is deprecated. Run
\"
vlc -p dvb
\"
to see an "
\
"explanation of the new syntax."
)
);
free
(
psz_dup
);
return
VLC_EGENERIC
;
}
while
(
*
psz_parser
)
{
GET_OPTION_INT
(
"adapter"
)
...
...
@@ -1020,9 +1006,6 @@ static int ParseMRL( access_t *p_access )
else
{
msg_Err
(
p_access
,
"illegal polarization %c"
,
*
psz_parser
);
dialog_Fatal
(
p_access
,
_
(
"Invalid polarization"
),
_
(
"The provided polarization
\"
%c
\"
is not valid."
),
*
psz_parser
);
free
(
psz_dup
);
return
VLC_EGENERIC
;
}
...
...
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