mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
mpeg2dec: Port to new way of handling frame reference
This commit is contained in:
parent
98a21f9026
commit
92d71237bf
1 changed files with 5 additions and 0 deletions
|
@ -633,6 +633,7 @@ handle_picture (GstMpeg2dec * mpeg2dec, const mpeg2_info_t * info,
|
|||
type_str = "B";
|
||||
break;
|
||||
default:
|
||||
gst_video_codec_frame_ref (frame);
|
||||
gst_video_decoder_drop_frame (GST_VIDEO_DECODER (mpeg2dec), frame);
|
||||
GST_VIDEO_DECODER_ERROR (mpeg2dec, 1, STREAM, DECODE,
|
||||
("decoding error"), ("Invalid picture type"), ret);
|
||||
|
@ -797,6 +798,7 @@ gst_mpeg2dec_handle_frame (GstVideoDecoder * decoder,
|
|||
if (ret == GST_FLOW_ERROR) {
|
||||
GST_VIDEO_DECODER_ERROR (decoder, 1, STREAM, DECODE,
|
||||
("decoding error"), ("Bad sequence header"), ret);
|
||||
gst_video_decoder_drop_frame (decoder, frame);
|
||||
gst_mpeg2dec_reset (decoder, 0);
|
||||
goto done;
|
||||
}
|
||||
|
@ -851,6 +853,7 @@ gst_mpeg2dec_handle_frame (GstVideoDecoder * decoder,
|
|||
default:
|
||||
GST_ERROR_OBJECT (mpeg2dec, "Unknown libmpeg2 state %d, FIXME", state);
|
||||
ret = GST_FLOW_OK;
|
||||
gst_video_codec_frame_unref (frame);
|
||||
goto done;
|
||||
}
|
||||
|
||||
|
@ -861,6 +864,8 @@ gst_mpeg2dec_handle_frame (GstVideoDecoder * decoder,
|
|||
}
|
||||
}
|
||||
|
||||
gst_video_codec_frame_unref (frame);
|
||||
|
||||
done:
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue