#include "avformat.h"
#include "libavutil/avstring.h"
Go to the source code of this file.
Data Structures | |
| struct | IssDemuxContext | 
Defines | |
| #define | ISS_SIG "IMA_ADPCM_Sound" | 
| #define | ISS_SIG_LEN 15 | 
| #define | MAX_TOKEN_SIZE 20 | 
Functions | |
| static void | get_token (ByteIOContext *s, char *buf, int maxlen) | 
| static int | iss_probe (AVProbeData *p) | 
| static av_cold int | iss_read_header (AVFormatContext *s, AVFormatParameters *ap) | 
| static int | iss_read_packet (AVFormatContext *s, AVPacket *pkt) | 
Variables | |
| AVInputFormat | iss_demuxer | 
Definition in file iss.c.
| #define ISS_SIG "IMA_ADPCM_Sound" | 
| #define ISS_SIG_LEN 15 | 
| #define MAX_TOKEN_SIZE 20 | 
| static void get_token | ( | ByteIOContext * | s, | |
| char * | buf, | |||
| int | maxlen | |||
| ) |  [static] | 
        
| static int iss_probe | ( | AVProbeData * | p | ) |  [static] | 
        
| static av_cold int iss_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) |  [static] | 
        
| static int iss_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) |  [static] | 
        
Initial value:
 {
    "ISS",
    NULL_IF_CONFIG_SMALL("Funcom ISS format"),
    sizeof(IssDemuxContext),
    iss_probe,
    iss_read_header,
    iss_read_packet,
}
 1.5.8