mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '8aecec84021a61b943718ff3d7c2c57fcd4af199'
* commit '8aecec84021a61b943718ff3d7c2c57fcd4af199': qsvdec: make ff_qsv_decode_init() static Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
27673f1bea
|
@ -49,7 +49,7 @@ int ff_qsv_map_pixfmt(enum AVPixelFormat format)
|
|||
}
|
||||
}
|
||||
|
||||
int ff_qsv_decode_init(AVCodecContext *avctx, QSVContext *q, AVPacket *avpkt)
|
||||
static int qsv_decode_init(AVCodecContext *avctx, QSVContext *q, AVPacket *avpkt)
|
||||
{
|
||||
mfxVideoParam param = { { 0 } };
|
||||
mfxBitstream bs = { { { 0 } } };
|
||||
|
@ -323,7 +323,7 @@ static int do_qsv_decode(AVCodecContext *avctx, QSVContext *q,
|
|||
int flush = !avpkt->size || q->reinit_pending;
|
||||
|
||||
if (!q->engine_ready) {
|
||||
ret = ff_qsv_decode_init(avctx, q, avpkt);
|
||||
ret = qsv_decode_init(avctx, q, avpkt);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -78,8 +78,6 @@ typedef struct QSVContext {
|
|||
|
||||
int ff_qsv_map_pixfmt(enum AVPixelFormat format);
|
||||
|
||||
int ff_qsv_decode_init(AVCodecContext *s, QSVContext *q, AVPacket *avpkt);
|
||||
|
||||
int ff_qsv_decode(AVCodecContext *s, QSVContext *q,
|
||||
AVFrame *frame, int *got_frame,
|
||||
AVPacket *avpkt);
|
||||
|
|
Loading…
Reference in New Issue