Hi,
Iam trying to play .mp4 file (contains h264 and AAC) in Davinci 6446 using ti's gstreamer.
Iam able to play video and audio separately, the output is good
when I tried to play both audio and video, its getting decoded for the first frame and the decoder also returning true, then its going into the g_main_context_iteration function and hanging.
the pipeline command used:
gst-launch-0.10 filesrc location=$1 ! qtdemux name=t ! gdecoder Codec=0 ! fbvideosink device=/dev/fb/3 t. ! adecoder Codec=1 ! osssink and also tried
gst-launch-0.10 filesrc location=$1 ! qtdemux name=t ! queue max-size-buffers=60 ! gdecoder Codec=0 ! fbvideosink device=/dev/fb/3 t. ! queue max-size-buffers=180 ! adecoder Codec=1 ! osssink
I couldn't judge where is the wrong,
so if any one knows any clues plz share with me.
Thanks a lot.