-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenCV-free BGRA capture using Epiphan DVI2PCIe Duo #46
Labels
Comments
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
… saving the result of FFmpeg conversion
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 30, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 31, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 31, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 31, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 31, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 31, 2018
dzhoshkun
added a commit
that referenced
this issue
Oct 31, 2018
Line 68 of |
/* format */ /* opt */ /* fourcc */ /* flip */
...
{ V2U_GRABFRAME_FORMAT_ARGB32 ,"argb32" ,NULL ,V2U_TRUE }, |
dzhoshkun
added a commit
that referenced
this issue
Nov 1, 2018
The frames are scrambled even at C++ level. Confirmed with: #include "videosourcefactory.h"
#include "videotargetfactory.h"
#include <thread>
#include <chrono>
int main()
{
IVideoSource *src = gg::VideoSourceFactory::get_instance().get_device(gg::Device::DVI2PCIeDuo_SDI, gg::ColourSpace::BGRA);
gg::IVideoTarget *tgt = gg::VideoTargetFactory::get_instance().create_file_writer(gg::Codec::HEVC, "bgra.mp4", src->get_frame_rate());
src->attach(*tgt);
std::this_thread::sleep_for(std::chrono::duration<double, std::milli>(10000));
src->detach(*tgt);
gg::VideoSourceFactory::get_instance().free_device(gg::Device::DVI2PCIeDuo_SDI);
delete tgt;
return 0;
} |
dzhoshkun
added a commit
that referenced
this issue
Nov 2, 2018
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
… saving the result of FFmpeg conversion
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 16, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 30, 2019
dzhoshkun
added a commit
that referenced
this issue
Apr 30, 2019
dzhoshkun
added a commit
that referenced
this issue
May 1, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is part of #9 But opening a new issue to be able to handle this sub-task separately, as #9 involves other similar-scale tasks as well. Will pick the development from the current #9 branch.
The text was updated successfully, but these errors were encountered: