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
d06be22f
Commit
d06be22f
authored
Feb 21, 2008
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libmp4: removed the 'France' option, who cares ?
parent
60a64110
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
16 deletions
+1
-16
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+1
-10
src/libvlc-module.c
src/libvlc-module.c
+0
-6
No files found.
modules/demux/mp4/libmp4.c
View file @
d06be22f
...
@@ -2055,16 +2055,8 @@ static int MP4_ReadBox_drms( stream_t *p_stream, MP4_Box_t *p_box )
...
@@ -2055,16 +2055,8 @@ static int MP4_ReadBox_drms( stream_t *p_stream, MP4_Box_t *p_box )
if
(
p_drms_box
&&
p_drms_box
->
data
.
p_sample_soun
->
p_drms
)
if
(
p_drms_box
&&
p_drms_box
->
data
.
p_sample_soun
->
p_drms
)
{
{
int
i_ret
;
int
i_ret
=
drms_init
(
p_drms_box
->
data
.
p_sample_soun
->
p_drms
,
if
(
config_GetInt
(
p_stream
,
"france"
)
)
{
i_ret
=
-
7
;
}
else
{
i_ret
=
drms_init
(
p_drms_box
->
data
.
p_sample_soun
->
p_drms
,
p_box
->
i_type
,
p_peek
,
i_read
);
p_box
->
i_type
,
p_peek
,
i_read
);
}
if
(
i_ret
)
if
(
i_ret
)
{
{
const
char
*
psz_error
;
const
char
*
psz_error
;
...
@@ -2077,7 +2069,6 @@ static int MP4_ReadBox_drms( stream_t *p_stream, MP4_Box_t *p_box )
...
@@ -2077,7 +2069,6 @@ static int MP4_ReadBox_drms( stream_t *p_stream, MP4_Box_t *p_box )
case
-
4
:
psz_error
=
"could not get SCI data"
;
break
;
case
-
4
:
psz_error
=
"could not get SCI data"
;
break
;
case
-
5
:
psz_error
=
"no user key found in SCI data"
;
break
;
case
-
5
:
psz_error
=
"no user key found in SCI data"
;
break
;
case
-
6
:
psz_error
=
"invalid user key"
;
break
;
case
-
6
:
psz_error
=
"invalid user key"
;
break
;
case
-
7
:
psz_error
=
"you live in France"
;
break
;
default:
psz_error
=
"unknown error"
;
break
;
default:
psz_error
=
"unknown error"
;
break
;
}
}
if
MP4_BOX_TYPE_ASCII
()
if
MP4_BOX_TYPE_ASCII
()
...
...
src/libvlc-module.c
View file @
d06be22f
...
@@ -521,10 +521,6 @@ static const char *ppsz_pos_descriptions[] =
...
@@ -521,10 +521,6 @@ static const char *ppsz_pos_descriptions[] =
"subsystem, such as the DVD or VCD device, the network interface " \
"subsystem, such as the DVD or VCD device, the network interface " \
"settings or the subtitle channel.")
"settings or the subtitle channel.")
#define FRANCE_LONGTEXT N_( \
"If you live in France, it is not allowed to workaround any Digital " \
"Restrictions Management measure." )
#define CR_AVERAGE_TEXT N_("Clock reference average counter")
#define CR_AVERAGE_TEXT N_("Clock reference average counter")
#define CR_AVERAGE_LONGTEXT N_( \
#define CR_AVERAGE_LONGTEXT N_( \
"When using the PVR input (or a very irregular source), you should " \
"When using the PVR input (or a very irregular source), you should " \
...
@@ -1586,8 +1582,6 @@ vlc_module_begin();
...
@@ -1586,8 +1582,6 @@ vlc_module_begin();
set_category
(
CAT_INPUT
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_GENERAL
);
set_subcategory
(
SUBCAT_INPUT_GENERAL
);
add_bool
(
"france"
,
VLC_FALSE
,
NULL
,
N_
(
"France"
),
FRANCE_LONGTEXT
,
VLC_TRUE
);
set_section
(
N_
(
"Track settings"
),
NULL
);
set_section
(
N_
(
"Track settings"
),
NULL
);
add_integer
(
"program"
,
0
,
NULL
,
add_integer
(
"program"
,
0
,
NULL
,
INPUT_PROGRAM_TEXT
,
INPUT_PROGRAM_LONGTEXT
,
VLC_TRUE
);
INPUT_PROGRAM_TEXT
,
INPUT_PROGRAM_LONGTEXT
,
VLC_TRUE
);
...
...
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