コード例 #1
0
        public void TestFormattedAttributeValueAsString()
        {
            Assert.AreEqual(FormattedAttributeValueAsString, _formattedAttribute.ValueAsString, "ValueAsString (hex format)");
            FormattedAttribute <string, uint> attribute = new FormattedAttribute <string, uint>(AttributeName, AttributeValue);

            Assert.AreEqual(AttributeValueAsString, attribute.ValueAsString, "ValueAsString (default format)");
        }
コード例 #2
0
        public override bool Parse(Mpeg4Parser parser)
        {
            if (!base.Parse(parser))
            {
                return(false);
            }

            uint hour   = parser.GetBits(5);
            uint minute = parser.GetBits(6);

            bool markerBit          = parser.GetMarkerBit();
            var  markerBitAttribute = new FormattedAttribute <Attribute, bool>(Attribute.MarkerBit, markerBit);

            if (markerBit == false)
            {
                markerBitAttribute.Valid = false;
            }
            Attributes.Add(markerBitAttribute);

            uint seconds = parser.GetBits(6);

            long timeCode = seconds + minute * 60 + hour * 3600;

            Attributes.Add(new FormattedAttribute <Attribute, long>(Attribute.TimeCode, timeCode));
            Attributes.Add(new FormattedAttribute <Attribute, string>(Attribute.Time, string.Format(CultureInfo.InvariantCulture, "{0}:{1}:{2}", hour.ToString("D2", CultureInfo.InvariantCulture), minute.ToString("D2", CultureInfo.InvariantCulture), seconds.ToString("D2", CultureInfo.InvariantCulture))));

            /*bool closedGov = */ parser.GetBit(Attribute.ClosedGov);
            /*bool brokenLink = */ parser.GetBit(Attribute.BrokenLink);

            return(true);
        }
コード例 #3
0
        public void TestName()
        {
            FormattedAttribute <MockAttributeNameEnum, uint> attributeEnum = new FormattedAttribute <MockAttributeNameEnum, uint>(MockAttributeNameEnum.MyEnumFirst, AttributeValue);

            Assert.AreEqual("MyEnumFirst", attributeEnum.Name, "Attribute.Name (enum)");
            FormattedAttribute <string, uint> attributeString = new FormattedAttribute <string, uint>(AttributeName, AttributeValue);

            Assert.AreEqual(AttributeName, attributeString.Name, "Attribute.Name (string)");
        }
コード例 #4
0
        public void TestFindAttributeByName()
        {
            Assert.IsNull(_root.FindAttributeByName(AttributeName), "FindAttributeByName (no attribute)");
            Assert.IsNull(_header.FindAttributeByName(AttributeName), "FindAttributeByName (no attribute)");
            IResultAttribute attribute = new FormattedAttribute <string, int>(AttributeName, 512);

            _header.Attributes.Add(attribute);
            Assert.AreSame(attribute, _header.FindAttributeByName(AttributeName), "FindAttributeByName");
            Assert.IsNull(_header.FindAttributeByName("MyDummyName"), "FindAttributeByName (not listed)");
        }
コード例 #5
0
        public int GetTenBytes <T>(T attributeName)
        {
            int numBytes = (int)Math.Min(10, (Length - Position));

            Position += numBytes;
            FormattedAttribute <T, int> attribute = new FormattedAttribute <T, int>(attributeName, numBytes);

            attribute.Valid = (numBytes == 10);
            AddAttribute(attribute);
            return(numBytes);
        }
