mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
codecs: h264decoder: Fix return value type
Return value should be GstFlowReturn not gboolean Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1426>
This commit is contained in:
parent
4ff27314f6
commit
9e0c2c4a09
1 changed files with 1 additions and 1 deletions
|
@ -593,7 +593,7 @@ gst_h264_decoder_parse_sps (GstH264Decoder * self, GstH264NalUnit * nalu)
|
|||
GstH264DecoderPrivate *priv = self->priv;
|
||||
GstH264SPS sps;
|
||||
GstH264ParserResult pres;
|
||||
gboolean ret;
|
||||
GstFlowReturn ret;
|
||||
|
||||
pres = gst_h264_parse_sps (nalu, &sps);
|
||||
if (pres != GST_H264_PARSER_OK) {
|
||||
|
|
Loading…
Reference in a new issue