Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-03-13 10:13:00 +0300
committerAnton Khirnov <anton@khirnov.net>2015-03-27 23:57:28 +0300
commitd0a63d8b989647ffdb5f40da8e1feaffe1a8e791 (patch)
tree3358ed60bf27fa32b1abe47a91ea92ebd9fc1bbb /libavcodec/qsvdec.h
parentb04d009b0e1a34b717f3d3bbf407aef0c742aff1 (diff)
qsvdec: split off some code that will be shared with the encoder
Diffstat (limited to 'libavcodec/qsvdec.h')
-rw-r--r--libavcodec/qsvdec.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/qsvdec.h b/libavcodec/qsvdec.h
index d12fde2856..79ecaed068 100644
--- a/libavcodec/qsvdec.h
+++ b/libavcodec/qsvdec.h
@@ -33,11 +33,6 @@
#include "avcodec.h"
-#define QSV_VERSION_MAJOR 1
-#define QSV_VERSION_MINOR 1
-
-#define ASYNC_DEPTH_DEFAULT 4 // internal parallelism
-
typedef struct QSVFrame {
AVFrame *frame;
mfxFrameSurface1 *surface;
@@ -68,11 +63,6 @@ typedef struct QSVContext {
int nb_ext_buffers;
} QSVContext;
-/**
- * Convert a libmfx error code into a libav error code.
- */
-int ff_qsv_error(int mfx_err);
-
int ff_qsv_map_pixfmt(enum AVPixelFormat format);
int ff_qsv_init(AVCodecContext *s, QSVContext *q, mfxSession session);