]> git.sesse.net Git - ffmpeg/blob - libavcodec/qsvdec_mpeg2.c
avcodec/movtextdec: Fix decode_styl() cleanup
[ffmpeg] / libavcodec / qsvdec_mpeg2.c
1 /*
2  * Intel MediaSDK QSV based MPEG-2 decoder
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 QSVMPEG2Context {
40     AVClass *class;
41     QSVContext qsv;
42
43     AVFifoBuffer *packet_fifo;
44
45     AVPacket input_ref;
46 } QSVMPEG2Context;
47
48 static void qsv_clear_buffers(QSVMPEG2Context *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     QSVMPEG2Context *s = avctx->priv_data;
62
63     ff_qsv_decode_close(&s->qsv);
64
65     qsv_clear_buffers(s);
66
67     av_fifo_free(s->packet_fifo);
68
69     return 0;
70 }
71
72 static av_cold int qsv_decode_init(AVCodecContext *avctx)
73 {
74     QSVMPEG2Context *s = avctx->priv_data;
75     int ret;
76
77     s->packet_fifo = av_fifo_alloc(sizeof(AVPacket));
78     if (!s->packet_fifo) {
79         ret = AVERROR(ENOMEM);
80         goto fail;
81     }
82
83     return 0;
84 fail:
85     qsv_decode_close(avctx);
86     return ret;
87 }
88
89 static int qsv_decode_frame(AVCodecContext *avctx, void *data,
90                             int *got_frame, AVPacket *avpkt)
91 {
92     QSVMPEG2Context *s = avctx->priv_data;
93     AVFrame *frame    = data;
94     int ret;
95
96     /* buffer the input packet */
97     if (avpkt->size) {
98         AVPacket input_ref = { 0 };
99
100         if (av_fifo_space(s->packet_fifo) < sizeof(input_ref)) {
101             ret = av_fifo_realloc2(s->packet_fifo,
102                                    av_fifo_size(s->packet_fifo) + sizeof(input_ref));
103             if (ret < 0)
104                 return ret;
105         }
106
107         ret = av_packet_ref(&input_ref, avpkt);
108         if (ret < 0)
109             return ret;
110         av_fifo_generic_write(s->packet_fifo, &input_ref, sizeof(input_ref), NULL);
111     }
112
113     /* process buffered data */
114     while (!*got_frame) {
115         if (s->input_ref.size <= 0) {
116             /* no more data */
117             if (av_fifo_size(s->packet_fifo) < sizeof(AVPacket))
118                 return avpkt->size ? avpkt->size : ff_qsv_process_data(avctx, &s->qsv, frame, got_frame, avpkt);
119
120             av_packet_unref(&s->input_ref);
121             av_fifo_generic_read(s->packet_fifo, &s->input_ref, sizeof(s->input_ref), NULL);
122         }
123
124         ret = ff_qsv_process_data(avctx, &s->qsv, frame, got_frame, &s->input_ref);
125         if (ret < 0)
126             return ret;
127
128         s->input_ref.size -= ret;
129         s->input_ref.data += ret;
130     }
131
132     return avpkt->size;
133 }
134
135 static void qsv_decode_flush(AVCodecContext *avctx)
136 {
137     QSVMPEG2Context *s = avctx->priv_data;
138
139     qsv_clear_buffers(s);
140     ff_qsv_decode_flush(avctx, &s->qsv);
141 }
142
143 AVHWAccel ff_mpeg2_qsv_hwaccel = {
144     .name           = "mpeg2_qsv",
145     .type           = AVMEDIA_TYPE_VIDEO,
146     .id             = AV_CODEC_ID_MPEG2VIDEO,
147     .pix_fmt        = AV_PIX_FMT_QSV,
148 };
149
150 #define OFFSET(x) offsetof(QSVMPEG2Context, x)
151 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
152 static const AVOption options[] = {
153     { "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 }, 0, INT_MAX, VD },
154     { NULL },
155 };
156
157 static const AVClass class = {
158     .class_name = "mpeg2_qsv",
159     .item_name  = av_default_item_name,
160     .option     = options,
161     .version    = LIBAVUTIL_VERSION_INT,
162 };
163
164 AVCodec ff_mpeg2_qsv_decoder = {
165     .name           = "mpeg2_qsv",
166     .long_name      = NULL_IF_CONFIG_SMALL("MPEG-2 video (Intel Quick Sync Video acceleration)"),
167     .priv_data_size = sizeof(QSVMPEG2Context),
168     .type           = AVMEDIA_TYPE_VIDEO,
169     .id             = AV_CODEC_ID_MPEG2VIDEO,
170     .init           = qsv_decode_init,
171     .decode         = qsv_decode_frame,
172     .flush          = qsv_decode_flush,
173     .close          = qsv_decode_close,
174     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1 | AV_CODEC_CAP_AVOID_PROBING,
175     .priv_class     = &class,
176     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12,
177                                                     AV_PIX_FMT_QSV,
178                                                     AV_PIX_FMT_NONE },
179 };