]> git.sesse.net Git - ffmpeg/blob - libavcodec/qsvdec_other.c
a6f1b88ca03db1104233fdcfaa56eb84421cd312
[ffmpeg] / libavcodec / qsvdec_other.c
1 /*
2  * Intel MediaSDK QSV based MPEG-2, VC-1 and VP8 decoders
3  *
4  * copyright (c) 2015 Anton Khirnov
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23
24 #include <stdint.h>
25 #include <string.h>
26
27 #include <mfx/mfxvideo.h>
28
29 #include "libavutil/common.h"
30 #include "libavutil/fifo.h"
31 #include "libavutil/opt.h"
32
33 #include "avcodec.h"
34 #include "internal.h"
35 #include "qsv_internal.h"
36 #include "qsvdec.h"
37 #include "qsv.h"
38
39 typedef struct QSVOtherContext {
40     AVClass *class;
41     QSVContext qsv;
42
43     AVFifoBuffer *packet_fifo;
44
45     AVPacket input_ref;
46 } QSVOtherContext;
47
48 static void qsv_clear_buffers(QSVOtherContext *s)
49 {
50     AVPacket pkt;
51     while (av_fifo_size(s->packet_fifo) >= sizeof(pkt)) {
52         av_fifo_generic_read(s->packet_fifo, &pkt, sizeof(pkt), NULL);
53         av_packet_unref(&pkt);
54     }
55
56     av_packet_unref(&s->input_ref);
57 }
58
59 static av_cold int qsv_decode_close(AVCodecContext *avctx)
60 {
61     QSVOtherContext *s = avctx->priv_data;
62
63 #if CONFIG_VP8_QSV_DECODER
64     if (avctx->codec_id == AV_CODEC_ID_VP8)
65         av_freep(&s->qsv.load_plugins);
66 #endif
67
68     ff_qsv_decode_close(&s->qsv);
69
70     qsv_clear_buffers(s);
71
72     av_fifo_free(s->packet_fifo);
73
74     return 0;
75 }
76
77 static av_cold int qsv_decode_init(AVCodecContext *avctx)
78 {
79     QSVOtherContext *s = avctx->priv_data;
80     int ret;
81
82 #if CONFIG_VP8_QSV_DECODER
83     if (avctx->codec_id == AV_CODEC_ID_VP8) {
84         static const char *uid_vp8dec_hw = "f622394d8d87452f878c51f2fc9b4131";
85
86         av_freep(&s->qsv.load_plugins);
87         s->qsv.load_plugins = av_strdup(uid_vp8dec_hw);
88         if (!s->qsv.load_plugins)
89             return AVERROR(ENOMEM);
90     }
91 #endif
92
93     s->qsv.orig_pix_fmt = AV_PIX_FMT_NV12;
94     s->packet_fifo = av_fifo_alloc(sizeof(AVPacket));
95     if (!s->packet_fifo) {
96         ret = AVERROR(ENOMEM);
97         goto fail;
98     }
99
100     return 0;
101 fail:
102     qsv_decode_close(avctx);
103     return ret;
104 }
105
106 static int qsv_decode_frame(AVCodecContext *avctx, void *data,
107                             int *got_frame, AVPacket *avpkt)
108 {
109     QSVOtherContext *s = avctx->priv_data;
110     AVFrame *frame    = data;
111     int ret;
112
113     /* buffer the input packet */
114     if (avpkt->size) {
115         AVPacket input_ref = { 0 };
116
117         if (av_fifo_space(s->packet_fifo) < sizeof(input_ref)) {
118             ret = av_fifo_realloc2(s->packet_fifo,
119                                    av_fifo_size(s->packet_fifo) + sizeof(input_ref));
120             if (ret < 0)
121                 return ret;
122         }
123
124         ret = av_packet_ref(&input_ref, avpkt);
125         if (ret < 0)
126             return ret;
127         av_fifo_generic_write(s->packet_fifo, &input_ref, sizeof(input_ref), NULL);
128     }
129
130     /* process buffered data */
131     while (!*got_frame) {
132         if (s->input_ref.size <= 0) {
133             /* no more data */
134             if (av_fifo_size(s->packet_fifo) < sizeof(AVPacket))
135                 return avpkt->size ? avpkt->size : ff_qsv_process_data(avctx, &s->qsv, frame, got_frame, avpkt);
136             /* in progress of reinit, no read from fifo and keep the buffer_pkt */
137             if (!s->qsv.reinit_flag) {
138                 av_packet_unref(&s->input_ref);
139                 av_fifo_generic_read(s->packet_fifo, &s->input_ref, sizeof(s->input_ref), NULL);
140             }
141         }
142
143         ret = ff_qsv_process_data(avctx, &s->qsv, frame, got_frame, &s->input_ref);
144         if (ret < 0) {
145             /* Drop input packet when failed to decode the packet. Otherwise,
146                the decoder will keep decoding the failure packet. */
147             av_packet_unref(&s->input_ref);
148
149             return ret;
150         }
151         if (s->qsv.reinit_flag)
152             continue;
153
154         s->input_ref.size -= ret;
155         s->input_ref.data += ret;
156     }
157
158     return avpkt->size;
159 }
160
161 static void qsv_decode_flush(AVCodecContext *avctx)
162 {
163     QSVOtherContext *s = avctx->priv_data;
164
165     qsv_clear_buffers(s);
166     ff_qsv_decode_flush(avctx, &s->qsv);
167 }
168
169 #define OFFSET(x) offsetof(QSVOtherContext, x)
170 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
171 static const AVOption options[] = {
172     { "async_depth", "Internal parallelization depth, the higher the value the higher the latency.", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 1, INT_MAX, VD },
173     { NULL },
174 };
175
176 #if CONFIG_MPEG2_QSV_DECODER
177 static const AVClass mpeg2_qsv_class = {
178     .class_name = "mpeg2_qsv",
179     .item_name  = av_default_item_name,
180     .option     = options,
181     .version    = LIBAVUTIL_VERSION_INT,
182 };
183
184 AVCodec ff_mpeg2_qsv_decoder = {
185     .name           = "mpeg2_qsv",
186     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 video (Intel Quick Sync Video acceleration)"),
187     .priv_data_size = sizeof(QSVOtherContext),
188     .type           = AVMEDIA_TYPE_VIDEO,
189     .id             = AV_CODEC_ID_MPEG2VIDEO,
190     .init           = qsv_decode_init,
191     .decode         = qsv_decode_frame,
192     .flush          = qsv_decode_flush,
193     .close          = qsv_decode_close,
194     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1 | AV_CODEC_CAP_AVOID_PROBING | AV_CODEC_CAP_HYBRID,
195     .priv_class     = &mpeg2_qsv_class,
196     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12,
197                                                     AV_PIX_FMT_QSV,
198                                                     AV_PIX_FMT_NONE },
199     .hw_configs     = ff_qsv_hw_configs,
200     .wrapper_name   = "qsv",
201 };
202 #endif
203
204 #if CONFIG_VC1_QSV_DECODER
205 static const AVClass vc1_qsv_class = {
206     .class_name = "vc1_qsv",
207     .item_name  = av_default_item_name,
208     .option     = options,
209     .version    = LIBAVUTIL_VERSION_INT,
210 };
211
212 AVCodec ff_vc1_qsv_decoder = {
213     .name           = "vc1_qsv",
214     .long_name      = NULL_IF_CONFIG_SMALL("VC-1 video (Intel Quick Sync Video acceleration)"),
215     .priv_data_size = sizeof(QSVOtherContext),
216     .type           = AVMEDIA_TYPE_VIDEO,
217     .id             = AV_CODEC_ID_VC1,
218     .init           = qsv_decode_init,
219     .decode         = qsv_decode_frame,
220     .flush          = qsv_decode_flush,
221     .close          = qsv_decode_close,
222     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1 | AV_CODEC_CAP_AVOID_PROBING | AV_CODEC_CAP_HYBRID,
223     .priv_class     = &vc1_qsv_class,
224     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12,
225                                                     AV_PIX_FMT_QSV,
226                                                     AV_PIX_FMT_NONE },
227     .hw_configs     = ff_qsv_hw_configs,
228     .wrapper_name   = "qsv",
229 };
230 #endif
231
232 #if CONFIG_VP8_QSV_DECODER
233 static const AVClass vp8_qsv_class = {
234     .class_name = "vp8_qsv",
235     .item_name  = av_default_item_name,
236     .option     = options,
237     .version    = LIBAVUTIL_VERSION_INT,
238 };
239
240 AVCodec ff_vp8_qsv_decoder = {
241     .name           = "vp8_qsv",
242     .long_name      = NULL_IF_CONFIG_SMALL("VP8 video (Intel Quick Sync Video acceleration)"),
243     .priv_data_size = sizeof(QSVOtherContext),
244     .type           = AVMEDIA_TYPE_VIDEO,
245     .id             = AV_CODEC_ID_VP8,
246     .init           = qsv_decode_init,
247     .decode         = qsv_decode_frame,
248     .flush          = qsv_decode_flush,
249     .close          = qsv_decode_close,
250     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1 | AV_CODEC_CAP_AVOID_PROBING | AV_CODEC_CAP_HYBRID,
251     .priv_class     = &vp8_qsv_class,
252     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12,
253                                                     AV_PIX_FMT_QSV,
254                                                     AV_PIX_FMT_NONE },
255     .hw_configs     = ff_qsv_hw_configs,
256     .wrapper_name   = "qsv",
257 };
258 #endif