summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSreerenj Balachandran <sreerenj.balachandran@intel.com>2013-03-09 01:49:23 +0200
committerSebastian Dröge <slomo@circular-chaos.org>2013-07-01 11:24:17 +0200
commit65758debf1eead6028f0b22a13d7965d44c0f731 (patch)
tree4d81e6c73bb0863b9f4f390dee6f4769c8569b14
parentad7ffe64a66ab48d81671651031c449149db4973 (diff)
downloadgstreamer-plugins-bad-65758debf1eead6028f0b22a13d7965d44c0f731.tar.gz
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
-rw-r--r--gst-libs/gst/codecparsers/gsth264parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst-libs/gst/codecparsers/gsth264parser.c b/gst-libs/gst/codecparsers/gsth264parser.c
index b87a2d4df..ea2655c2a 100644
--- a/gst-libs/gst/codecparsers/gsth264parser.c
+++ b/gst-libs/gst/codecparsers/gsth264parser.c
@@ -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\"");