Learning ffmpeg, I tested SDL output by the code below. I noticed that video played well but no audio.
ffmpeg -re -i INPUT -vcodec rawvideo -pix_fmt yuv420p -window_size qcif -f sdl "sdl out"
there was no sound. audio stream was not appeared in the sdl output, but only the video stream.
How can I make sdl output take audio stream as well as video stream? thank you