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