コード例 #6
0
        public override bool Parse(Mpeg4Parser parser)
        {
            if (!base.Parse(parser))
            {
                return(false);
            }

            bool isIdentifier = parser.GetBit(Attribute.Identifier);

            if (isIdentifier)
            {
                byte   versionID          = (byte)parser.GetBits(4);
                var    versionIDAttribute = new FormattedAttribute <Attribute, uint>(Attribute.VersionID, versionID);
                byte[] validVersionIDs    = new byte[] { 1, 2, 4, 5 };
                if (!validVersionIDs.Contains(versionID))
                {
                    versionIDAttribute.Valid = false;
                }
                parser.AddAttribute(versionIDAttribute);

                parser.GetBits(3, Attribute.Priority);
            }
            else
            {
                VersionId = 1;
            }
            uint type = parser.GetBits(4, Attribute.Type);

            if (type > (uint)ObjectType.Mesh_3D)
            {
                return(false);
            }

            if (type == (uint)ObjectType.Video || type == (uint)ObjectType.Texture)
            {                   // Parse video signal type
                bool isVideoSignalType = parser.GetBit(Attribute.VideoSignalType);
                if (isVideoSignalType)
                {
                    byte videoFormat = (byte)parser.GetBits(3);
                    parser.AddAttribute(new FormattedAttribute <Attribute, string>(Attribute.VideoFormat, string.Format(CultureInfo.CurrentCulture, "{0} ({1})", videoFormat.ToString(CultureInfo.CurrentCulture), Enum.GetName(typeof(VideoFormat), videoFormat))));

                    parser.GetBit(Attribute.VideoRange);

                    bool colourDescription = parser.GetBit(Attribute.ColourDescription);
                    if (colourDescription)
                    {
                        parser.GetBits(8, Attribute.ColourPrimaries);
                        parser.GetBits(8, Attribute.TransferCharacteristics);
                        parser.GetBits(8, Attribute.MatrixCoefficients);
                    }
                }
            }
            return(true);
        }
コード例 #7
0
 public void TearDown()
 {
     _formattedAttribute = null;
     _optionAttribute    = null;
     _fourCcAttribute    = null;
     _compositeAttribute = null;
     _fourCCWithOptionalDescriptionAttributeInRange      = null;
     _fourCCWithOptionalDescriptionAttributeOutsideRange = null;
     _fourCCWithOptionalDescriptionAttributeDescriptions = null;
     _shortOptionalDescriptionAttributeDescriptions      = null;
 }
コード例 #8
0
        public void AddAttribute <TName>(TName name, object value, IResultFormatter formatter)
        {
            var attribute = new FormattedAttribute <TName, object>(name, value, formatter);

            var validityResultFormatter = formatter as IValidityResultFormatter;

            if ((validityResultFormatter != null) && !validityResultFormatter.IsValid(value))
            {
                attribute.Valid = false;

                Invalidate();
            }

            _resultBuilder.AddAttribute(attribute);
        }
コード例 #9
0
        private void AddDateTimeAttribute <T>(T attributeName, string format, ulong seconds)
        {
            DateTime baseTime = DetermineBaseTime(seconds);

            try
            {
                AddAttribute(new FormattedAttribute <T, DateTime>(attributeName, baseTime.AddSeconds(seconds), format));
            }
            catch (ArgumentOutOfRangeException e)
            {
                IResultAttribute attribute = new FormattedAttribute <T, DateTime>(attributeName, baseTime, format);
                AddAttribute(attribute);
                attribute.Valid = false; // The date/time field is shown as invalid, but the result is not discarded!
            }
        }
コード例 #10
0
        public void SetUp()
        {
            _formattedAttribute = new FormattedAttribute <string, uint>(AttributeName, AttributeValue, FormattedAttributeFormat);
            _optionAttribute    = new OptionAttribute <string>(AttributeName, OptionAttributeValue, OptionAttributeOptions, false);
            _fourCcAttribute    = new FourCCAttribute <string>(AttributeName, AttributeValue);
            _compositeAttribute = new MockCompositeAttribute(AttributeName, AttributeValue);

            _fourCCWithOptionalDescriptionAttributeDescriptions = new Dictionary <uint, Option>();
            foreach (Option option in Enum.GetValues(typeof(Option)))
            {
                _fourCCWithOptionalDescriptionAttributeDescriptions.Add((uint)option, option);
            }
            _fourCCWithOptionalDescriptionAttributeInRange      = new FourCCWithOptionalDescriptionAttribute <string, Option>(AttributeName, FourCCAttributeValueInRange, _fourCCWithOptionalDescriptionAttributeDescriptions);
            _fourCCWithOptionalDescriptionAttributeOutsideRange = new FourCCWithOptionalDescriptionAttribute <string, Option>(AttributeName, FourCCAttributeValueOutsideRange, _fourCCWithOptionalDescriptionAttributeDescriptions);

            _shortOptionalDescriptionAttributeDescriptions = new Dictionary <ushort, ShortOption>();
            foreach (ShortOption shortOption in Enum.GetValues(typeof(ShortOption)))
            {
                _shortOptionalDescriptionAttributeDescriptions.Add((ushort)shortOption, shortOption);
            }
        }
