Commit e9b6212d authored by James Almer's avatar James Almer

Merge commit '030de53e'

* commit '030de53e':
  libopenh264dec: Let the framework use the h264_mp4toannexb bitstream filter
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 42f27d1b 030de53e
...@@ -35,28 +35,15 @@ ...@@ -35,28 +35,15 @@
typedef struct SVCContext { typedef struct SVCContext {
ISVCDecoder *decoder; ISVCDecoder *decoder;
AVBSFContext *bsf;
AVFifoBuffer *packet_fifo;
AVPacket pkt_filtered;
} SVCContext; } SVCContext;
static av_cold int svc_decode_close(AVCodecContext *avctx) static av_cold int svc_decode_close(AVCodecContext *avctx)
{ {
SVCContext *s = avctx->priv_data; SVCContext *s = avctx->priv_data;
AVPacket pkt;
if (s->decoder) if (s->decoder)
WelsDestroyDecoder(s->decoder); WelsDestroyDecoder(s->decoder);
while (s->packet_fifo && av_fifo_size(s->packet_fifo) >= sizeof(pkt)) {
av_fifo_generic_read(s->packet_fifo, &pkt, sizeof(pkt), NULL);
av_packet_unref(&pkt);
}
av_bsf_free(&s->bsf);
av_packet_unref(&s->pkt_filtered);
av_fifo_free(s->packet_fifo);
return 0; return 0;
} }
...@@ -71,10 +58,6 @@ static av_cold int svc_decode_init(AVCodecContext *avctx) ...@@ -71,10 +58,6 @@ static av_cold int svc_decode_init(AVCodecContext *avctx)
if ((err = ff_libopenh264_check_version(avctx)) < 0) if ((err = ff_libopenh264_check_version(avctx)) < 0)
return err; return err;
s->packet_fifo = av_fifo_alloc(sizeof(AVPacket));
if (!s->packet_fifo)
return AVERROR(ENOMEM);
if (WelsCreateDecoder(&s->decoder)) { if (WelsCreateDecoder(&s->decoder)) {
av_log(avctx, AV_LOG_ERROR, "Unable to create decoder\n"); av_log(avctx, AV_LOG_ERROR, "Unable to create decoder\n");
return AVERROR_UNKNOWN; return AVERROR_UNKNOWN;
...@@ -103,38 +86,6 @@ static av_cold int svc_decode_init(AVCodecContext *avctx) ...@@ -103,38 +86,6 @@ static av_cold int svc_decode_init(AVCodecContext *avctx)
return 0; return 0;
} }
static int init_bsf(AVCodecContext *avctx)
{
SVCContext *s = avctx->priv_data;
const AVBitStreamFilter *filter;
int ret;
if (s->bsf)
return 0;
// If the input stream already is annex b, this BSF only passes the
// packets through unchanged.
filter = av_bsf_get_by_name("h264_mp4toannexb");
if (!filter)
return AVERROR_BSF_NOT_FOUND;
ret = av_bsf_alloc(filter, &s->bsf);
if (ret < 0)
return ret;
ret = avcodec_parameters_from_context(s->bsf->par_in, avctx);
if (ret < 0)
return ret;
s->bsf->time_base_in = avctx->time_base;
ret = av_bsf_init(s->bsf);
if (ret < 0)
return ret;
return ret;
}
static int svc_decode_frame(AVCodecContext *avctx, void *data, static int svc_decode_frame(AVCodecContext *avctx, void *data,
int *got_frame, AVPacket *avpkt) int *got_frame, AVPacket *avpkt)
{ {
...@@ -143,87 +94,39 @@ static int svc_decode_frame(AVCodecContext *avctx, void *data, ...@@ -143,87 +94,39 @@ static int svc_decode_frame(AVCodecContext *avctx, void *data,
uint8_t* ptrs[3]; uint8_t* ptrs[3];
int linesize[3]; int linesize[3];
AVFrame *avframe = data; AVFrame *avframe = data;
int ret;
DECODING_STATE state; DECODING_STATE state;
if ((ret = init_bsf(avctx)) < 0) state = (*s->decoder)->DecodeFrame2(s->decoder, avpkt->data, avpkt->size, ptrs, &info);
return ret; if (state != dsErrorFree) {
av_log(avctx, AV_LOG_ERROR, "DecodeFrame2 failed\n");
if (avpkt->size) { return AVERROR_UNKNOWN;
AVPacket input_ref = { 0 }; }
if (av_fifo_space(s->packet_fifo) < sizeof(input_ref)) { if (info.iBufferStatus != 1) {
ret = av_fifo_realloc2(s->packet_fifo, av_log(avctx, AV_LOG_DEBUG, "No frame produced\n");
av_fifo_size(s->packet_fifo) + sizeof(input_ref)); return avpkt->size;
if (ret < 0)
return ret;
}
ret = av_packet_ref(&input_ref, avpkt);
if (ret < 0)
return ret;
av_fifo_generic_write(s->packet_fifo, &input_ref, sizeof(input_ref), NULL);
} }
while (!*got_frame) { ff_set_dimensions(avctx, info.UsrData.sSystemBuffer.iWidth, info.UsrData.sSystemBuffer.iHeight);
/* prepare the input data -- convert to Annex B if needed */ // The decoder doesn't (currently) support decoding into a user
if (s->pkt_filtered.size <= 0) { // provided buffer, so do a copy instead.
AVPacket input_ref; if (ff_get_buffer(avctx, avframe, 0) < 0) {
av_log(avctx, AV_LOG_ERROR, "Unable to allocate buffer\n");
/* no more data */ return AVERROR(ENOMEM);
if (av_fifo_size(s->packet_fifo) < sizeof(AVPacket)) }
return avpkt->size ? avpkt->size : 0;
linesize[0] = info.UsrData.sSystemBuffer.iStride[0];
av_packet_unref(&s->pkt_filtered); linesize[1] = linesize[2] = info.UsrData.sSystemBuffer.iStride[1];
av_image_copy(avframe->data, avframe->linesize, (const uint8_t **) ptrs, linesize, avctx->pix_fmt, avctx->width, avctx->height);
av_fifo_generic_read(s->packet_fifo, &input_ref, sizeof(input_ref), NULL);
ret = av_bsf_send_packet(s->bsf, &input_ref); avframe->pts = avpkt->pts;
if (ret < 0) { avframe->pkt_dts = avpkt->dts;
av_packet_unref(&input_ref);
return ret;
}
ret = av_bsf_receive_packet(s->bsf, &s->pkt_filtered);
if (ret < 0)
av_packet_move_ref(&s->pkt_filtered, &input_ref);
else
av_packet_unref(&input_ref);
}
state = (*s->decoder)->DecodeFrame2(s->decoder, s->pkt_filtered.data, s->pkt_filtered.size, ptrs, &info);
s->pkt_filtered.size = 0;
if (state != dsErrorFree) {
av_log(avctx, AV_LOG_ERROR, "DecodeFrame2 failed\n");
return AVERROR_UNKNOWN;
}
if (info.iBufferStatus != 1) {
av_log(avctx, AV_LOG_DEBUG, "No frame produced\n");
continue;
}
ret = ff_set_dimensions(avctx, info.UsrData.sSystemBuffer.iWidth, info.UsrData.sSystemBuffer.iHeight);
if (ret < 0)
return ret;
// The decoder doesn't (currently) support decoding into a user
// provided buffer, so do a copy instead.
if (ff_get_buffer(avctx, avframe, 0) < 0) {
av_log(avctx, AV_LOG_ERROR, "Unable to allocate buffer\n");
return AVERROR(ENOMEM);
}
linesize[0] = info.UsrData.sSystemBuffer.iStride[0];
linesize[1] = linesize[2] = info.UsrData.sSystemBuffer.iStride[1];
av_image_copy(avframe->data, avframe->linesize, (const uint8_t **) ptrs, linesize, avctx->pix_fmt, avctx->width, avctx->height);
avframe->pts = s->pkt_filtered.pts;
avframe->pkt_dts = s->pkt_filtered.dts;
#if FF_API_PKT_PTS #if FF_API_PKT_PTS
FF_DISABLE_DEPRECATION_WARNINGS FF_DISABLE_DEPRECATION_WARNINGS
avframe->pkt_pts = s->pkt_filtered.pts; avframe->pkt_pts = avpkt->pts;
FF_ENABLE_DEPRECATION_WARNINGS FF_ENABLE_DEPRECATION_WARNINGS
#endif #endif
*got_frame = 1; *got_frame = 1;
}
return avpkt->size; return avpkt->size;
} }
...@@ -241,4 +144,5 @@ AVCodec ff_libopenh264_decoder = { ...@@ -241,4 +144,5 @@ AVCodec ff_libopenh264_decoder = {
.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1, .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_SETS_PKT_DTS | FF_CODEC_CAP_INIT_THREADSAFE | .caps_internal = FF_CODEC_CAP_SETS_PKT_DTS | FF_CODEC_CAP_INIT_THREADSAFE |
FF_CODEC_CAP_INIT_CLEANUP, FF_CODEC_CAP_INIT_CLEANUP,
.bsfs = "h264_mp4toannexb",
}; };
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