MP3Header :: replaceFrame - Replace MP3 frame in header
Implementation overview
- Update MP3 frame text
MP3Header :: replaceFrame ( rMP3Frame ) - Replace MP3 frame at position
MP3Header :: replaceFrame ( rMP3Frame, iPosition ) 
Implementation details
- 
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
 
to list
 - 
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.
 
to list
 

