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
b147e3fa
Commit
b147e3fa
authored
Apr 18, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved picture_heap_t out of vlc_vout.h
parent
345afd98
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
14 deletions
+13
-14
include/vlc_common.h
include/vlc_common.h
+0
-1
include/vlc_vout.h
include/vlc_vout.h
+0
-13
src/video_output/vout_internal.h
src/video_output/vout_internal.h
+13
-0
No files found.
include/vlc_common.h
View file @
b147e3fa
...
...
@@ -251,7 +251,6 @@ typedef struct vout_thread_t vout_thread_t;
typedef
video_format_t
video_frame_format_t
;
typedef
struct
picture_t
picture_t
;
typedef
struct
picture_sys_t
picture_sys_t
;
typedef
struct
picture_heap_t
picture_heap_t
;
/* Subpictures */
typedef
struct
spu_t
spu_t
;
...
...
include/vlc_vout.h
View file @
b147e3fa
...
...
@@ -35,19 +35,6 @@
#include <vlc_filter.h>
#include <vlc_subpicture.h>
/**
* Video picture heap, either render (to store pictures used
* by the decoder) or output (to store pictures displayed by the vout plugin)
*/
struct
picture_heap_t
{
int
i_pictures
;
/**< current heap size */
/* Real pictures */
picture_t
*
pp_picture
[
VOUT_MAX_PICTURES
];
/**< pictures */
int
i_last_used_pic
;
/**< last used pic in heap */
};
/*****************************************************************************
* Prototypes
*****************************************************************************/
...
...
src/video_output/vout_internal.h
View file @
b147e3fa
...
...
@@ -40,6 +40,19 @@
/* */
typedef
struct
vout_sys_t
vout_sys_t
;
/**
* Video picture heap, either render (to store pictures used
* by the decoder) or output (to store pictures displayed by the vout plugin)
*/
typedef
struct
{
int
i_pictures
;
/**< current heap size */
/* Real pictures */
picture_t
*
pp_picture
[
VOUT_MAX_PICTURES
];
/**< pictures */
int
i_last_used_pic
;
/**< last used pic in heap */
}
picture_heap_t
;
/* */
struct
vout_thread_sys_t
{
...
...
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