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
ed58d07d
Commit
ed58d07d
authored
Jun 14, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix indentation.
parent
117e2de0
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
273 additions
and
274 deletions
+273
-274
include/vlc_input.h
include/vlc_input.h
+5
-2
modules/access/cdda/info.c
modules/access/cdda/info.c
+268
-272
No files found.
include/vlc_input.h
View file @
ed58d07d
...
...
@@ -58,7 +58,7 @@ struct input_item_t
char
*
psz_name
;
/**< text describing this item */
char
*
psz_uri
;
/**< mrl of this item */
bool
b_fixed_name
;
/**< Can the interface change the name ?*/
bool
b_fixed_name
;
/**< Can the interface change the name ?*/
int
i_options
;
/**< Number of input options */
char
**
ppsz_options
;
/**< Array of input options */
...
...
@@ -403,7 +403,7 @@ typedef struct
{
char
*
psz_name
;
bool
b_menu
;
/* Is it a menu or a normal entry */
bool
b_menu
;
/* Is it a menu or a normal entry */
int64_t
i_length
;
/* Length(microsecond) if known, else 0 */
int64_t
i_size
;
/* Size (bytes) if known, else 0 */
...
...
@@ -467,6 +467,7 @@ static inline input_title_t *vlc_input_title_Duplicate( input_title_t *t )
return
dup
;
}
/*****************************************************************************
* Attachments
*****************************************************************************/
...
...
@@ -479,6 +480,7 @@ struct input_attachment_t
int
i_data
;
void
*
p_data
;
};
static
inline
input_attachment_t
*
vlc_input_attachment_New
(
const
char
*
psz_name
,
const
char
*
psz_mime
,
const
char
*
psz_description
,
...
...
@@ -517,6 +519,7 @@ static inline void vlc_input_attachment_Delete( input_attachment_t *a )
free
(
a
->
p_data
);
free
(
a
);
}
/*****************************************************************************
* input defines/constants.
*****************************************************************************/
...
...
modules/access/cdda/info.c
View file @
ed58d07d
This diff is collapsed.
Click to expand it.
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