]> git.sesse.net Git - ffmpeg/blob - libavformat/libquvi.c
tests/tiny_psnr: Make the search range extend both sides from the specified shift...
[ffmpeg] / libavformat / libquvi.c
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;
31     AVFormatContext *fmtctx;
32 } LibQuviContext;
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
41 static const AVClass libquvi_context_class = {
42     .class_name     = "libquvi",
43     .item_name      = av_default_item_name,
44     .option         = libquvi_options,
45     .version        = LIBAVUTIL_VERSION_INT,
46 };
47
48 static int libquvi_close(AVFormatContext *s)
49 {
50     LibQuviContext *qc = s->priv_data;
51     if (qc->fmtctx)
52         avformat_close_input(&qc->fmtctx);
53     return 0;
54 }
55
56 static int libquvi_read_header(AVFormatContext *s)
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         goto quvi_fail;
68
69     quvi_setopt(q, QUVIOPT_FORMAT, qc->format);
70
71     rc = quvi_parse(q, s->filename, &m);
72     if (rc != QUVI_OK)
73         goto quvi_fail;
74
75     rc = quvi_getprop(m, QUVIPROP_MEDIAURL, &media_url);
76     if (rc != QUVI_OK)
77         goto quvi_fail;
78
79     if (!(qc->fmtctx = avformat_alloc_context()))
80             goto quvi_fail;
81
82     if ((ret = ff_copy_whitelists(qc->fmtctx, s)) < 0)
83         goto end;
84
85     ret = avformat_open_input(&qc->fmtctx, media_url, NULL, NULL);
86     if (ret < 0)
87         goto end;
88
89     rc = quvi_getprop(m, QUVIPROP_PAGETITLE, &pagetitle);
90     if (rc == QUVI_OK)
91         av_dict_set(&s->metadata, "title", pagetitle, 0);
92
93     for (i = 0; i < qc->fmtctx->nb_streams; i++) {
94         AVStream *st = avformat_new_stream(s, NULL);
95         AVStream *ist = qc->fmtctx->streams[i];
96         if (!st) {
97             ret = AVERROR(ENOMEM);
98             goto end;
99         }
100         avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
101         avcodec_copy_context(st->codec, qc->fmtctx->streams[i]->codec);
102     }
103
104     return 0;
105
106 quvi_fail:
107     av_log(s, AV_LOG_ERROR, "%s\n", quvi_strerror(q, rc));
108     ret = AVERROR_EXTERNAL;
109
110 end:
111     quvi_parse_close(&m);
112     quvi_close(&q);
113     return ret;
114 }
115
116 static int libquvi_read_packet(AVFormatContext *s, AVPacket *pkt)
117 {
118     LibQuviContext *qc = s->priv_data;
119     return av_read_frame(qc->fmtctx, pkt);
120 }
121
122 static int libquvi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
123 {
124     LibQuviContext *qc = s->priv_data;
125     return av_seek_frame(qc->fmtctx, stream_index, timestamp, flags);
126 }
127
128 static int libquvi_probe(AVProbeData *p)
129 {
130     int score;
131     quvi_t q;
132     QUVIcode rc;
133
134     rc = quvi_init(&q);
135     if (rc != QUVI_OK)
136         return AVERROR(ENOMEM);
137     score = quvi_supported(q, (char *)p->filename) == QUVI_OK ? AVPROBE_SCORE_EXTENSION : 0;
138     quvi_close(&q);
139     return score;
140 }
141
142 AVInputFormat ff_libquvi_demuxer = {
143     .name           = "libquvi",
144     .long_name      = NULL_IF_CONFIG_SMALL("libquvi demuxer"),
145     .priv_data_size = sizeof(LibQuviContext),
146     .read_probe     = libquvi_probe,
147     .read_header    = libquvi_read_header,
148     .read_packet    = libquvi_read_packet,
149     .read_close     = libquvi_close,
150     .read_seek      = libquvi_read_seek,
151     .priv_class     = &libquvi_context_class,
152     .flags          = AVFMT_NOFILE,
153 };