company logo

MP3Header :: replaceFrame - Replace MP3 frame in header

Implementation overview

Implementation details

  1. Update MP3 frame text
    MP3Header  :: replaceFrame ( odaba::utils::MP3Frame &rMP3Frame )

    The function locates the first frame with the same identifier and replaces it with the frame passed in rMP3Frame .

    • rMP3Frame - Reference to MP3Frame handle
  2. to list
  3. Replace MP3 frame at position
    MP3Header  :: replaceFrame ( odaba::utils::MP3Frame &rMP3Frame, int32 iPosition )

    The function locates the frame at position passed in iPosition and replaces it with the frame passed in rMP3Frame .

    • rMP3Frame - Reference to MP3Frame handle
    • iPosition - Position in collection

      The position of an element in a collection is beginning with 0 for the first element.

  4. to list