Trying to track down an issue I'm having when modifying the hello_encode example file. When compiled as-is, it works and the test image is visible. I'm attempting to modify the code to use real video data, but am running int an odd issue.
In the code, I've changed this line:
- Code: Select all
def.format.video.eColorFormat = OMX_COLOR_FormatYUV420PackedPlanar;
to this:
- Code: Select all
def.format.video.eColorFormat = OMX_COLOR_FormatYUV420Planar;
When the resulting binary is executed, it stops after the second print_def statement, with the following output:
- Code: Select all
Port 200: in 1/1 15360 16 disabled,not pop.,not cont. 160x64 160x64 @1966080 20
Port 200: in 1/1 15360 16 disabled,not pop.,not cont. 640x480 640x480 @1966080 19
Any ideas on this one?