Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
7c3090dd
Commit
7c3090dd
authored
Jun 06, 2018
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11683 from alalek:videoio_ffmpeg_cleanup_dead_code
parents
3cbd2e27
26286625
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
cap_ffmpeg_api.hpp
modules/videoio/src/cap_ffmpeg_api.hpp
+1
-12
No files found.
modules/videoio/src/cap_ffmpeg_api.hpp
View file @
7c3090dd
...
@@ -32,29 +32,18 @@ typedef struct CvCapture_FFMPEG CvCapture_FFMPEG;
...
@@ -32,29 +32,18 @@ typedef struct CvCapture_FFMPEG CvCapture_FFMPEG;
typedef
struct
CvVideoWriter_FFMPEG
CvVideoWriter_FFMPEG
;
typedef
struct
CvVideoWriter_FFMPEG
CvVideoWriter_FFMPEG
;
OPENCV_FFMPEG_API
struct
CvCapture_FFMPEG
*
cvCreateFileCapture_FFMPEG
(
const
char
*
filename
);
OPENCV_FFMPEG_API
struct
CvCapture_FFMPEG
*
cvCreateFileCapture_FFMPEG
(
const
char
*
filename
);
OPENCV_FFMPEG_API
struct
CvCapture_FFMPEG_2
*
cvCreateFileCapture_FFMPEG_2
(
const
char
*
filename
);
OPENCV_FFMPEG_API
int
cvSetCaptureProperty_FFMPEG
(
struct
CvCapture_FFMPEG
*
cap
,
OPENCV_FFMPEG_API
int
cvSetCaptureProperty_FFMPEG
(
struct
CvCapture_FFMPEG
*
cap
,
int
prop
,
double
value
);
int
prop
,
double
value
);
OPENCV_FFMPEG_API
int
cvSetCaptureProperty_FFMPEG_2
(
struct
CvCapture_FFMPEG_2
*
cap
,
int
prop
,
double
value
);
OPENCV_FFMPEG_API
double
cvGetCaptureProperty_FFMPEG
(
struct
CvCapture_FFMPEG
*
cap
,
int
prop
);
OPENCV_FFMPEG_API
double
cvGetCaptureProperty_FFMPEG
(
struct
CvCapture_FFMPEG
*
cap
,
int
prop
);
OPENCV_FFMPEG_API
double
cvGetCaptureProperty_FFMPEG_2
(
struct
CvCapture_FFMPEG_2
*
cap
,
int
prop
);
OPENCV_FFMPEG_API
int
cvGrabFrame_FFMPEG
(
struct
CvCapture_FFMPEG
*
cap
);
OPENCV_FFMPEG_API
int
cvGrabFrame_FFMPEG
(
struct
CvCapture_FFMPEG
*
cap
);
OPENCV_FFMPEG_API
int
cvGrabFrame_FFMPEG_2
(
struct
CvCapture_FFMPEG_2
*
cap
);
OPENCV_FFMPEG_API
int
cvRetrieveFrame_FFMPEG
(
struct
CvCapture_FFMPEG
*
capture
,
unsigned
char
**
data
,
OPENCV_FFMPEG_API
int
cvRetrieveFrame_FFMPEG
(
struct
CvCapture_FFMPEG
*
capture
,
unsigned
char
**
data
,
int
*
step
,
int
*
width
,
int
*
height
,
int
*
cn
);
int
*
step
,
int
*
width
,
int
*
height
,
int
*
cn
);
OPENCV_FFMPEG_API
int
cvRetrieveFrame_FFMPEG_2
(
struct
CvCapture_FFMPEG_2
*
capture
,
unsigned
char
**
data
,
int
*
step
,
int
*
width
,
int
*
height
,
int
*
cn
);
OPENCV_FFMPEG_API
void
cvReleaseCapture_FFMPEG
(
struct
CvCapture_FFMPEG
**
cap
);
OPENCV_FFMPEG_API
void
cvReleaseCapture_FFMPEG
(
struct
CvCapture_FFMPEG
**
cap
);
OPENCV_FFMPEG_API
void
cvReleaseCapture_FFMPEG_2
(
struct
CvCapture_FFMPEG_2
**
cap
);
OPENCV_FFMPEG_API
struct
CvVideoWriter_FFMPEG
*
cvCreateVideoWriter_FFMPEG
(
const
char
*
filename
,
OPENCV_FFMPEG_API
struct
CvVideoWriter_FFMPEG
*
cvCreateVideoWriter_FFMPEG
(
const
char
*
filename
,
int
fourcc
,
double
fps
,
int
width
,
int
height
,
int
isColor
);
int
fourcc
,
double
fps
,
int
width
,
int
height
,
int
isColor
);
OPENCV_FFMPEG_API
struct
CvVideoWriter_FFMPEG_2
*
cvCreateVideoWriter_FFMPEG_2
(
const
char
*
filename
,
int
fourcc
,
double
fps
,
int
width
,
int
height
,
int
isColor
);
OPENCV_FFMPEG_API
int
cvWriteFrame_FFMPEG
(
struct
CvVideoWriter_FFMPEG
*
writer
,
const
unsigned
char
*
data
,
OPENCV_FFMPEG_API
int
cvWriteFrame_FFMPEG
(
struct
CvVideoWriter_FFMPEG
*
writer
,
const
unsigned
char
*
data
,
int
step
,
int
width
,
int
height
,
int
cn
,
int
origin
);
int
step
,
int
width
,
int
height
,
int
cn
,
int
origin
);
OPENCV_FFMPEG_API
void
cvReleaseVideoWriter_FFMPEG
(
struct
CvVideoWriter_FFMPEG
**
writer
);
OPENCV_FFMPEG_API
void
cvReleaseVideoWriter_FFMPEG
(
struct
CvVideoWriter_FFMPEG
**
writer
);
typedef
CvCapture_FFMPEG
*
(
*
CvCreateFileCapture_Plugin
)(
const
char
*
filename
);
typedef
CvCapture_FFMPEG
*
(
*
CvCreateFileCapture_Plugin
)(
const
char
*
filename
);
...
...
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