Skip to content
Snippets Groups Projects
Commit ca174511 authored by Philippe Gorley's avatar Philippe Gorley
Browse files

misc: fix mismatched-tags warnings

Change-Id: I32f59646ad7059dc7440aa6f278fd2e210c8108e
parent f1c74ed1
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@
#include <memory>
#include <functional>
class AVFrame;
struct AVFrame;
namespace DRing {
struct FrameBuffer; // from dring/videomanager_interface.h
......
......@@ -40,17 +40,17 @@
#include <memory>
#include <chrono>
class AVCodecContext;
class AVStream;
class AVDictionary;
class AVFormatContext;
class AVCodec;
struct AVCodecContext;
struct AVStream;
struct AVDictionary;
struct AVFormatContext;
struct AVCodec;
enum AVMediaType;
namespace ring {
struct AudioFrame;
class AudioFormat;
struct AudioFormat;
class RingBuffer;
class Resampler;
class MediaIOHandle;
......
......@@ -28,9 +28,9 @@
#include <string>
#include <vector>
class AVFilterContext;
class AVFilterGraph;
class AVFilterInOut;
struct AVFilterContext;
struct AVFilterGraph;
struct AVFilterInOut;
namespace ring {
......
......@@ -28,7 +28,7 @@
#include <vector>
#ifndef AVFORMAT_AVIO_H
class AVIOContext;
struct AVIOContext;
#endif
typedef int(*io_readcallback)(void *opaque, uint8_t *buf, int buf_size);
......
......@@ -25,7 +25,7 @@
#include "noncopyable.h"
class SwsContext;
struct SwsContext;
namespace ring { namespace video {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment