mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '536bb17e9659c5ed7576a218d4085cdd6d5742fa'
* commit '536bb17e9659c5ed7576a218d4085cdd6d5742fa': qsvdec: make ff_qsv_map_pixfmt() return a MFX fourcc as well Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
1bc6cdf2fc
|
@ -105,6 +105,18 @@ int ff_qsv_error(int mfx_err)
|
|||
}
|
||||
}
|
||||
|
||||
int ff_qsv_map_pixfmt(enum AVPixelFormat format, uint32_t *fourcc)
|
||||
{
|
||||
switch (format) {
|
||||
case AV_PIX_FMT_YUV420P:
|
||||
case AV_PIX_FMT_YUVJ420P:
|
||||
*fourcc = MFX_FOURCC_NV12;
|
||||
return AV_PIX_FMT_NV12;
|
||||
default:
|
||||
return AVERROR(ENOSYS);
|
||||
}
|
||||
}
|
||||
|
||||
static int qsv_load_plugins(mfxSession session, const char *load_plugins,
|
||||
void *logctx)
|
||||
{
|
||||
|
|
|
@ -65,6 +65,8 @@ int ff_qsv_error(int mfx_err);
|
|||
int ff_qsv_codec_id_to_mfx(enum AVCodecID codec_id);
|
||||
int ff_qsv_profile_to_mfx(enum AVCodecID codec_id, int profile);
|
||||
|
||||
int ff_qsv_map_pixfmt(enum AVPixelFormat format, uint32_t *fourcc);
|
||||
|
||||
int ff_qsv_init_internal_session(AVCodecContext *avctx, mfxSession *session,
|
||||
const char *load_plugins);
|
||||
|
||||
|
|
|
@ -40,17 +40,6 @@
|
|||
#include "qsv_internal.h"
|
||||
#include "qsvdec.h"
|
||||
|
||||
int ff_qsv_map_pixfmt(enum AVPixelFormat format)
|
||||
{
|
||||
switch (format) {
|
||||
case AV_PIX_FMT_YUV420P:
|
||||
case AV_PIX_FMT_YUVJ420P:
|
||||
return AV_PIX_FMT_NV12;
|
||||
default:
|
||||
return AVERROR(ENOSYS);
|
||||
}
|
||||
}
|
||||
|
||||
static int qsv_init_session(AVCodecContext *avctx, QSVContext *q, mfxSession session,
|
||||
AVBufferRef *hw_frames_ref)
|
||||
{
|
||||
|
@ -150,7 +139,7 @@ static int qsv_decode_init(AVCodecContext *avctx, QSVContext *q)
|
|||
param.mfx.FrameInfo.BitDepthLuma = 8;
|
||||
param.mfx.FrameInfo.BitDepthChroma = 8;
|
||||
param.mfx.FrameInfo.Shift = 0;
|
||||
param.mfx.FrameInfo.FourCC = MFX_FOURCC_NV12;
|
||||
param.mfx.FrameInfo.FourCC = q->fourcc;
|
||||
param.mfx.FrameInfo.Width = avctx->coded_width;
|
||||
param.mfx.FrameInfo.Height = avctx->coded_height;
|
||||
param.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV420;
|
||||
|
@ -474,7 +463,7 @@ int ff_qsv_process_data(AVCodecContext *avctx, QSVContext *q,
|
|||
AV_PIX_FMT_NONE };
|
||||
enum AVPixelFormat qsv_format;
|
||||
|
||||
qsv_format = ff_qsv_map_pixfmt(q->parser->format);
|
||||
qsv_format = ff_qsv_map_pixfmt(q->parser->format, &q->fourcc);
|
||||
if (qsv_format < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"Only 8-bit YUV420 streams are supported.\n");
|
||||
|
|
|
@ -56,6 +56,7 @@ typedef struct QSVContext {
|
|||
AVCodecParserContext *parser;
|
||||
AVCodecContext *avctx_internal;
|
||||
enum AVPixelFormat orig_pix_fmt;
|
||||
uint32_t fourcc;
|
||||
|
||||
// options set by the caller
|
||||
int async_depth;
|
||||
|
@ -67,8 +68,6 @@ typedef struct QSVContext {
|
|||
int nb_ext_buffers;
|
||||
} QSVContext;
|
||||
|
||||
int ff_qsv_map_pixfmt(enum AVPixelFormat format);
|
||||
|
||||
int ff_qsv_process_data(AVCodecContext *avctx, QSVContext *q,
|
||||
AVFrame *frame, int *got_frame, AVPacket *pkt);
|
||||
|
||||
|
|
Loading…
Reference in New Issue