[FFmpeg-soc] [soc]: r2920 - mxf/mxfenc.c
spyfeng
subversion at mplayerhq.hu
Wed Jul 30 16:11:23 CEST 2008
Author: spyfeng
Date: Wed Jul 30 16:11:23 2008
New Revision: 2920
Log:
fix mistake of former patch
Modified:
mxf/mxfenc.c
Modified: mxf/mxfenc.c
==============================================================================
--- mxf/mxfenc.c (original)
+++ mxf/mxfenc.c Wed Jul 30 16:11:23 2008
@@ -235,7 +235,7 @@ static void mxf_generate_uuid(AVFormatCo
}
// the 7th byte is version according to ISO 11578
uuid[6] &= 0x0f;
- uuid[6] &= 0x40;
+ uuid[6] |= 0x40;
// the 8th byte is variant for current use according to ISO 11578
uuid[8] &= 0x3f;
More information about the FFmpeg-soc
mailing list