mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
h264parser: Fix the return value type for the SEI palyload parsing methods.
The return value type of SEI payload parsing functions are GstH264ParserResult. https://bugzilla.gnome.org/show_bug.cgi?id=695475
This commit is contained in:
parent
ad7ffe64a6
commit
65758debf1
1 changed files with 3 additions and 3 deletions
|
@ -992,7 +992,7 @@ error:
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
static GstH264ParserResult
|
||||
gst_h264_parser_parse_buffering_period (GstH264NalParser * nalparser,
|
||||
GstH264BufferingPeriod * per, NalReader * nr)
|
||||
{
|
||||
|
@ -1104,7 +1104,7 @@ error:
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
static GstH264ParserResult
|
||||
gst_h264_parser_parse_pic_timing (GstH264NalParser * nalparser,
|
||||
GstH264PicTiming * tim, NalReader * nr)
|
||||
{
|
||||
|
@ -1957,7 +1957,7 @@ gst_h264_parser_parse_sei (GstH264NalParser * nalparser, GstH264NalUnit * nalu,
|
|||
guint32 payloadSize;
|
||||
guint8 payload_type_byte, payload_size_byte;
|
||||
guint remaining, payload_size;
|
||||
gboolean res;
|
||||
GstH264ParserResult res;
|
||||
|
||||
GST_DEBUG ("parsing \"Sei message\"");
|
||||
|
||||
|
|
Loading…
Reference in a new issue