Added #1564, #1676, #1697 to changelog of video.

Added support of alpha channel
This commit is contained in:
Jindra Petřík
2022-12-05 22:12:37 +01:00
parent e2628d6baf
commit b941cbba04
2 changed files with 6 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file.
- AS3 - "internal" keyword support
- ProductInfo tag information display
- DebugId tag proper display and editation
- [#1893] Playback of DefineVideoStream tags with VLC player
- [#1564], [#1676], [#1697], [#1893] Display of DefineVideoStream tags with VLC player
### Fixed
- [#1897] Close menu button without selecting specific item
@@ -2705,6 +2705,9 @@ All notable changes to this project will be documented in this file.
[#1511]: https://www.free-decompiler.com/flash/issues/1511
[#1765]: https://www.free-decompiler.com/flash/issues/1765
[#1884]: https://www.free-decompiler.com/flash/issues/1884
[#1564]: https://www.free-decompiler.com/flash/issues/1564
[#1676]: https://www.free-decompiler.com/flash/issues/1676
[#1697]: https://www.free-decompiler.com/flash/issues/1697
[#1893]: https://www.free-decompiler.com/flash/issues/1893
[#1897]: https://www.free-decompiler.com/flash/issues/1897
[#1006]: https://www.free-decompiler.com/flash/issues/1006
@@ -2815,7 +2818,6 @@ All notable changes to this project will be documented in this file.
[#1466]: https://www.free-decompiler.com/flash/issues/1466
[#1513]: https://www.free-decompiler.com/flash/issues/1513
[#1657]: https://www.free-decompiler.com/flash/issues/1657
[#1676]: https://www.free-decompiler.com/flash/issues/1676
[#1660]: https://www.free-decompiler.com/flash/issues/1660
[#1669]: https://www.free-decompiler.com/flash/issues/1669
[#1668]: https://www.free-decompiler.com/flash/issues/1668

View File

@@ -184,7 +184,8 @@ public class SimpleMediaPlayer {
@Override
public BufferFormat getBufferFormat(int sourceWidth, int sourceHeight) {
return new RV32BufferFormat(sourceWidth, sourceHeight);
//return new RV32BufferFormat(sourceWidth, sourceHeight);
return new BufferFormat("BGRA", sourceWidth, sourceHeight, new int[] {sourceWidth * 4}, new int[] {sourceHeight});
}
@Override