FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
libquvi.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Clément Bœsch
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include <quvi/quvi.h>
22 
23 #include "libavformat/avformat.h"
24 #include "libavformat/internal.h"
25 #include "libavutil/avassert.h"
26 #include "libavutil/opt.h"
27 
28 typedef struct {
29  const AVClass *class;
30  char *format;
33 
34 #define OFFSET(x) offsetof(LibQuviContext, x)
35 #define FLAGS AV_OPT_FLAG_DECODING_PARAM
36 static const AVOption libquvi_options[] = {
37  { "format", "request specific format", OFFSET(format), AV_OPT_TYPE_STRING, {.str="best"}, .flags = FLAGS },
38  { NULL }
39 };
40 
42  .class_name = "libquvi",
43  .item_name = av_default_item_name,
44  .option = libquvi_options,
45  .version = LIBAVUTIL_VERSION_INT,
46 };
47 
49 {
50  LibQuviContext *qc = s->priv_data;
51  if (qc->fmtctx)
53  return 0;
54 }
55 
57 {
58  int i, ret;
59  quvi_t q;
60  quvi_media_t m;
61  QUVIcode rc;
62  LibQuviContext *qc = s->priv_data;
63  char *media_url, *pagetitle;
64 
65  rc = quvi_init(&q);
66  if (rc != QUVI_OK) {
67  av_log(s, AV_LOG_ERROR, "%s\n", quvi_strerror(q, rc));
68  return AVERROR_EXTERNAL;
69  }
70 
71  quvi_setopt(q, QUVIOPT_FORMAT, qc->format);
72 
73  rc = quvi_parse(q, s->filename, &m);
74  if (rc != QUVI_OK) {
75  av_log(s, AV_LOG_ERROR, "%s\n", quvi_strerror(q, rc));
76  ret = AVERROR_EXTERNAL;
77  goto err_quvi_close;
78  }
79 
80  rc = quvi_getprop(m, QUVIPROP_MEDIAURL, &media_url);
81  if (rc != QUVI_OK) {
82  av_log(s, AV_LOG_ERROR, "%s\n", quvi_strerror(q, rc));
83  ret = AVERROR_EXTERNAL;
84  goto err_quvi_cleanup;
85  }
86 
87  if (!(qc->fmtctx = avformat_alloc_context())) {
88  ret = AVERROR(ENOMEM);
89  goto err_quvi_cleanup;
90  }
91 
92  if ((ret = ff_copy_whitelists(qc->fmtctx, s)) < 0) {
94  qc->fmtctx = NULL;
95  goto err_quvi_cleanup;
96  }
97 
98  ret = avformat_open_input(&qc->fmtctx, media_url, NULL, NULL);
99  if (ret < 0)
100  goto err_quvi_cleanup;
101 
102  rc = quvi_getprop(m, QUVIPROP_PAGETITLE, &pagetitle);
103  if (rc == QUVI_OK)
104  av_dict_set(&s->metadata, "title", pagetitle, 0);
105 
106  for (i = 0; i < qc->fmtctx->nb_streams; i++) {
108  AVStream *ist = qc->fmtctx->streams[i];
109  if (!st) {
110  ret = AVERROR(ENOMEM);
111  goto err_close_input;
112  }
115  }
116 
117  return 0;
118 
119  err_close_input:
121  err_quvi_cleanup:
122  quvi_parse_close(&m);
123  err_quvi_close:
124  quvi_close(&q);
125  return ret;
126 }
127 
129 {
130  LibQuviContext *qc = s->priv_data;
131  return av_read_frame(qc->fmtctx, pkt);
132 }
133 
134 static int libquvi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
135 {
136  LibQuviContext *qc = s->priv_data;
137  return av_seek_frame(qc->fmtctx, stream_index, timestamp, flags);
138 }
139 
141 {
142  int score;
143  quvi_t q;
144  QUVIcode rc;
145 
146  rc = quvi_init(&q);
147  if (rc != QUVI_OK)
148  return AVERROR(ENOMEM);
149  score = quvi_supported(q, (char *)p->filename) == QUVI_OK ? AVPROBE_SCORE_EXTENSION : 0;
150  quvi_close(&q);
151  return score;
152 }
153 
155  .name = "libquvi",
156  .long_name = NULL_IF_CONFIG_SMALL("libquvi demuxer"),
157  .priv_data_size = sizeof(LibQuviContext),
163  .priv_class = &libquvi_context_class,
164  .flags = AVFMT_NOFILE,
165 };
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
AVFormatContext * fmtctx
Definition: libquvi.c:31
AVOption.
Definition: opt.h:255
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
const char * filename
Definition: avformat.h:449
int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition: utils.c:402
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4006
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:153
int num
numerator
Definition: rational.h:44
char * format
Definition: libquvi.c:30
static AVPacket pkt
int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
Copy the settings of the source AVCodecContext into the destination AVCodecContext.
Definition: options.c:180
Format I/O context.
Definition: avformat.h:1272
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
AVOptions.
static int libquvi_read_header(AVFormatContext *s)
Definition: libquvi.c:56
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:3672
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1340
AVFormatContext * avformat_alloc_context(void)
Allocate an AVFormatContext.
Definition: options.c:107
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
#define av_log(a,...)
static int libquvi_probe(AVProbeData *p)
Definition: libquvi.c:140
unsigned m
Definition: audioconvert.c:187
static const AVOption libquvi_options[]
Definition: libquvi.c:36
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1482
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
simple assert() macros that are a bit more flexible than ISO C assert().
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1328
static const AVClass libquvi_context_class
Definition: libquvi.c:41
char filename[1024]
input or output filename
Definition: avformat.h:1348
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
ret
Definition: avfilter.c:974
#define OFFSET(x)
Definition: libquvi.c:34
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:620
Stream structure.
Definition: avformat.h:842
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
static int libquvi_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: libquvi.c:128
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:69
Describe the class of an AVClass context structure.
Definition: log.h:67
static int libquvi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: libquvi.c:134
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:458
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
Definition: utils.c:3609
This structure contains the data a format has to probe a file.
Definition: avformat.h:448
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition: utils.c:1475
int ff_copy_whitelists(AVFormatContext *dst, AVFormatContext *src)
Copies the whilelists from one context to the other.
Definition: utils.c:137
static int flags
Definition: cpu.c:47
int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Seek to the keyframe at timestamp.
Definition: utils.c:2139
Main libavformat public API header.
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:465
AVInputFormat ff_libquvi_demuxer
Definition: libquvi.c:154
int pts_wrap_bits
number of bits in pts (used for wrapping control)
Definition: avformat.h:1008
int den
denominator
Definition: rational.h:45
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: utils.c:3644
void * priv_data
Format private data.
Definition: avformat.h:1300
static int libquvi_close(AVFormatContext *s)
Definition: libquvi.c:48
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:628
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:884
#define FLAGS
Definition: libquvi.c:35
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:57
This structure stores compressed data.
Definition: avcodec.h:1139