コード例 #11
0
        //private static bool HeaderIsShortVideo(ByteStreamDataReader dataReader, long offset)
        //{
        //    dataReader.Position = offset;
        //    byte[] bytes = new byte[3];
        //    dataReader.Read(bytes, 0, 3);
        //    return ((bytes[0] == 0x00) && (bytes[1] == 0x00) && ((bytes[2] & 0xFC) == 0x80));
        //}

        public override bool Parse(Mpeg4Parser parser)
        {
            if (InVop)
            {
                IsShortVideoHeader          = true;
                QuantPrecision              = 5;
                VideoShape                  = Shape.Rectangular;
                ResyncMarkerDisable         = true;
                DataPartitioned             = false;
                _reversible_vlc             = false;
                Interlaced                  = false;
                ComplexityEstimationDisable = true;
                Scalability                 = false;
                VopTimeIncrementResolution  = 30000;

                return(true);
            }

            if (!base.Parse(parser))
            {
                return(false);
            }

            if (StartCode < 0x120 || StartCode > 0x12F)
            {
                //mp4_Error("Error: Bad start code for VideoObjectLayerLayer");
                return(false);
            }

            // Found video_object_start_code
            parser.AddAttribute(new FormattedAttribute <Attribute, uint>(Attribute.ID, StartCode & 15));

            IsShortVideoHeader = false;
            parser.GetBit(Attribute.RandomAccessibleVol);

            /*byte typeIndication = (byte)*/ parser.GetBits(8, Attribute.TypeIndication);
            //if (typeIndication == FineGranularityScalable)
            //{
            //	TODO add branch for type indication value
            //}
            //else
            //{

            bool isIdentifier = parser.GetBit();

            uint verid = 0;

            if (isIdentifier == true)
            {
                verid = parser.GetBits(4);

                if ((verid != 1) && (verid != 2) && (verid != 4) && (verid != 5))
                {
                    var verIDAttribute = new FormattedAttribute <Attribute, string>(Attribute.VerID, string.Format(CultureInfo.CurrentCulture, "Invalid value found: {0}. It should be 1, 2, 4 or 5. Assuming '1'.", verid));
                    verIDAttribute.Valid = false;

                    //mp4_Error("Warning: invalid version number in VOL");
                    verid = 1;
                }
                else
                {
                    parser.AddAttribute(new FormattedAttribute <Attribute, uint>(Attribute.VerID, verid));
                }
                parser.GetBits(3, Attribute.Priority);
            }
            else
            {
                verid = 1;
            }

            byte   aspectRatioInfo = (byte)parser.GetBits(4);
            string aspectRatioName = Enum.IsDefined(typeof(PixelAspectRatio), aspectRatioInfo) ? Enum.GetName(typeof(PixelAspectRatio), aspectRatioInfo) : "Reserved";

            parser.AddAttribute(new FormattedAttribute <Attribute, string>(Attribute.AspectRatioInfo, string.Format(CultureInfo.CurrentCulture, "{0} ({1})", aspectRatioInfo.ToString(CultureInfo.CurrentCulture), aspectRatioName)));

            if (aspectRatioInfo == (uint)PixelAspectRatio.ExtentedPar)
            {
                parser.GetBits(8, Attribute.AspectRatioInfoParWidth);
                parser.GetBits(8, Attribute.AspectRatioInfoParHeight);
            }
            bool isVolControlParameters = parser.GetBit(Attribute.VolControlParameters);

            if (isVolControlParameters == true)
            {
                const int ChromaFormat420 = 1;

                uint chromaFormat = parser.GetBits(2, Attribute.ChromaFormat);

                if (chromaFormat != ChromaFormat420)
                {
                    //mp4_Error("Error: vol_control_parameters.chroma_format != 4:2:0");
                    return(false);
                }

                parser.GetBit(Attribute.LowDelay);

                bool vbvParameters = parser.GetBit(Attribute.VbvParameters);
                if (vbvParameters)
                {
                    uint bitRate = parser.GetBits(15);
                    bitRate <<= 15;

                    if (!parser.GetMarkerBit())
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                    //_VOLControlParameters.bit_rate += Utils.GetBits(15);
                    bitRate += parser.GetBits(15);
                    parser.AddAttribute(new FormattedAttribute <Attribute, uint>(Attribute.BitRate, bitRate));

                    if (!parser.GetMarkerBit())
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                    if (bitRate == 0)
                    {
                        //mp4_Error("Error: vbv_parameters bit_rate == 0");
                        return(false);
                    }
                    uint vbvBufferSize = parser.GetBits(15);
                    vbvBufferSize <<= 3;

                    if (!parser.GetMarkerBit())
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                    vbvBufferSize += parser.GetBits(3);
                    if (vbvBufferSize == 0)
                    {
                        //mp4_Error("Error: vbv_parameters vbv_buffer_size == 0");
                        return(false);
                    }
                    parser.AddAttribute(new FormattedAttribute <Attribute, uint>(Attribute.VbvBufferSize, vbvBufferSize));

                    uint vbvOccupancy = parser.GetBits(11);
                    vbvOccupancy <<= 15;

                    if (!parser.GetMarkerBit())
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                    vbvOccupancy += parser.GetBits(15);

                    if (!parser.GetMarkerBit())
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                }
            }
            const int ShapeExtNum = 13;

            this.VideoShape = (Shape)parser.GetBits(2);
            parser.AddAttribute(new FormattedAttribute <Attribute, string>(Attribute.Shape, string.Format(CultureInfo.CurrentCulture, "{0} ({1})", (int)VideoShape, Enum.GetName(typeof(Shape), (byte)this.VideoShape))));

            if (verid != 1 && VideoShape == Shape.Grayscale)
            {
                ShapeExtension = parser.GetBits(4, Attribute.ShapeExtension);
                if (ShapeExtension >= ShapeExtNum)
                {
                    //mp4_Error("Error: wrong value for video_object_layer_shape_extension");
                    return(false);
                }
            }
            else
            {
                ShapeExtension = ShapeExtNum;
                parser.AddAttribute(new FormattedAttribute <Attribute, uint>(Attribute.ShapeExtension, ShapeExtension));
            }
            if (!parser.GetMarkerBit())
            {
                // Does not appear to be a mp4 VOL header
                return(false);
            }
            VopTimeIncrementResolution = parser.GetBits(16, Attribute.VopTimeIncrementResolution);
            if (VopTimeIncrementResolution == 0)
            {
                //mp4_Error("Error: wrong value for vop_time_increment_resolution");
                return(false);
            }
            if (!parser.GetMarkerBit())
            {
                // Does not appear to be a mp4 VOL header
                return(false);
            }
            // define number bits in vop_time_increment_resolution
            uint numBits = VopTimeIncrementResolution - 1;
            uint i       = 0;

            do
            {
                numBits >>= 1;
                i++;
            } while (numBits > 0);
            VopTimeIncrementResolutionBits = (short)i;
            bool fixedVopRate = parser.GetBit(Attribute.FixedVopRate);

            if (fixedVopRate == true)
            {
                parser.GetBits((int)VopTimeIncrementResolutionBits, Attribute.FixedVopTimeIncrement);
            }
            if (VideoShape != Shape.BinaryOnly)
            {
                if (VideoShape == Shape.Rectangular)
                {
                    if (!parser.GetMarkerBit())
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                    Width = parser.GetBits(13, Attribute.Width);
                    if (!parser.GetMarkerBit() || Width == 0)
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                    Height = parser.GetBits(13, Attribute.Height);
                    if (!parser.GetMarkerBit() || Height == 0)
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                }
                Interlaced = parser.GetBit(Attribute.Interlaced);
                parser.GetBit(Attribute.ObmcDisable);
                SpriteEnable = parser.GetBits((short)(verid != 1 ? 2 : 1), Attribute.SpriteEnable);
                const int SpriteStatic = 1;
                const int SpriteGmc    = 2;
                if (SpriteEnable == SpriteStatic || SpriteEnable == SpriteGmc)
                {
                    if (SpriteEnable == SpriteStatic)
                    {
                        parser.GetBits(13, Attribute.SpriteWidth);
                        if (!parser.GetMarkerBit())
                        {
                            // Does not appear to be a mp4 VOL header
                            return(false);
                        }
                        parser.GetBits(13, Attribute.SpriteHeight);
                        if (!parser.GetMarkerBit())
                        {
                            // Does not appear to be a mp4 VOL header
                            return(false);
                        }
                        uint sprite_left_coordinate = parser.GetBits(13);
                        sprite_left_coordinate <<= (32 - 13);
                        sprite_left_coordinate >>= (32 - 13);
                        if ((sprite_left_coordinate & 1) > 0)
                        {
                            //mp4_Error("Error: sprite_left_coordinate must be divisible by 2");
                            return(false);
                        }
                        if (!parser.GetMarkerBit())
                        {
                            // Does not appear to be a mp4 VOL header
                            return(false);
                        }
                        uint sprite_top_coordinate = parser.GetBits(13);
                        sprite_top_coordinate <<= (32 - 13);
                        sprite_top_coordinate >>= (32 - 13);
                        if ((sprite_top_coordinate & 1) > 0)
                        {
                            //mp4_Error("Error: sprite_top_coordinate must be divisible by 2");
                            return(false);
                        }
                        if (!parser.GetMarkerBit())
                        {
                            // Does not appear to be a mp4 VOL header
                            return(false);
                        }
                    }
                    SpriteWarpingPoints = parser.GetBits(6, Attribute.SpriteWarpingPoints);
                    if (SpriteWarpingPoints > 4 ||
                        (SpriteWarpingPoints == 4 &&
                         SpriteEnable == SpriteGmc))
                    {
                        //mp4_Error("Error: bad no_of_sprite_warping_points");
                        return(false);
                    }
                    parser.GetBits(2, Attribute.SpriteWarpingAccuracy);
                    SpriteBrightnessChange = parser.GetBit(Attribute.SpriteBrightnessChange);
                    if (SpriteEnable == SpriteGmc)
                    {
                        if (SpriteBrightnessChange == true)
                        {
                            //mp4_Error("Error: sprite_brightness_change should be 0 for GMC sprites");
                            return(false);
                        }
                    }
                    if (SpriteEnable != SpriteGmc)
                    {
                        LowLatencySpriteEnabled = parser.GetBit(Attribute.LowLatencySpriteEnable);
                    }
                }
                if (verid != 1 && VideoShape != Shape.Rectangular)
                {
                    parser.GetBit(Attribute.SADctDisable);
                }
                bool not8Bit = parser.GetBit(Attribute.Not8bit);
                if (not8Bit == true)
                {
                    QuantPrecision = (short)parser.GetBits(4, Attribute.QuantPrecision);
                    if (QuantPrecision < 3 || QuantPrecision > 9)
                    {
                        //mp4_Error("Error: quant_precision must be in range [3; 9]");
                        return(false);
                    }
                    uint bits_per_pixel = parser.GetBits(4, Attribute.BitsPerPixel);
                    if (bits_per_pixel < 4 || bits_per_pixel > 12)
                    {
                        //mp4_Error("Error: bits_per_pixel must be in range [4; 12]");
                        return(false);
                    }
                }
                else
                {
                    QuantPrecision = 5;
                    parser.AddAttribute(new FormattedAttribute <Attribute, short>(Attribute.QuantPrecision, QuantPrecision));
                    parser.AddAttribute(new FormattedAttribute <Attribute, short>(Attribute.BitsPerPixel, 8));
                }
                if (VideoShape == Shape.Grayscale)
                {
                    parser.GetBit(Attribute.NoGrayQuantUpdate);
                    parser.GetBit(Attribute.CompositionMethod);
                    parser.GetBit(Attribute.LinearComposition);
                }
                bool quantType = parser.GetBit(Attribute.QuantType);
                if (quantType == true)
                {
                    bool   loadIntraQuantMat = parser.GetBit(Attribute.LoadIntraQuantMat);
                    byte[] intraQuantMat     = new byte[64];
                    if (loadIntraQuantMat == true)
                    {
                        if (ParseQuantMatrix(parser, ref intraQuantMat) != 0)
                        {
                            return(false);
                        }
                    }
                    else
                    {
                        mp4_DefaultIntraQuantMatrix.CopyTo(intraQuantMat, 0);
                    }

                    bool   loadNonintraQuantMat = parser.GetBit();
                    byte[] nonintraQuantMat     = new byte[64];
                    if (loadNonintraQuantMat == true)
                    {
                        if (ParseQuantMatrix(parser, ref nonintraQuantMat) != 0)
                        {
                            return(false);
                        }
                    }
                    else
                    {
                        mp4_DefaultNonIntraQuantMatrix.CopyTo(nonintraQuantMat, 0);
                    }
                    if (VideoShape == Shape.Grayscale)
                    {
                        int ac;
                        int index = 0;

                        ac = mp4_aux_comp_count[ShapeExtension];
                        bool[] loadIntraQuantMatGrayscale    = new bool[3];
                        bool[] loadNonintraQuantMatGrayscale = new bool[3];
                        for (index = 0; index < ac; index++)
                        {
                            loadIntraQuantMatGrayscale[index] = parser.GetBit(Attribute.LoadIntraQuantMatGrayscale);
                            if (loadIntraQuantMatGrayscale[index] == true)
                            {
                                if (ParseQuantMatrix(parser, ref _intra_quant_mat_grayscale[index]) != 1)
                                {
                                    return(false);
                                }
                            }
                            else
                            {
                                mp4_DefaultIntraQuantMatrix.CopyTo(_intra_quant_mat_grayscale[index], 0);
                            }
                            loadNonintraQuantMatGrayscale[index] = parser.GetBit(Attribute.LoadNonintraQuantMatGrayscale);
                            if (loadNonintraQuantMatGrayscale[index] == true)
                            {
                                if (ParseQuantMatrix(parser, ref _nonintra_quant_mat_grayscale[index]) != 1)
                                {
                                    return(false);
                                }
                            }
                            else
                            {
                                mp4_DefaultNonIntraQuantMatrix.CopyTo(_nonintra_quant_mat_grayscale[index], 0);
                            }
                        }
                    }
                }
                if (verid != 1)
                {
                    parser.GetBit(Attribute.QuarterSample);
                }
                ComplexityEstimationDisable = parser.GetBit();
                if (ComplexityEstimationDisable == false)
                {
                    _complexityEstimation.estimation_method = parser.GetBits(2, Attribute.EstimationMethod);
                    if (_complexityEstimation.estimation_method <= 1)
                    {
                        _complexityEstimation.shape_complexity_estimation_disable = parser.GetBit();
                        if (_complexityEstimation.shape_complexity_estimation_disable == false)
                        {
                            _complexityEstimation.opaque      = parser.GetBit(Attribute.Opaque);
                            _complexityEstimation.transparent = parser.GetBit(Attribute.Transparent);
                            _complexityEstimation.intra_cae   = parser.GetBit(Attribute.IntraCae);
                            _complexityEstimation.inter_cae   = parser.GetBit(Attribute.InterCae);
                            _complexityEstimation.no_update   = parser.GetBit(Attribute.NoUpdate);
                            _complexityEstimation.upsampling  = parser.GetBit(Attribute.Upsampling);
                        }
                        _complexityEstimation.texture_complexity_estimation_set_1_disable = parser.GetBit(Attribute.TextureComplexityEstimationSet1Disable);
                        if (_complexityEstimation.texture_complexity_estimation_set_1_disable == false)
                        {
                            _complexityEstimation.intra_blocks     = parser.GetBit(Attribute.IntraBlocks);
                            _complexityEstimation.inter_blocks     = parser.GetBit(Attribute.InterBlocks);
                            _complexityEstimation.inter4v_blocks   = parser.GetBit(Attribute.Inter4vBlocks);
                            _complexityEstimation.not_coded_blocks = parser.GetBit(Attribute.NotCodedBlocks);
                        }
                        if (!parser.GetMarkerBit())
                        {
                            // Does not appear to be a mp4 VOL header
                            return(false);
                        }
                        _complexityEstimation.texture_complexity_estimation_set_2_disable = parser.GetBit(Attribute.TextureComplexityEstimationSet2Disable);
                        if (_complexityEstimation.texture_complexity_estimation_set_2_disable == false)
                        {
                            _complexityEstimation.dct_coefs   = parser.GetBit(Attribute.DctCoefs);
                            _complexityEstimation.dct_lines   = parser.GetBit(Attribute.DctLines);
                            _complexityEstimation.vlc_symbols = parser.GetBit(Attribute.VlcSymbols);
                            _complexityEstimation.vlc_bits    = parser.GetBit(Attribute.VlcBits);
                        }
                        _complexityEstimation.motion_compensation_complexity_disable = parser.GetBit(Attribute.MotionCompensationComplexityDisable);
                        if (_complexityEstimation.motion_compensation_complexity_disable == false)
                        {
                            _complexityEstimation.apm = parser.GetBit(Attribute.Apm);
                            _complexityEstimation.npm = parser.GetBit(Attribute.Npm);
                            _complexityEstimation.interpolate_mc_q = parser.GetBit(Attribute.InterpolateMcQ);
                            _complexityEstimation.forw_back_mc_q   = parser.GetBit(Attribute.ForwBackMcQ);
                            _complexityEstimation.halfpel2         = parser.GetBit(Attribute.Halfpel2);
                            _complexityEstimation.halfpel4         = parser.GetBit(Attribute.Halfpel4);
                        }
                    }
                    if (!parser.GetMarkerBit())
                    {
                        // Does not appear to be a mp4 VOL header
                        return(false);
                    }
                    if (_complexityEstimation.estimation_method == 1)
                    {
                        // verid != 1
                        _complexityEstimation.version2_complexity_estimation_disable = parser.GetBit(Attribute.Version2ComplexityEstimationDisable);
                        if (_complexityEstimation.version2_complexity_estimation_disable == false)
                        {
                            _complexityEstimation.sadct      = parser.GetBit(Attribute.Sadct);
                            _complexityEstimation.quarterpel = parser.GetBit(Attribute.Quarterpel);
                        }
                    }
                }
                ResyncMarkerDisable = parser.GetBit(Attribute.ResyncMarkerDisable);
                DataPartitioned     = parser.GetBit(Attribute.DataPartitioned);
                //f GrayScale Shapes does not support data_part
                if (DataPartitioned == true)
                {
                    _reversible_vlc = parser.GetBit(Attribute.ReversibleVlc);
                }
                if (verid != 1)
                {
                    NewPredEnable = parser.GetBit(Attribute.NewPredEnable);
                    if (NewPredEnable == true)
                    {
                        parser.GetBits(2, Attribute.RequestedUpstreamMessageType);
                        parser.GetBit(Attribute.NewpredSegmentType);
                    }
                    ReducedResolutionVopEnable = parser.GetBit(Attribute.ReducedResolutionVopEnable);
                }
                bool scalability = parser.GetBit(Attribute.Scalability);
                if (scalability == true)
                {
                    parser.FlushBits(26);
                    EnhancementType = parser.GetBit(Attribute.EnhancementType);
                }
            }
            else
            {
                if (verid != 1)
                {
                    Scalability = parser.GetBit(Attribute.Scalability);
                    if (Scalability == true)
                    {
                        parser.FlushBits(24);
                    }
                }
                this.ResyncMarkerDisable = parser.GetBit();
            }

            //_VideoObjectLayerPlane.sprite_transmit_mode = Sprite.MP4_SPRITE_TRANSMIT_MODE_PIECE;
            return(true);
        }