Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
05b1d217
Commit
05b1d217
authored
May 27, 2004
by
Olivier Aubert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Snapshot module (dummy video output module keeping a configurable image cache).
It is chiefly used by the corba module.
parent
f84b1d9d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
403 additions
and
1 deletion
+403
-1
configure.ac
configure.ac
+1
-1
include/snapshot.h
include/snapshot.h
+8
-0
modules/video_output/snapshot.c
modules/video_output/snapshot.c
+394
-0
No files found.
configure.ac
View file @
05b1d217
...
...
@@ -3573,7 +3573,7 @@ if test "${enable_corba}" = "yes"; then
AC_MSG_ERROR([Could not find corba development headers])
])
if test "${ac_cv_corba_headers}" = "yes"; then
AX_ADD_PLUGINS(
corba
)
AX_ADD_PLUGINS(
[corba snapshot]
)
fi
CPPFLAGS="${CPPFLAGS_save}"
fi
...
...
include/snapshot.h
0 → 100644
View file @
05b1d217
typedef
struct
snapshot_t
{
char
*
p_data
;
/* Data area */
int
i_width
;
/* In pixels */
int
i_height
;
/* In pixels */
int
i_datasize
;
/* In bytes */
mtime_t
date
;
/* Presentation time */
}
snapshot_t
;
modules/video_output/snapshot.c
0 → 100644
View file @
05b1d217
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