projects
/
platform
/
upstream
/
opencv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
905e5f1
)
replicated the fix for Ptr<CvCapture> bug
author
Vadim Pisarevsky
<no@email>
Wed, 8 Dec 2010 09:36:42 +0000
(09:36 +0000)
committer
Vadim Pisarevsky
<no@email>
Wed, 8 Dec 2010 09:36:42 +0000
(09:36 +0000)
modules/highgui/src/cap.cpp
patch
|
blob
|
history
diff --git
a/modules/highgui/src/cap.cpp
b/modules/highgui/src/cap.cpp
index 63e90528ff5d85361e16bea8dc785666344ae8ad..6c2b082d0de3c56f38ae4dd60d5487acbe2fe9a7 100644
(file)
--- a/
modules/highgui/src/cap.cpp
+++ b/
modules/highgui/src/cap.cpp
@@
-52,10
+52,10
@@
namespace cv
{
-template<>
inline
void Ptr<CvCapture>::delete_obj()
+template<> void Ptr<CvCapture>::delete_obj()
{ cvReleaseCapture(&obj); }
-template<>
inline
void Ptr<CvVideoWriter>::delete_obj()
+template<> void Ptr<CvVideoWriter>::delete_obj()
{ cvReleaseVideoWriter(&obj); }
}