Unverified Commit 18a1d411 authored by Nicolas Hug's avatar Nicolas Hug Committed by GitHub
Browse files

[FBcode->GH] [codemod] Remove "using namespace" dep (#8334)


Co-authored-by: default avatarRichard Barnes <rbarnes@meta.com>
parent ef2920cc
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
#include <regex> #include <regex>
using namespace ffmpeg;
namespace vision { namespace vision {
namespace video { namespace video {
......
...@@ -64,12 +64,12 @@ struct Video : torch::CustomClassHolder { ...@@ -64,12 +64,12 @@ struct Video : torch::CustomClassHolder {
std::map<std::string, std::vector<double>> streamTimeBase; // not used std::map<std::string, std::vector<double>> streamTimeBase; // not used
DecoderInCallback callback = nullptr; ffmpeg::DecoderInCallback callback = nullptr;
std::vector<DecoderMetadata> metadata; std::vector<ffmpeg::DecoderMetadata> metadata;
protected: protected:
SyncDecoder decoder; ffmpeg::SyncDecoder decoder;
DecoderParameters params; ffmpeg::DecoderParameters params;
}; // struct Video }; // struct Video
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment