#include "libavutil/intreadwrite.h"#include "avcodec.h"Go to the source code of this file.
| Data Structures | |
| struct | S302MDecodeContext | 
| Defines | |
| #define | AES3_HEADER_LEN 4 | 
| Functions | |
| static int | s302m_parse_frame_header (AVCodecContext *avctx, const uint8_t *buf, int buf_size) | 
| static int | s302m_decode_frame (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) | 
| static int | s302m_decode_init (AVCodecContext *avctx) | 
| Variables | |
| AVCodec | ff_s302m_decoder | 
| #define AES3_HEADER_LEN 4 | 
Definition at line 26 of file s302m.c.
Referenced by s302m_decode_frame(), and s302m_parse_frame_header().
| static int s302m_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | got_frame_ptr, | |||
| AVPacket * | avpkt | |||
| ) |  [static] | 
| static int s302m_decode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
| static int s302m_parse_frame_header | ( | AVCodecContext * | avctx, | |
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) |  [static] | 
Initial value:
 {
    .name           = "s302m",
    .type           = AVMEDIA_TYPE_AUDIO,
    .id             = CODEC_ID_S302M,
    .priv_data_size = sizeof(S302MDecodeContext),
    .init           = s302m_decode_init,
    .decode         = s302m_decode_frame,
    .capabilities   = CODEC_CAP_DR1,
    .long_name      = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
}
 1.5.8
 1.5.8