Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
schreibfaul1 committed Sep 9, 2024
1 parent a75337e commit fd5911c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mp3_decoder/mp3_decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1321,8 +1321,8 @@ int32_t MP3GetChannels(){return m_MP3FrameInfo->nChans;}
int32_t MP3GetBitsPerSample(){return m_MP3FrameInfo->bitsPerSample;}
int32_t MP3GetBitrate(){return m_MP3FrameInfo->bitrate;}
int32_t MP3GetOutputSamps(){return m_MP3FrameInfo->outputSamps;}
int32_t MP3GetLayer(){return m_MP3FrameInfo->layer;}
int32_t MP3GetVersion(){return m_MP3FrameInfo->version;}
int32_t MP3GetLayer(){return m_MP3FrameInfo->layer;} // 0: Reserviert, 1: Layer III, 2: Layer II, 3: Layer I
int32_t MP3GetVersion(){return m_MP3FrameInfo->version;} // 0: MPEG-2.5, 1: Reserviert, 2: MPEG-2 (ISO/IEC 13818-3), 3: MPEG-1 (ISO/IEC 11172-3)
/***********************************************************************************************************************
* Function: MP3GetNextFrameInfo
*
Expand Down

0 comments on commit fd5911c

Please sign in to comment.