|
|
|
@ -39,11 +39,6 @@ typedef struct QSVH264Context { |
|
|
|
|
AVClass *class; |
|
|
|
|
QSVContext qsv; |
|
|
|
|
|
|
|
|
|
// the internal parser and codec context for parsing the data
|
|
|
|
|
AVCodecParserContext *parser; |
|
|
|
|
AVCodecContext *avctx_internal; |
|
|
|
|
enum AVPixelFormat orig_pix_fmt; |
|
|
|
|
|
|
|
|
|
// the filter for converting to Annex B
|
|
|
|
|
AVBitStreamFilterContext *bsf; |
|
|
|
|
|
|
|
|
@ -79,8 +74,6 @@ static av_cold int qsv_decode_close(AVCodecContext *avctx) |
|
|
|
|
av_fifo_free(s->packet_fifo); |
|
|
|
|
|
|
|
|
|
av_bitstream_filter_close(s->bsf); |
|
|
|
|
av_parser_close(s->parser); |
|
|
|
|
avcodec_free_context(&s->avctx_internal); |
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
@ -90,8 +83,6 @@ static av_cold int qsv_decode_init(AVCodecContext *avctx) |
|
|
|
|
QSVH264Context *s = avctx->priv_data; |
|
|
|
|
int ret; |
|
|
|
|
|
|
|
|
|
s->orig_pix_fmt = AV_PIX_FMT_NONE; |
|
|
|
|
|
|
|
|
|
s->packet_fifo = av_fifo_alloc(sizeof(AVPacket)); |
|
|
|
|
if (!s->packet_fifo) { |
|
|
|
|
ret = AVERROR(ENOMEM); |
|
|
|
@ -104,30 +95,6 @@ static av_cold int qsv_decode_init(AVCodecContext *avctx) |
|
|
|
|
goto fail; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
s->avctx_internal = avcodec_alloc_context3(NULL); |
|
|
|
|
if (!s->avctx_internal) { |
|
|
|
|
ret = AVERROR(ENOMEM); |
|
|
|
|
goto fail; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (avctx->extradata) { |
|
|
|
|
s->avctx_internal->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
|
|
|
|
if (!s->avctx_internal->extradata) { |
|
|
|
|
ret = AVERROR(ENOMEM); |
|
|
|
|
goto fail; |
|
|
|
|
} |
|
|
|
|
memcpy(s->avctx_internal->extradata, avctx->extradata, |
|
|
|
|
avctx->extradata_size); |
|
|
|
|
s->avctx_internal->extradata_size = avctx->extradata_size; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
s->parser = av_parser_init(AV_CODEC_ID_H264); |
|
|
|
|
if (!s->parser) { |
|
|
|
|
ret = AVERROR(ENOMEM); |
|
|
|
|
goto fail; |
|
|
|
|
} |
|
|
|
|
s->parser->flags |= PARSER_FLAG_COMPLETE_FRAMES; |
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|
fail: |
|
|
|
|
qsv_decode_close(avctx); |
|
|
|
@ -138,60 +105,18 @@ static int qsv_process_data(AVCodecContext *avctx, AVFrame *frame, |
|
|
|
|
int *got_frame, AVPacket *pkt) |
|
|
|
|
{ |
|
|
|
|
QSVH264Context *s = avctx->priv_data; |
|
|
|
|
uint8_t *dummy_data; |
|
|
|
|
int dummy_size; |
|
|
|
|
int ret; |
|
|
|
|
|
|
|
|
|
/* we assume the packets are already split properly and want
|
|
|
|
|
* just the codec parameters here */ |
|
|
|
|
av_parser_parse2(s->parser, s->avctx_internal, |
|
|
|
|
&dummy_data, &dummy_size, |
|
|
|
|
pkt->data, pkt->size, pkt->pts, pkt->dts, |
|
|
|
|
pkt->pos); |
|
|
|
|
|
|
|
|
|
/* TODO: flush delayed frames on reinit */ |
|
|
|
|
if (s->parser->format != s->orig_pix_fmt || |
|
|
|
|
s->parser->coded_width != avctx->coded_width || |
|
|
|
|
s->parser->coded_height != avctx->coded_height) { |
|
|
|
|
|
|
|
|
|
enum AVPixelFormat pix_fmts[3] = { AV_PIX_FMT_QSV, |
|
|
|
|
AV_PIX_FMT_NONE, |
|
|
|
|
AV_PIX_FMT_NONE }; |
|
|
|
|
enum AVPixelFormat qsv_format; |
|
|
|
|
|
|
|
|
|
qsv_format = ff_qsv_map_pixfmt(s->parser->format); |
|
|
|
|
if (qsv_format < 0) { |
|
|
|
|
av_log(avctx, AV_LOG_ERROR, |
|
|
|
|
"Only 8-bit YUV420 streams are supported.\n"); |
|
|
|
|
ret = AVERROR(ENOSYS); |
|
|
|
|
goto reinit_fail; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
s->orig_pix_fmt = s->parser->format; |
|
|
|
|
avctx->pix_fmt = pix_fmts[1] = qsv_format; |
|
|
|
|
avctx->width = s->parser->width; |
|
|
|
|
avctx->height = s->parser->height; |
|
|
|
|
avctx->coded_width = s->parser->coded_width; |
|
|
|
|
avctx->coded_height = s->parser->coded_height; |
|
|
|
|
avctx->level = s->avctx_internal->level; |
|
|
|
|
avctx->profile = s->avctx_internal->profile; |
|
|
|
|
|
|
|
|
|
ret = ff_get_format(avctx, pix_fmts); |
|
|
|
|
if (!s->qsv.session || AV_PIX_FMT_NONE==avctx->pix_fmt) { |
|
|
|
|
ret = ff_qsv_decode_init(avctx, &s->qsv, pkt); |
|
|
|
|
/* consume packet without a header */ |
|
|
|
|
if (AVERROR(EAGAIN)==ret) |
|
|
|
|
return pkt->size; |
|
|
|
|
if (ret < 0) |
|
|
|
|
goto reinit_fail; |
|
|
|
|
|
|
|
|
|
avctx->pix_fmt = ret; |
|
|
|
|
|
|
|
|
|
ret = ff_qsv_decode_init(avctx, &s->qsv); |
|
|
|
|
if (ret < 0) |
|
|
|
|
goto reinit_fail; |
|
|
|
|
return ret; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return ff_qsv_decode(avctx, &s->qsv, frame, got_frame, &s->pkt_filtered); |
|
|
|
|
|
|
|
|
|
reinit_fail: |
|
|
|
|
s->orig_pix_fmt = s->parser->format = avctx->pix_fmt = AV_PIX_FMT_NONE; |
|
|
|
|
return ret; |
|
|
|
|
return ff_qsv_decode(avctx, &s->qsv, frame, got_frame, pkt); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static int qsv_decode_frame(AVCodecContext *avctx, void *data, |
|
|
|
@ -262,7 +187,6 @@ static void qsv_decode_flush(AVCodecContext *avctx) |
|
|
|
|
QSVH264Context *s = avctx->priv_data; |
|
|
|
|
|
|
|
|
|
qsv_clear_buffers(s); |
|
|
|
|
s->orig_pix_fmt = AV_PIX_FMT_NONE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
AVHWAccel ff_h264_qsv_hwaccel = { |
|
|
|
|