Hi, I notice the general decoding process is as following: main() { .......... decode_video(...); flip_page(); ............ } decode_video(...) { decode(); put_image(); } My question is what will put_image() do? will it draw the frame just decoded? If yes, what's the function of flip_page() in main()? Thank you very much!! Max