diff options
author | Jonas Larsson <jonas@hallerud.se> | 2012-01-23 18:30:19 +0000 |
---|---|---|
committer | Vincent Penquerc'h <vincent.penquerch@collabora.co.uk> | 2012-01-23 18:31:51 +0000 |
commit | 9feea330bb94565b219c983fd7b61840044f10b9 (patch) | |
tree | 8274eaa366fc6b0c45971518970aa4285789f6b3 /gst-libs | |
parent | f847f502b4c6f0e4d07b848dbd4d751330fa7e1c (diff) |
h264parse: fix gst_h264_parse_clock_timestamp always failing
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/codecparsers/gsth264parser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst-libs/gst/codecparsers/gsth264parser.c b/gst-libs/gst/codecparsers/gsth264parser.c index d0c6c45e0..b96965091 100644 --- a/gst-libs/gst/codecparsers/gsth264parser.c +++ b/gst-libs/gst/codecparsers/gsth264parser.c @@ -1056,6 +1056,8 @@ gst_h264_parse_clock_timestamp (GstH264ClockTimestamp * tim, if (time_offset_length > 0) READ_UINT32 (nr, tim->time_offset, time_offset_length); + return TRUE; + error: GST_WARNING ("error parsing \"Clock timestamp\""); return FALSE; |