#include "avformat.h"#include "mpeg.h"Go to the source code of this file.
Data Structures | |
| struct | PVAContext |
Defines | |
| #define | PVA_MAX_PAYLOAD_LENGTH 0x17f8 |
| #define | PVA_VIDEO_PAYLOAD 0x01 |
| #define | PVA_AUDIO_PAYLOAD 0x02 |
| #define | PVA_MAGIC (('A' << 8) + 'V') |
| #define | pva_log if (read_packet) av_log |
Functions | |
| static int | pva_probe (AVProbeData *pd) |
| static int | pva_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | read_part_of_packet (AVFormatContext *s, int64_t *pts, int *len, int *strid, int read_packet) |
| static int | pva_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int64_t | pva_read_timestamp (struct AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit) |
Variables | |
| AVInputFormat | ff_pva_demuxer |
| #define PVA_AUDIO_PAYLOAD 0x02 |
| #define pva_log if (read_packet) av_log |
| #define PVA_MAGIC (('A' << 8) + 'V') |
| #define PVA_MAX_PAYLOAD_LENGTH 0x17f8 |
| #define PVA_VIDEO_PAYLOAD 0x01 |
| static int pva_probe | ( | AVProbeData * | pd | ) | [static] |
| static int pva_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int pva_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int64_t pva_read_timestamp | ( | struct AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t * | pos, | |||
| int64_t | pos_limit | |||
| ) | [static] |
| static int read_part_of_packet | ( | AVFormatContext * | s, | |
| int64_t * | pts, | |||
| int * | len, | |||
| int * | strid, | |||
| int | read_packet | |||
| ) | [static] |
Initial value:
{
"pva",
NULL_IF_CONFIG_SMALL("TechnoTrend PVA file and stream format"),
sizeof(PVAContext),
pva_probe,
pva_read_header,
pva_read_packet,
.read_timestamp = pva_read_timestamp
}
1.5.8