Libav
qsvdec.h
Go to the documentation of this file.
1 /*
2  * Intel MediaSDK QSV utility functions
3  *
4  * copyright (c) 2013 Luca Barbato
5  *
6  * This file is part of Libav.
7  *
8  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #ifndef AVCODEC_QSVDEC_H
24 #define AVCODEC_QSVDEC_H
25 
26 #include <stdint.h>
27 #include <sys/types.h>
28 
29 #include <mfx/mfxvideo.h>
30 
31 #include "libavutil/fifo.h"
32 #include "libavutil/frame.h"
33 #include "libavutil/pixfmt.h"
34 
35 #include "avcodec.h"
36 #include "qsv_internal.h"
37 
38 typedef struct QSVContext {
39  // the session used for decoding
40  mfxSession session;
41 
42  // the session we allocated internally, in case the caller did not provide
43  // one
44  mfxSession internal_session;
45 
47 
52 
54 
55  // the internal parser and codec context for parsing the data
59  uint32_t fourcc;
60  mfxFrameInfo frame_info;
61 
62  // options set by the caller
64  int iopattern;
65 
66  char *load_plugins;
67 
68  mfxExtBuffer **ext_buffers;
70 } QSVContext;
71 
73  AVFrame *frame, int *got_frame, AVPacket *pkt);
74 
76 
78 
79 #endif /* AVCODEC_QSVDEC_H */
int iopattern
Definition: qsvdec.h:64
This structure describes decoded (raw) audio or video data.
Definition: frame.h:140
mfxExtBuffer ** ext_buffers
Definition: qsvdec.h:68
AVCodecParserContext * parser
Definition: qsvdec.h:56
reference-counted frame API
void ff_qsv_decode_flush(AVCodecContext *avctx, QSVContext *q)
Definition: qsvdec.c:498
enum AVPixelFormat orig_pix_fmt
Definition: qsvdec.h:58
Libavcodec external API header.
mfxSession internal_session
Definition: qsvdec.h:44
main external API structure.
Definition: avcodec.h:1409
a very simple circular buffer FIFO implementation
char * load_plugins
Definition: qsvdec.h:66
int ff_qsv_decode_close(QSVContext *q)
Definition: qsvdec.c:373
mfxFrameInfo frame_info
Definition: qsvdec.h:60
pixel format definitions
AVCodecContext * avctx_internal
Definition: qsvdec.h:57
QSVFramesContext frames_ctx
Definition: qsvdec.h:46
mfxSession session
Definition: qsvdec.h:40
AVFifoBuffer * async_fifo
Definition: qsvdec.h:53
uint32_t fourcc
Definition: qsvdec.h:59
int async_depth
Definition: qsvdec.h:63
int ff_qsv_process_data(AVCodecContext *avctx, QSVContext *q, AVFrame *frame, int *got_frame, AVPacket *pkt)
Definition: qsvdec.c:413
QSVFrame * work_frames
a linked list of frames currently being used by QSV
Definition: qsvdec.h:51
AVPixelFormat
Pixel format.
Definition: pixfmt.h:57
This structure stores compressed data.
Definition: avcodec.h:1323
int nb_ext_buffers
Definition: qsvdec.h:69