Skip to content

Commit 6797dea

Browse files
author
Clement Champetier
committed
print: fix build on Windows
Need to expose these methods in avtranscoder dlls (used by avmeta application).
1 parent 8a61653 commit 6797dea

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/AvTranscoder/mediaProperty/print.hpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
namespace avtranscoder
77
{
88

9-
std::ostream& operator<<( std::ostream& flux, const FileProperties& fileProperties );
9+
AvExport std::ostream& operator<<( std::ostream& flux, const FileProperties& fileProperties );
1010

11-
std::ostream& operator<<( std::ostream& flux, const StreamProperties& streamProperties );
11+
AvExport std::ostream& operator<<( std::ostream& flux, const StreamProperties& streamProperties );
1212

13-
std::ostream& operator<<( std::ostream& flux, const VideoProperties& videoProperties );
13+
AvExport std::ostream& operator<<( std::ostream& flux, const VideoProperties& videoProperties );
1414

15-
std::ostream& operator<<( std::ostream& flux, const AudioProperties& audioProperties );
15+
AvExport std::ostream& operator<<( std::ostream& flux, const AudioProperties& audioProperties );
1616

17-
std::ostream& operator<<( std::ostream& flux, const DataProperties& dataProperties );
17+
AvExport std::ostream& operator<<( std::ostream& flux, const DataProperties& dataProperties );
1818

19-
std::ostream& operator<<( std::ostream& flux, const SubtitleProperties& subtitleProperties );
19+
AvExport std::ostream& operator<<( std::ostream& flux, const SubtitleProperties& subtitleProperties );
2020

21-
std::ostream& operator<<( std::ostream& flux, const AttachementProperties& attachementProperties );
21+
AvExport std::ostream& operator<<( std::ostream& flux, const AttachementProperties& attachementProperties );
2222

23-
std::ostream& operator<<( std::ostream& flux, const UnknownProperties& unknownProperties );
23+
AvExport std::ostream& operator<<( std::ostream& flux, const UnknownProperties& unknownProperties );
2424

25-
std::ostream& operator<<( std::ostream& flux, const InputFile& input );
25+
AvExport std::ostream& operator<<( std::ostream& flux, const InputFile& input );
2626

2727
}
2828

0 commit comments

Comments
 (0)