This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # play YUV444 FULL HD file | |
| gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \ | |
| videoparse width=1920 height=1080 framerate=25/1 format=GST_VIDEO_FORMAT_Y444 ! \ | |
| videoconvert ! \ | |
| autovideosink | |
| # play YUV422 FULL HD file | |
| gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifdef _WIN64 | |
| //define something for Windows (64-bit) | |
| #elif _WIN32 | |
| //define something for Windows (32-bit) | |
| #elif __APPLE__ | |
| #include "TargetConditionals.h" | |
| #if TARGET_IPHONE_SIMULATOR | |
| // iOS Simulator | |
| #elif TARGET_OS_IPHONE | |
| // iOS device |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| freeGLUT for windows: http://www.cs.uregina.ca/Links/class-info/315/WWW/Lab1/GLUT/windows.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| glc_player: http://www.glc-player.net/download.php?PHPSESSID=7af8aae2aa8108721236cdc67b6a729c |