Crosspost from dm3x forum since I don't know if this is codec or hardware related...
I am having a problem with my DM368 (LeopardBoard LI-TB02) and a specific mpeg2 video. As far as I can tell, mpeg2dec is not decoding it correctly (I looked at the yuv).
The video I am trying to transcode is test.m2v, the one I am getting by transcode is test.264. test.264 is distorted...
My gstreamer pipeline is
gst-launch -v filesrc location=test.m2v ! TIViddec2 codecName=mpeg2dec engineName=codecServer ! TIVidenc1 framerate=25/1 byteStream=false codecName=h264enc engineName=codecServer ! capsfilter caps="video/x-h264,framerate=25/1,pixel-aspect-ratio=(fraction)1777/1222" ! mp4mux ! filesink location=test.264
Is there an obvious problem with my pipeline?