user182071
user182071

Reputation:

H264 decoder source code

I am looking for h264 decoder C/C++ source code with RTP packetization support. My embedded device is sending 640x480 encoded h264 RTP packet. I would like to make a Windows XP/Vista based video streaming display.

Where can I find the source code to this?

Upvotes: 4

Views: 20203

Answers (2)

Martin Beckett
Martin Beckett

Reputation: 96119

Videolan contains an implementation of h264 encoder (sorry - It uses ffmpeg to play back h264)

It's under the GPL and is a clean room implementation from the specs. Depending on your country there might also be patents on the decoder.

Upvotes: 1

Serafeim
Serafeim

Reputation: 15084

You should take a look at the h.264 reference implementation. RTP packetization is supported, and there are both an encoder and a decoder.

Upvotes: 5

Related Questions