4

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?

GEOCHET
  • 21,119
  • 15
  • 74
  • 98

2 Answers2

5

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

Serafeim
  • 14,962
  • 14
  • 91
  • 133
1

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.

Martin Beckett
  • 94,801
  • 28
  • 188
  • 263