implementing mpeg

Does anybody know how to implement mpeg video into an OpenGL program or could lead to me to some information about it?

–thanks

OpenGL does not support video of any kind. You will have to either use another library to decode the frames for you, or do it yourself. Once the frames are decoded, you can upload them as a texture, and map them onto a quad, for example.