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
529f086b
Commit
529f086b
authored
Oct 28, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
Oct 28, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1691 from SpecLad:ffmpeg-test
parents
766a3511
36b5180a
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
101 additions
and
82 deletions
+101
-82
ffmpeg_version.cmake
3rdparty/ffmpeg/ffmpeg_version.cmake
+1
-0
ffmpeg_video_source.cpp
modules/gpu/src/ffmpeg_video_source.cpp
+1
-1
video_writer.cpp
modules/gpu/src/video_writer.cpp
+1
-6
cap_ffmpeg.cpp
modules/highgui/src/cap_ffmpeg.cpp
+1
-1
test_ffmpeg.cpp
modules/highgui/test/test_ffmpeg.cpp
+70
-68
test_video_io.cpp
modules/highgui/test/test_video_io.cpp
+19
-3
test_video_pos.cpp
modules/highgui/test/test_video_pos.cpp
+8
-3
No files found.
3rdparty/ffmpeg/ffmpeg_version.cmake
View file @
529f086b
set
(
HAVE_FFMPEG 1
)
set
(
HAVE_FFMPEG_CODEC 1
)
set
(
HAVE_FFMPEG_FORMAT 1
)
set
(
HAVE_FFMPEG_UTIL 1
)
...
...
modules/gpu/src/ffmpeg_video_source.cpp
View file @
529f086b
...
...
@@ -44,7 +44,7 @@
#if defined(HAVE_CUDA) && defined(HAVE_NVCUVID)
#if defined(HAVE_FFMPEG) && defined(BUILD_SHARED_LIBS)
#if defined(HAVE_FFMPEG) && defined(BUILD_SHARED_LIBS)
&& !defined(WIN32)
#include "../src/cap_ffmpeg_impl.hpp"
#else
#include "../src/cap_ffmpeg_api.hpp"
...
...
modules/gpu/src/video_writer.cpp
View file @
529f086b
...
...
@@ -70,12 +70,7 @@ void cv::gpu::VideoWriter_GPU::EncoderParams::save(const std::string&) const { t
#else // !defined HAVE_CUDA || !defined WIN32
#ifdef HAVE_FFMPEG
#include "../src/cap_ffmpeg_impl.hpp"
#else
#include "../src/cap_ffmpeg_api.hpp"
#endif
#include "../src/cap_ffmpeg_api.hpp"
///////////////////////////////////////////////////////////////////////////
// VideoWriter_GPU::Impl
...
...
modules/highgui/src/cap_ffmpeg.cpp
View file @
529f086b
...
...
@@ -41,7 +41,7 @@
#include "precomp.hpp"
#if
def HAVE_FFMPEG
#if
defined HAVE_FFMPEG && !defined WIN32
#include "cap_ffmpeg_impl.hpp"
#else
#include "cap_ffmpeg_api.hpp"
...
...
modules/highgui/test/test_ffmpeg.cpp
View file @
529f086b
...
...
@@ -47,8 +47,6 @@ using namespace cv;
#ifdef HAVE_FFMPEG
#include "ffmpeg_codecs.hpp"
using
namespace
std
;
class
CV_FFmpegWriteBigVideoTest
:
public
cvtest
::
BaseTest
...
...
@@ -61,84 +59,88 @@ public:
const
double
fps0
=
15
;
const
double
time_sec
=
1
;
const
size_t
n
=
sizeof
(
codec_bmp_tags
)
/
sizeof
(
codec_bmp_tags
[
0
]);
const
int
tags
[]
=
{
0
,
//CV_FOURCC('D', 'I', 'V', '3'),
//CV_FOURCC('D', 'I', 'V', 'X'),
CV_FOURCC
(
'D'
,
'X'
,
'5'
,
'0'
),
CV_FOURCC
(
'F'
,
'L'
,
'V'
,
'1'
),
CV_FOURCC
(
'H'
,
'2'
,
'6'
,
'1'
),
CV_FOURCC
(
'H'
,
'2'
,
'6'
,
'3'
),
CV_FOURCC
(
'I'
,
'4'
,
'2'
,
'0'
),
//CV_FOURCC('j', 'p', 'e', 'g'),
CV_FOURCC
(
'M'
,
'J'
,
'P'
,
'G'
),
CV_FOURCC
(
'm'
,
'p'
,
'4'
,
'v'
),
CV_FOURCC
(
'M'
,
'P'
,
'E'
,
'G'
),
//CV_FOURCC('W', 'M', 'V', '1'),
//CV_FOURCC('W', 'M', 'V', '2'),
CV_FOURCC
(
'X'
,
'V'
,
'I'
,
'D'
),
//CV_FOURCC('Y', 'U', 'Y', '2'),
};
const
size_t
n
=
sizeof
(
tags
)
/
sizeof
(
tags
[
0
]);
bool
created
=
false
;
for
(
size_t
j
=
0
;
j
<
n
;
++
j
)
{
stringstream
s
;
s
<<
codec_bmp_tags
[
j
].
tag
;
int
tag
=
codec_bmp_tags
[
j
].
tag
;
if
(
tag
!=
MKTAG
(
'H'
,
'2'
,
'6'
,
'3'
)
&&
tag
!=
MKTAG
(
'H'
,
'2'
,
'6'
,
'1'
)
&&
//tag != MKTAG('D', 'I', 'V', 'X') &&
tag
!=
MKTAG
(
'D'
,
'X'
,
'5'
,
'0'
)
&&
tag
!=
MKTAG
(
'X'
,
'V'
,
'I'
,
'D'
)
&&
tag
!=
MKTAG
(
'm'
,
'p'
,
'4'
,
'v'
)
&&
//tag != MKTAG('D', 'I', 'V', '3') &&
//tag != MKTAG('W', 'M', 'V', '1') &&
//tag != MKTAG('W', 'M', 'V', '2') &&
tag
!=
MKTAG
(
'M'
,
'P'
,
'E'
,
'G'
)
&&
tag
!=
MKTAG
(
'M'
,
'J'
,
'P'
,
'G'
)
&&
//tag != MKTAG('j', 'p', 'e', 'g') &&
tag
!=
0
&&
tag
!=
MKTAG
(
'I'
,
'4'
,
'2'
,
'0'
)
&&
//tag != MKTAG('Y', 'U', 'Y', '2') &&
tag
!=
MKTAG
(
'F'
,
'L'
,
'V'
,
'1'
)
)
continue
;
const
string
filename
=
"output_"
+
s
.
str
()
+
".avi"
;
try
{
double
fps
=
fps0
;
Size
frame_s
=
Size
(
img_c
,
img_r
);
int
tag
=
tags
[
j
];
stringstream
s
;
s
<<
tag
;
if
(
tag
==
CV_FOURCC
(
'H'
,
'2'
,
'6'
,
'1'
)
)
frame_s
=
Size
(
352
,
288
);
else
if
(
tag
==
CV_FOURCC
(
'H'
,
'2'
,
'6'
,
'3'
)
)
frame_s
=
Size
(
704
,
576
);
/*else if( tag == CV_FOURCC('M', 'J', 'P', 'G') ||
tag == CV_FOURCC('j', 'p', 'e', 'g') )
frame_s = Size(1920, 1080);*/
const
string
filename
=
"output_"
+
s
.
str
()
+
".avi"
;
if
(
tag
==
CV_FOURCC
(
'M'
,
'P'
,
'E'
,
'G'
)
)
fps
=
25
;
VideoWriter
writer
(
filename
,
tag
,
fps
,
frame_s
);
if
(
writer
.
isOpened
()
==
false
)
try
{
ts
->
printf
(
ts
->
LOG
,
"
\n\n
File name: %s
\n
"
,
filename
.
c_str
())
;
ts
->
printf
(
ts
->
LOG
,
"Codec id: %d Codec tag: %c%c%c%c
\n
"
,
j
,
tag
&
255
,
(
tag
>>
8
)
&
255
,
(
tag
>>
16
)
&
255
,
(
tag
>>
24
)
&
255
);
ts
->
printf
(
ts
->
LOG
,
"Error: cannot create video file."
);
ts
->
set_failed_test_info
(
ts
->
FAIL_INVALID_OUTPUT
);
}
else
{
Mat
img
(
frame_s
,
CV_8UC3
,
Scalar
::
all
(
0
));
const
int
coeff
=
cvRound
(
min
(
frame_s
.
width
,
frame_s
.
height
)
/
(
fps0
*
time_sec
));
for
(
int
i
=
0
;
i
<
static_cast
<
int
>
(
fps
*
time_sec
);
i
++
)
double
fps
=
fps0
;
Size
frame_s
=
Size
(
img_c
,
img_r
);
if
(
tag
==
CV_FOURCC
(
'H'
,
'2'
,
'6'
,
'1'
)
)
frame_s
=
Size
(
352
,
288
);
else
if
(
tag
==
CV_FOURCC
(
'H'
,
'2'
,
'6'
,
'3'
)
)
frame_s
=
Size
(
704
,
576
);
/*else if( tag == CV_FOURCC('M', 'J', 'P', 'G') ||
tag == CV_FOURCC('j', 'p', 'e', 'g') )
frame_s = Size(1920, 1080);*/
if
(
tag
==
CV_FOURCC
(
'M'
,
'P'
,
'E'
,
'G'
)
)
{
//circle(img, Point2i(img_c / 2, img_r / 2), min(img_r, img_c) / 2 * (i + 1), Scalar(255, 0, 0, 0), 2);
rectangle
(
img
,
Point2i
(
coeff
*
i
,
coeff
*
i
),
Point2i
(
coeff
*
(
i
+
1
),
coeff
*
(
i
+
1
)),
Scalar
::
all
(
255
*
(
1.0
-
static_cast
<
double
>
(
i
)
/
(
fps
*
time_sec
*
2
)
)),
-
1
);
writer
<<
img
;
frame_s
=
Size
(
720
,
576
);
fps
=
25
;
}
if
(
!
created
)
created
=
true
;
else
remove
(
filename
.
c_str
());
}
}
catch
(...)
{
ts
->
set_failed_test_info
(
ts
->
FAIL_INVALID_OUTPUT
);
}
ts
->
set_failed_test_info
(
cvtest
::
TS
::
OK
);
VideoWriter
writer
(
filename
,
tag
,
fps
,
frame_s
);
if
(
writer
.
isOpened
()
==
false
)
{
ts
->
printf
(
ts
->
LOG
,
"
\n\n
File name: %s
\n
"
,
filename
.
c_str
());
ts
->
printf
(
ts
->
LOG
,
"Codec id: %d Codec tag: %c%c%c%c
\n
"
,
j
,
tag
&
255
,
(
tag
>>
8
)
&
255
,
(
tag
>>
16
)
&
255
,
(
tag
>>
24
)
&
255
);
ts
->
printf
(
ts
->
LOG
,
"Error: cannot create video file."
);
ts
->
set_failed_test_info
(
ts
->
FAIL_INVALID_OUTPUT
);
}
else
{
Mat
img
(
frame_s
,
CV_8UC3
,
Scalar
::
all
(
0
));
const
int
coeff
=
cvRound
(
min
(
frame_s
.
width
,
frame_s
.
height
)
/
(
fps0
*
time_sec
));
for
(
int
i
=
0
;
i
<
static_cast
<
int
>
(
fps
*
time_sec
);
i
++
)
{
//circle(img, Point2i(img_c / 2, img_r / 2), min(img_r, img_c) / 2 * (i + 1), Scalar(255, 0, 0, 0), 2);
rectangle
(
img
,
Point2i
(
coeff
*
i
,
coeff
*
i
),
Point2i
(
coeff
*
(
i
+
1
),
coeff
*
(
i
+
1
)),
Scalar
::
all
(
255
*
(
1.0
-
static_cast
<
double
>
(
i
)
/
(
fps
*
time_sec
*
2
)
)),
-
1
);
writer
<<
img
;
}
if
(
!
created
)
created
=
true
;
else
remove
(
filename
.
c_str
());
}
}
catch
(...)
{
ts
->
set_failed_test_info
(
ts
->
FAIL_INVALID_OUTPUT
);
}
ts
->
set_failed_test_info
(
cvtest
::
TS
::
OK
);
}
}
};
...
...
modules/highgui/test/test_video_io.cpp
View file @
529f086b
...
...
@@ -480,18 +480,34 @@ void CV_HighGuiTest::SpecificVideoTest(const string& dir, const cvtest::VideoFor
size_t
FRAME_COUNT
=
(
size_t
)
cap
.
get
(
CV_CAP_PROP_FRAME_COUNT
);
if
(
FRAME_COUNT
!=
IMAGE_COUNT
)
size_t
allowed_extra_frames
=
0
;
// Hack! Newer FFmpeg versions in this combination produce a file
// whose reported duration is one frame longer than needed, and so
// the calculated frame count is also off by one. Ideally, we'd want
// to fix both writing (to produce the correct duration) and reading
// (to correctly report frame count for such files), but I don't know
// how to do either, so this is a workaround for now.
// See also the same hack in CV_PositioningTest::run.
if
(
fourcc
==
CV_FOURCC
(
'M'
,
'P'
,
'E'
,
'G'
)
&&
ext
==
"mkv"
)
allowed_extra_frames
=
1
;
if
(
FRAME_COUNT
<
IMAGE_COUNT
||
FRAME_COUNT
>
IMAGE_COUNT
+
allowed_extra_frames
)
{
ts
->
printf
(
ts
->
LOG
,
"
\n
Frame count checking for video_%s.%s...
\n
"
,
fourcc_str
.
c_str
(),
ext
.
c_str
());
ts
->
printf
(
ts
->
LOG
,
"Video codec: %s
\n
"
,
fourcc_str
.
c_str
());
ts
->
printf
(
ts
->
LOG
,
"Required frame count: %d; Returned frame count: %d
\n
"
,
IMAGE_COUNT
,
FRAME_COUNT
);
if
(
allowed_extra_frames
!=
0
)
ts
->
printf
(
ts
->
LOG
,
"Required frame count: %d-%d; Returned frame count: %d
\n
"
,
IMAGE_COUNT
,
IMAGE_COUNT
+
allowed_extra_frames
,
FRAME_COUNT
);
else
ts
->
printf
(
ts
->
LOG
,
"Required frame count: %d; Returned frame count: %d
\n
"
,
IMAGE_COUNT
,
FRAME_COUNT
);
ts
->
printf
(
ts
->
LOG
,
"Error: Incorrect frame count in the video.
\n
"
);
ts
->
printf
(
ts
->
LOG
,
"Continue checking...
\n
"
);
ts
->
set_failed_test_info
(
ts
->
FAIL_BAD_ACCURACY
);
return
;
}
for
(
int
i
=
0
;
(
size_t
)
i
<
FRAM
E_COUNT
;
i
++
)
for
(
int
i
=
0
;
(
size_t
)
i
<
IMAG
E_COUNT
;
i
++
)
{
Mat
frame
;
cap
>>
frame
;
if
(
frame
.
empty
())
...
...
modules/highgui/test/test_video_pos.cpp
View file @
529f086b
...
...
@@ -114,16 +114,21 @@ public:
cap
.
set
(
CV_CAP_PROP_POS_FRAMES
,
0
);
int
N
=
(
int
)
cap
.
get
(
CV_CAP_PROP_FRAME_COUNT
);
if
(
N
!=
n_frames
||
N
!=
N0
)
// See the same hack in CV_HighGuiTest::SpecificVideoTest for explanation.
int
allowed_extra_frames
=
0
;
if
(
fmt
.
fourcc
==
CV_FOURCC
(
'M'
,
'P'
,
'E'
,
'G'
)
&&
fmt
.
ext
==
"mkv"
)
allowed_extra_frames
=
1
;
if
(
N
<
n_frames
||
N
>
n_frames
+
allowed_extra_frames
||
N
!=
N0
)
{
ts
->
printf
(
ts
->
LOG
,
"
\n
Error: returned frame count (N0=%d, N=%d) is different from the reference number %d
\n
"
,
N0
,
N
,
n_frames
);
ts
->
set_failed_test_info
(
ts
->
FAIL_INVALID_OUTPUT
);
return
;
}
for
(
int
k
=
0
;
k
<
N
;
++
k
)
for
(
int
k
=
0
;
k
<
n_frames
;
++
k
)
{
int
idx
=
theRNG
().
uniform
(
0
,
N
);
int
idx
=
theRNG
().
uniform
(
0
,
n_frames
);
if
(
!
cap
.
set
(
CV_CAP_PROP_POS_FRAMES
,
idx
)
)
{
...
...
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