Commit d869928c authored by Aman Gupta's avatar Aman Gupta

avcodec/videotoolbox: reset bitstream_size in end_frame

This allows decode_slice to be invoked multiple times before end_frame,
causing slices to accumulate before being fed into the VT decoder.

An upcoming commit will re-use decode_slice for parameter NALUs, so
they can be propagated into the VT decoder session along with slice
data.
Signed-off-by: 's avatarAman Gupta <aman@tmm1.net>
parent b4b17704
...@@ -300,8 +300,6 @@ int ff_videotoolbox_h264_start_frame(AVCodecContext *avctx, ...@@ -300,8 +300,6 @@ int ff_videotoolbox_h264_start_frame(AVCodecContext *avctx,
VTContext *vtctx = avctx->internal->hwaccel_priv_data; VTContext *vtctx = avctx->internal->hwaccel_priv_data;
H264Context *h = avctx->priv_data; H264Context *h = avctx->priv_data;
vtctx->bitstream_size = 0;
if (h->is_avc == 1) { if (h->is_avc == 1) {
return videotoolbox_buffer_copy(vtctx, buffer, size); return videotoolbox_buffer_copy(vtctx, buffer, size);
} }
...@@ -600,8 +598,10 @@ static int videotoolbox_h264_end_frame(AVCodecContext *avctx) ...@@ -600,8 +598,10 @@ static int videotoolbox_h264_end_frame(AVCodecContext *avctx)
{ {
H264Context *h = avctx->priv_data; H264Context *h = avctx->priv_data;
AVFrame *frame = h->cur_pic_ptr->f; AVFrame *frame = h->cur_pic_ptr->f;
VTContext *vtctx = avctx->internal->hwaccel_priv_data;
return videotoolbox_common_end_frame(avctx, frame); int ret = videotoolbox_common_end_frame(avctx, frame);
vtctx->bitstream_size = 0;
return ret;
} }
static int videotoolbox_hevc_end_frame(AVCodecContext *avctx) static int videotoolbox_hevc_end_frame(AVCodecContext *avctx)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment