Skip to content

Commit b7a78a5

Browse files
kiddkaffeineflibitijibibo
authored andcommitted
Allow YUV-to-RGB conversion to be easily reused in other video players
1 parent 4400b64 commit b7a78a5

File tree

7 files changed

+389
-332
lines changed

7 files changed

+389
-332
lines changed

FNA.Core.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,7 @@
327327
<Compile Include="src\Media\SongCollection.cs" />
328328
<Compile Include="src\Media\VideoSoundtrackType.cs" />
329329
<Compile Include="src\Media\VisualizationData.cs" />
330+
<Compile Include="src\Media\Xiph\BaseYUVPlayer.cs" />
330331
<Compile Include="src\Media\Xiph\Video.cs" />
331332
<Compile Include="src\Media\Xiph\VideoPlayer.cs" />
332333
<Compile Include="src\NamespaceDocs.cs" />

FNA.NetFramework.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@
328328
<Compile Include="src\Media\SongCollection.cs" />
329329
<Compile Include="src\Media\VideoSoundtrackType.cs" />
330330
<Compile Include="src\Media\VisualizationData.cs" />
331+
<Compile Include="src\Media\Xiph\BaseYUVPlayer.cs" />
331332
<Compile Include="src\Media\Xiph\Video.cs" />
332333
<Compile Include="src\Media\Xiph\VideoPlayer.cs" />
333334
<Compile Include="src\NamespaceDocs.cs" />

FNA.NetStandard.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,7 @@
326326
<Compile Include="src\Media\SongCollection.cs" />
327327
<Compile Include="src\Media\VideoSoundtrackType.cs" />
328328
<Compile Include="src\Media\VisualizationData.cs" />
329+
<Compile Include="src\Media\Xiph\BaseYUVPlayer.cs" />
329330
<Compile Include="src\Media\Xiph\Video.cs" />
330331
<Compile Include="src\Media\Xiph\VideoPlayer.cs" />
331332
<Compile Include="src\NamespaceDocs.cs" />

FNA.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,7 @@
398398
<Compile Include="src\Media\SongCollection.cs" />
399399
<Compile Include="src\Media\VideoSoundtrackType.cs" />
400400
<Compile Include="src\Media\VisualizationData.cs" />
401+
<Compile Include="src\Media\Xiph\BaseYUVPlayer.cs" />
401402
<Compile Include="src\Media\Xiph\Video.cs" />
402403
<Compile Include="src\Media\Xiph\VideoPlayer.cs" />
403404
<Compile Include="src\NamespaceDocs.cs" />

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ SRC = \
311311
src/Media/SongCollection.cs \
312312
src/Media/VideoSoundtrackType.cs \
313313
src/Media/VisualizationData.cs \
314+
src/Media/Xiph/BaseYUVPlayer.cs \
314315
src/Media/Xiph/Video.cs \
315316
src/Media/Xiph/VideoPlayer.cs \
316317
src/NamespaceDocs.cs \

0 commit comments

Comments
 (0)