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
4cb13ccc
Commit
4cb13ccc
authored
Oct 02, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
access_dvb: constify.
parent
6555b580
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
modules/access/dvb/dvb.h
modules/access/dvb/dvb.h
+3
-3
modules/access/dvb/en50221.c
modules/access/dvb/en50221.c
+1
-1
modules/access/dvb/http.c
modules/access/dvb/http.c
+2
-2
No files found.
modules/access/dvb/dvb.h
View file @
4cb13ccc
...
...
@@ -240,13 +240,13 @@ void en50221_SendMMIObject( access_t * p_access, int i_slot,
en50221_mmi_object_t
*
p_object
);
void
en50221_End
(
access_t
*
);
char
*
dvbsi_to_utf8
(
char
*
psz_instring
,
size_t
i_length
);
char
*
dvbsi_to_utf8
(
c
onst
c
har
*
psz_instring
,
size_t
i_length
);
#ifdef ENABLE_HTTPD
int
HTTPOpen
(
access_t
*
p_access
);
void
HTTPClose
(
access_t
*
p_access
);
char
*
HTTPExtractValue
(
char
*
psz_uri
,
const
char
*
psz_name
,
char
*
psz_value
,
int
i_value_max
);
char
*
HTTPExtractValue
(
c
onst
c
har
*
psz_uri
,
const
char
*
psz_name
,
char
*
psz_value
,
int
i_value_max
);
#endif
/*****************************************************************************
* Hacks
...
...
modules/access/dvb/en50221.c
View file @
4cb13ccc
...
...
@@ -2343,7 +2343,7 @@ static inline void *FixUTF8( char *p )
return
p
;
}
char
*
dvbsi_to_utf8
(
char
*
psz_instring
,
size_t
i_length
)
char
*
dvbsi_to_utf8
(
c
onst
c
har
*
psz_instring
,
size_t
i_length
)
{
const
char
*
psz_encoding
,
*
psz_stringstart
;
char
*
psz_outstring
,
*
psz_tmp
;
...
...
modules/access/dvb/http.c
View file @
4cb13ccc
...
...
@@ -300,8 +300,8 @@ static int HttpCallback( httpd_file_sys_t *p_args,
/****************************************************************************
* HTTPExtractValue: Extract a GET variable from psz_request
****************************************************************************/
char
*
HTTPExtractValue
(
char
*
psz_uri
,
const
char
*
psz_name
,
char
*
psz_value
,
int
i_value_max
)
char
*
HTTPExtractValue
(
c
onst
c
har
*
psz_uri
,
const
char
*
psz_name
,
char
*
psz_value
,
int
i_value_max
)
{
char
*
p
=
psz_uri
;
...
...
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