Fix MuxerOptions forward declaration
MuxerOptions is a struct but was forward declared as class. This fixes the build when using clang. Change-Id: I3b99252bc86a71ced27cd12aa2ab828e10a025e5
This commit is contained in:
parent
c73c25c1c0
commit
bbc77362e4
|
@ -23,7 +23,7 @@ class EncryptionKeySource;
|
||||||
class MediaInfo;
|
class MediaInfo;
|
||||||
class MediaStream;
|
class MediaStream;
|
||||||
class Muxer;
|
class Muxer;
|
||||||
class MuxerOptions;
|
struct MuxerOptions;
|
||||||
|
|
||||||
/// Print all the stream info for the provided strings to standard output.
|
/// Print all the stream info for the provided strings to standard output.
|
||||||
void DumpStreamInfo(const std::vector<MediaStream*>& streams);
|
void DumpStreamInfo(const std::vector<MediaStream*>& streams);
|
||||||
|
|
Loading…
Reference in New Issue