Go to the documentation of this file.
28 #if HAVE_CDIO_PARANOIA_H
29 #include <cdio/cdda.h>
30 #include <cdio/paranoia.h>
31 #elif HAVE_CDIO_PARANOIA_PARANOIA_H
32 #include <cdio/paranoia/cdda.h>
33 #include <cdio/paranoia/paranoia.h>
63 s->drive = cdio_cddap_identify(
ctx->
url, CDDA_MESSAGE_LOGIT, &err);
72 if ((
ret = cdio_cddap_open(
s->drive)) < 0 || !
s->drive->opened) {
77 cdio_cddap_verbose_set(
s->drive, CDDA_MESSAGE_LOGIT, CDDA_MESSAGE_LOGIT);
79 cdio_cddap_speed_set(
s->drive,
s->speed);
81 s->paranoia = cdio_paranoia_init(
s->drive);
86 cdio_paranoia_modeset(
s->paranoia,
s->paranoia_mode);
89 if (
s->drive->bigendianp)
95 if (
s->drive->audio_last_sector != CDIO_INVALID_LSN &&
96 s->drive->audio_first_sector != CDIO_INVALID_LSN)
97 st->
duration =
s->drive->audio_last_sector -
s->drive->audio_first_sector;
98 else if (
s->drive->tracks)
99 st->
duration =
s->drive->disc_toc[
s->drive->tracks].dwStartSector;
103 for (
i = 0;
i <
s->drive->tracks;
i++) {
105 snprintf(title,
sizeof(title),
"track %02d",
s->drive->disc_toc[
i].bTrack);
107 s->drive->disc_toc[
i+1].dwStartSector, title);
110 s->last_sector = cdio_cddap_disc_lastsector(
s->drive);
122 buf = cdio_paranoia_read(
s->paranoia,
NULL);
126 if (err = cdio_cddap_errors(
s->drive)) {
131 if (err = cdio_cddap_messages(
s->drive)) {
139 memcpy(
pkt->
data, buf, CDIO_CD_FRAMESIZE_RAW);
146 cdio_paranoia_free(
s->paranoia);
147 cdio_cddap_close(
s->drive);
157 cdio_paranoia_seek(
s->paranoia, timestamp, SEEK_SET);
162 #define OFFSET(x) offsetof(CDIOContext, x)
163 #define DEC AV_OPT_FLAG_DECODING_PARAM
166 {
"paranoia_mode",
"set error recovery mode",
OFFSET(paranoia_mode),
AV_OPT_TYPE_FLAGS, { .i64 = PARANOIA_MODE_DISABLE }, INT_MIN, INT_MAX,
DEC,
"paranoia_mode" },
167 {
"disable",
"apply no fixups", 0,
AV_OPT_TYPE_CONST, { .i64 = PARANOIA_MODE_DISABLE }, 0, 0,
DEC,
"paranoia_mode" },
168 {
"verify",
"verify data integrity in overlap area", 0,
AV_OPT_TYPE_CONST, { .i64 = PARANOIA_MODE_VERIFY }, 0, 0,
DEC,
"paranoia_mode" },
169 {
"overlap",
"perform overlapped reads", 0,
AV_OPT_TYPE_CONST, { .i64 = PARANOIA_MODE_OVERLAP }, 0, 0,
DEC,
"paranoia_mode" },
170 {
"neverskip",
"do not skip failed reads", 0,
AV_OPT_TYPE_CONST, { .i64 = PARANOIA_MODE_NEVERSKIP }, 0, 0,
DEC,
"paranoia_mode" },
171 {
"full",
"apply all recovery modes", 0,
AV_OPT_TYPE_CONST, { .i64 = PARANOIA_MODE_FULL }, 0, 0,
DEC,
"paranoia_mode" },
AVChapter * avpriv_new_chapter(AVFormatContext *s, int64_t id, AVRational time_base, int64_t start, int64_t end, const char *title)
Add a new chapter.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
enum AVMediaType codec_type
General type of the encoded data.
#define AVERROR_EOF
End of file.
AVStream ** streams
A list of all streams in the file.
#define AV_LOG_VERBOSE
Detailed information.
#define AV_CHANNEL_LAYOUT_STEREO
int nb_channels
Number of channels in this layout.
void avpriv_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp)
Update cur_dts of all streams based on the given timestamp and AVStream.
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
static av_cold int read_close(AVFormatContext *ctx)
int64_t duration
Decoding: duration of the stream, in stream time base.
@ AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
AVCodecParameters * codecpar
Codec parameters associated with this stream.
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
static av_cold int read_header(AVFormatContext *ctx)
const char * av_default_item_name(void *ptr)
Return the context name.
AVChannelLayout ch_layout
Audio only.
int sample_rate
Audio only.
An AVChannelLayout holds information about the channel layout of audio data.
char * url
input or output URL.
static const AVOption options[]
const AVInputFormat ff_libcdio_demuxer
#define i(width, name, range_min, range_max)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
cdrom_paranoia_t * paranoia
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
#define flags(name, subs,...)
static const AVClass libcdio_class
void * priv_data
Format private data.