# HG changeset patch # User nicodvb # Date 1171585805 0 # Node ID 7c9d838fc7883e90d8c4e74d76f27b988898e68b # Parent 4a958bd0892069d18b4fad68fa884e8bac329f6f support for H263-2000; patch by Carl Eugen Hoyos diff -r 4a958bd08920 -r 7c9d838fc788 libmpdemux/demux_rtp_codec.cpp --- a/libmpdemux/demux_rtp_codec.cpp Thu Feb 15 22:03:09 2007 +0000 +++ b/libmpdemux/demux_rtp_codec.cpp Fri Feb 16 00:30:05 2007 +0000 @@ -40,6 +40,7 @@ strcmp(subsession->codecName(), "MP2T") == 0) { flags |= RTPSTATE_IS_MPEG12_VIDEO|RTPSTATE_IS_MULTIPLEXED; } else if (strcmp(subsession->codecName(), "H263") == 0 || + strcmp(subsession->codecName(), "H263-2000") == 0 || strcmp(subsession->codecName(), "H263-1998") == 0) { bih->biCompression = sh_video->format = mmioFOURCC('H','2','6','3');