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
9a634b1f
Commit
9a634b1f
authored
Dec 22, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input_item_t: fix padding.
parent
78869b00
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
include/vlc_input_item.h
include/vlc_input_item.h
+5
-5
No files found.
include/vlc_input_item.h
View file @
9a634b1f
...
...
@@ -58,7 +58,6 @@ 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 ?*/
int
i_options
;
/**< Number of input options */
char
**
ppsz_options
;
/**< Array of input options */
...
...
@@ -67,8 +66,6 @@ struct input_item_t
mtime_t
i_duration
;
/**< Duration in microseconds */
uint8_t
i_type
;
/**< Type (file, disc, ... see input_item_type_e) */
bool
b_prefers_tree
;
/**< Do we prefer being displayed as tree*/
int
i_categories
;
/**< Number of info categories */
info_category_t
**
pp_categories
;
/**< Pointer to the first info category */
...
...
@@ -79,8 +76,6 @@ struct input_item_t
input_stats_t
*
p_stats
;
/**< Statistics */
int
i_nb_played
;
/**< Number of times played */
bool
b_error_when_reading
;
/**< Error When Reading */
vlc_meta_t
*
p_meta
;
int
i_epg
;
/**< Number of EPG entries */
...
...
@@ -89,6 +84,11 @@ struct input_item_t
vlc_event_manager_t
event_manager
;
vlc_mutex_t
lock
;
/**< Lock for the item */
uint8_t
i_type
;
/**< Type (file, disc, ... see input_item_type_e) */
bool
b_prefers_tree
;
/**< Do we prefer being displayed as tree*/
bool
b_fixed_name
;
/**< Can the interface change the name ?*/
bool
b_error_when_reading
;
/**< Error When Reading */
};
enum
input_item_type_e
...
...
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