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 @@
#include <regex>
using namespace ffmpeg;
namespace vision {
namespace video {
......
......@@ -64,12 +64,12 @@ struct Video : torch::CustomClassHolder {
std::map<std::string, std::vector<double>> streamTimeBase; // not used
DecoderInCallback callback = nullptr;
std::vector<DecoderMetadata> metadata;
ffmpeg::DecoderInCallback callback = nullptr;
std::vector<ffmpeg::DecoderMetadata> metadata;
protected:
SyncDecoder decoder;
DecoderParameters params;
ffmpeg::SyncDecoder decoder;
ffmpeg::DecoderParameters params;
}; // 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