# HG changeset patch # User reimar # Date 1155771651 0 # Node ID 95ebc082c9189434f50d3c64ffa215e66c8698e6 # Parent ef3748be83ea8cad41dcbf5ae8ed37f49761d683 Simplistic attempt to make H.264 over RTSP work. Did not work for me, but reason is unclear. This at least moves things one step step closer to working diff -r ef3748be83ea -r 95ebc082c918 libmpdemux/demux_rtp_codec.cpp --- a/libmpdemux/demux_rtp_codec.cpp Wed Aug 16 23:36:33 2006 +0000 +++ b/libmpdemux/demux_rtp_codec.cpp Wed Aug 16 23:40:51 2006 +0000 @@ -42,6 +42,10 @@ bih->biCompression = sh_video->format = mmioFOURCC('H','2','6','3'); needVideoFrameRate(demuxer, subsession); + } else if (strcmp(subsession->codecName(), "H264") == 0) { + bih->biCompression = sh_video->format + = mmioFOURCC('H','2','6','4'); + needVideoFrameRate(demuxer, subsession); } else if (strcmp(subsession->codecName(), "H261") == 0) { bih->biCompression = sh_video->format = mmioFOURCC('H','2','6','1');