31#define DSS_HEAD_OFFSET_AUTHOR 0xc
32#define DSS_AUTHOR_SIZE 16
34#define DSS_HEAD_OFFSET_START_TIME 0x26
35#define DSS_HEAD_OFFSET_END_TIME 0x32
36#define DSS_TIME_SIZE 12
38#define DSS_HEAD_OFFSET_ACODEC 0x2a4
39#define DSS_ACODEC_DSS_SP 0x0
40#define DSS_ACODEC_G723_1 0x2
42#define DSS_HEAD_OFFSET_COMMENT 0x31e
43#define DSS_COMMENT_SIZE 64
45#define DSS_BLOCK_SIZE 512
46#define DSS_AUDIO_BLOCK_HEADER_SIZE 6
47#define DSS_FRAME_SIZE 42
75 int y, month, d,
h, minute, sec;
84 if (sscanf(
string,
"%2d%2d%2d%2d%2d%2d", &y, &month, &d, &
h, &minute, &sec) != 6)
88 snprintf(datetime,
sizeof(datetime),
"%.4d-%.2d-%.2dT%.2d:%.2d:%.2d",
89 y + 2000, month, d,
h, minute, sec);
94 unsigned int size,
const char *
key)
169 if ((ret64 =
avio_seek(pb,
ctx->dss_header_size, SEEK_SET)) < 0)
197 data[1] =
ctx->dss_sp_swap_byte;
210 int read_size, ret,
offset = 0, buff_offset = 0;
213 if (
ctx->counter == 0)
228 pkt->stream_index = 0;
230 if (
ctx->counter < read_size) {
233 if (ret < ctx->counter)
239 ctx->counter -= read_size;
244 if (ret < read_size -
offset)
249 if (
ctx->dss_sp_swap_byte < 0) {
266 if (
ctx->counter == 0)
289 pkt->stream_index = 0;
294 if (ret < ctx->counter)
330 seekto = timestamp / 264 * 41 / 506 * 512;
332 seekto = timestamp / 240 *
ctx->packet_size / 506 * 512;
337 seekto +=
ctx->dss_header_size;
357 ctx->dss_sp_swap_byte = -1;
365 .p.extensions =
"dss",
static AVFormatContext * ctx
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
int avio_r8(AVIOContext *s)
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_WB16 unsigned int_TMPL byte
#define flags(name, subs,...)
#define i(width, name, range_min, range_max)
static int read_probe(const AVProbeData *p)
Public libavutil channel layout APIs header.
#define DSS_ACODEC_G723_1
static int dss_sp_read_packet(AVFormatContext *s, AVPacket *pkt)
static int dss_read_metadata_string(AVFormatContext *s, unsigned int offset, unsigned int size, const char *key)
static void dss_sp_byte_swap(DSSDemuxContext *ctx, uint8_t *data)
#define DSS_HEAD_OFFSET_ACODEC
static int dss_probe(const AVProbeData *p)
#define DSS_HEAD_OFFSET_END_TIME
static void dss_skip_audio_header(AVFormatContext *s, AVPacket *pkt)
static int dss_read_header(AVFormatContext *s)
#define DSS_HEAD_OFFSET_COMMENT
static int dss_read_packet(AVFormatContext *s, AVPacket *pkt)
#define DSS_HEAD_OFFSET_AUTHOR
static int dss_723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
#define DSS_AUDIO_BLOCK_HEADER_SIZE
#define DSS_ACODEC_DSS_SP
static int dss_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
static int dss_read_metadata_date(AVFormatContext *s, unsigned int offset, const char *key)
static int read_header(FFV1Context *f, RangeCoder *c)
static const uint8_t frame_size[4]
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AV_CHANNEL_LAYOUT_MONO
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AVERROR_EOF
End of file.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
#define MKTAG(a, b, c, d)
Memory handling functions.
static const uint8_t header[24]
An AVChannelLayout holds information about the channel layout of audio data.
AVChannelLayout ch_layout
The channel layout and number of channels.
enum AVMediaType codec_type
General type of the encoded data.
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
int sample_rate
The number of audio samples per second.
This structure stores compressed data.
This structure contains the data a format has to probe a file.
AVCodecParameters * codecpar
Codec parameters associated with this stream.
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
#define avpriv_request_sample(...)