Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
f56a508a
Commit
f56a508a
authored
Aug 11, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OpenCV: remove unneeded headers and variables
parent
01fcf2a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
modules/video_filter/opencv_wrapper.c
modules/video_filter/opencv_wrapper.c
+1
-6
No files found.
modules/video_filter/opencv_wrapper.c
View file @
f56a508a
...
...
@@ -35,12 +35,8 @@
#include <vlc_vout.h>
#include <vlc_modules.h>
#include <math.h>
#include <time.h>
#include <vlc_filter.h>
#include <vlc_image.h>
#include <vlc_input.h>
#include "filter_picture.h"
#include <cxcore.h>
...
...
@@ -155,7 +151,7 @@ struct filter_sys_t
static
int
Create
(
vlc_object_t
*
p_this
)
{
filter_t
*
p_filter
=
(
filter_t
*
)
p_this
;
char
*
psz_chroma
,
*
psz_output
,
*
psz_verbosity
;
char
*
psz_chroma
,
*
psz_output
;
/* Allocate structure */
p_filter
->
p_sys
=
malloc
(
sizeof
(
filter_sys_t
)
);
...
...
@@ -323,7 +319,6 @@ static void VlcPictureToIplImage( filter_t* p_filter, picture_t* p_in )
// input video size
CvSize
sz
=
cvSize
(
abs
(
p_in
->
format
.
i_width
),
abs
(
p_in
->
format
.
i_height
));
video_format_t
fmt_out
;
double
duration
;
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
memset
(
&
fmt_out
,
0
,
sizeof
(
video_format_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