CSharpRTMP.Core.MediaFormats.mp4.boxes.AtomILST.AtomCreated C# (CSharp) Method

AtomCreated() public method

public AtomCreated ( BaseAtom atom ) : void
atom BaseAtom
return void
        public override void AtomCreated(BaseAtom atom)
        {
            switch (atom.Type)
            {
                case _NAM:
                case CPIL:
                case PGAP:
                case TMPO:
                case _TOO:
                case _ART1:
                case _ART2:
                case _PRT:
                case _ALB:
                case GNRE:
                case TRKN:
                case _DAY:
                case DISK:
                case _CMT:
                case COVR:
                case AART:
                case _WRT:
                case _GRP:
                case _LYR:
                case DESC:
                case TVSH:
                case TVEN:
                case TVSN:
                case TVES:
                case _DES:
                    _metaFields.Add((AtomMetaField ) atom);
                    break;
            }
        }
    }