30#define LXF_MAX_PACKET_HEADER_SIZE 256
31#define LXF_HEADER_DATA_SIZE 120
32#define LXF_IDENT "LEITCH\0"
33#define LXF_IDENT_LENGTH 8
34#define LXF_SAMPLERATE 48000
75 for (x = 0; x <
size; x += 4)
117 int track_size, samples, ret;
131 version = bytestream_get_le32(&p);
132 header_size = bytestream_get_le32(&p);
136 if (header_size < (
version ? 72 : 60) ||
145 header_size - (p -
header))) !=
146 header_size - (p -
header))
160 ret = bytestream_get_le32(&p);
167 if (
s->nb_streams < 2) {
174 audio_format = bytestream_get_le32(&p);
176 track_size = bytestream_get_le32(&p);
209 "video doesn't seem to be PAL or NTSC. guessing PAL\n");
221 tmp = bytestream_get_le32(&p);
222 ret = bytestream_get_le32(&p);
238 uint32_t video_params, disk_params;
239 uint16_t record_date, expiration_date;
257 video_params =
AV_RL32(&header_data[40]);
258 record_date =
AV_RL16(&header_data[56]);
259 expiration_date =
AV_RL16(&header_data[58]);
260 disk_params =
AV_RL32(&header_data[116]);
269 record_date, 1900 + (record_date & 0x7F), (record_date >> 7) & 0xF,
270 (record_date >> 11) & 0x1F);
273 expiration_date, 1900 + (expiration_date & 0x7F), (expiration_date >> 7) & 0xF,
274 (expiration_date >> 11) & 0x1F);
276 if ((video_params >> 22) & 1)
279 if ((lxf->
channels = 1 << (disk_params >> 4 & 3) + 1)) {
309 "got packet with illegal stream index %"PRIu32
"\n", stream);
313 if (stream == 1 &&
s->nb_streams < 2) {
325 pkt->stream_index = stream;
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
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)
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
static int read_probe(const AVProbeData *p)
#define FFERROR_REDO
Returned by demuxers to indicate that data was consumed but discarded (ignored streams or junk data).
static int read_header(FFV1Context *f, RangeCoder *c)
@ AV_CODEC_ID_PCM_S32LE_PLANAR
@ AV_CODEC_ID_PCM_S24LE_PLANAR
@ AV_CODEC_ID_PCM_S16LE_PLANAR
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
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 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 AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_INFO
Standard information.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
#define LXF_MAX_PACKET_HEADER_SIZE
static int lxf_read_packet(AVFormatContext *s, AVPacket *pkt)
static int get_packet_header(AVFormatContext *s)
Read and checksum the next packet header.
static int lxf_probe(const AVProbeData *p)
static int lxf_read_header(AVFormatContext *s)
#define LXF_HEADER_DATA_SIZE
static int lxf_sync(AVFormatContext *s, uint8_t *header)
Read input until we find the next ident.
static int check_checksum(const uint8_t *header, int size)
Verify the checksum of an LXF packet header.
static const AVCodecTag lxf_tags[]
static const uint8_t header[24]
int nb_channels
Number of channels in this layout.
int bits_per_coded_sample
The number of bits per sample in the codedwords.
AVChannelLayout ch_layout
The channel layout and number of channels.
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
enum AVMediaType codec_type
General type of the encoded data.
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
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 duration
Decoding: duration of the stream, in stream time base.
enum AVStreamParseType need_parsing
int channels
number of audio channels. zero means no audio
int frame_number
current video frame
#define avpriv_request_sample(...)