From bbc77362e403fa0926f94c92c20b41fcd62180b3 Mon Sep 17 00:00:00 2001 From: Rintaro Kuroiwa Date: Tue, 27 May 2014 17:55:36 -0700 Subject: [PATCH] Fix MuxerOptions forward declaration MuxerOptions is a struct but was forward declared as class. This fixes the build when using clang. Change-Id: I3b99252bc86a71ced27cd12aa2ab828e10a025e5 --- app/packager_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/packager_common.h b/app/packager_common.h index 40517b8898..3b40cdcc5a 100644 --- a/app/packager_common.h +++ b/app/packager_common.h @@ -23,7 +23,7 @@ class EncryptionKeySource; class MediaInfo; class MediaStream; class Muxer; -class MuxerOptions; +struct MuxerOptions; /// Print all the stream info for the provided strings to standard output. void DumpStreamInfo(const std::vector& streams);