Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2ad2784

Browse files
author
Allison Durkan
committedMar 8, 2019
adding support for building and running unit tests for windows implementation h264 decoder
1 parent 19b7eaf commit 2ad2784

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎third_party/winuwp_h264/BUILD.gn

+3
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,7 @@ static_library("winuwp_h264") {
2929
"//system_wrappers:system_wrappers",
3030
]
3131

32+
if (is_win) {
33+
libs = ["runtimeobject.lib"]
34+
}
3235
}

‎third_party/winuwp_h264/H264Encoder/H264StreamSink.h

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ enum StreamOperation {
4242

4343
class H264MediaSink;
4444

45+
#pragma warning(disable : 4467)
4546
[uuid("4b35435f-44ae-44a0-9ba0-b84f9f4a9c19")]
4647
class IAsyncStreamSinkOperation : public IUnknown {
4748
public:

0 commit comments

Comments
 (0)
Please sign in to comment.