avcodec/opus: fix doxygen comments to be associated with the correct fields

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-05-15 22:41:52 +02:00
parent e9602dcb4d
commit 7a4424e5ed
1 changed files with 12 additions and 12 deletions

View File

@ -95,19 +95,19 @@ typedef struct SilkContext SilkContext;
typedef struct CeltContext CeltContext; typedef struct CeltContext CeltContext;
typedef struct OpusPacket { typedef struct OpusPacket {
int packet_size; /** packet size */ int packet_size; /**< packet size */
int data_size; /** size of the useful data -- packet size - padding */ int data_size; /**< size of the useful data -- packet size - padding */
int code; /** packet code: specifies the frame layout */ int code; /**< packet code: specifies the frame layout */
int stereo; /** whether this packet is mono or stereo */ int stereo; /**< whether this packet is mono or stereo */
int vbr; /** vbr flag */ int vbr; /**< vbr flag */
int config; /** configuration: tells the audio mode, int config; /**< configuration: tells the audio mode,
** bandwidth, and frame duration */ ** bandwidth, and frame duration */
int frame_count; /** frame count */ int frame_count; /**< frame count */
int frame_offset[MAX_FRAMES]; /** frame offsets */ int frame_offset[MAX_FRAMES]; /**< frame offsets */
int frame_size[MAX_FRAMES]; /** frame sizes */ int frame_size[MAX_FRAMES]; /**< frame sizes */
int frame_duration; /** frame duration, in samples @ 48kHz */ int frame_duration; /**< frame duration, in samples @ 48kHz */
enum OpusMode mode; /** mode */ enum OpusMode mode; /**< mode */
enum OpusBandwidth bandwidth; /** bandwidth */ enum OpusBandwidth bandwidth; /**< bandwidth */
} OpusPacket; } OpusPacket;
typedef struct OpusStreamContext { typedef struct OpusStreamContext {