summaryrefslogtreecommitdiff
path: root/libavcodec/h264_sei.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2013-08-02 10:33:00 +0200
committerDiego Biurrun <diego@biurrun.de>2013-08-02 18:19:40 +0200
commit0d8b943d204bd16fcf2f4a59c742e65a401dd3d0 (patch)
treeeb928780c494f7e0efa3a5efb8c4c7ce21b8d578 /libavcodec/h264_sei.c
parentb18412171fda4f09bbc2f07858c5c1bb43dfae84 (diff)
h264_sei: Return meaningful values
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r--libavcodec/h264_sei.c27
1 files changed, 16 insertions, 11 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index 4fe5193dcc..dde5c2174c 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -61,7 +61,7 @@ static int decode_picture_timing(H264Context *h)
h->sei_ct_type = 0;
if (h->sei_pic_struct > SEI_PIC_STRUCT_FRAME_TRIPLING)
- return -1;
+ return AVERROR_INVALIDDATA;
num_clock_ts = sei_num_clock_ts_table[h->sei_pic_struct];
@@ -109,7 +109,7 @@ static int decode_unregistered_user_data(H264Context *h, int size)
int e, build, i;
if (size < 16)
- return -1;
+ return AVERROR_INVALIDDATA;
for (i = 0; i < sizeof(user_data) - 1 && i < size; i++)
user_data[i] = get_bits(&h->gb, 8);
@@ -150,7 +150,7 @@ static int decode_buffering_period(H264Context *h)
if (sps_id > 31 || !h->sps_buffers[sps_id]) {
av_log(h->avctx, AV_LOG_ERROR,
"non-existing SPS %d referenced in buffering period\n", sps_id);
- return -1;
+ return AVERROR_INVALIDDATA;
}
sps = h->sps_buffers[sps_id];
@@ -181,6 +181,7 @@ int ff_h264_decode_sei(H264Context *h)
while (get_bits_left(&h->gb) > 16) {
int size = 0;
int type = 0;
+ int ret = 0;
do
type += show_bits(&h->gb, 8);
@@ -192,20 +193,24 @@ int ff_h264_decode_sei(H264Context *h)
switch (type) {
case SEI_TYPE_PIC_TIMING: // Picture timing SEI
- if (decode_picture_timing(h) < 0)
- return -1;
+ ret = decode_picture_timing(h);
+ if (ret < 0)
+ return ret;
break;
case SEI_TYPE_USER_DATA_UNREGISTERED:
- if (decode_unregistered_user_data(h, size) < 0)
- return -1;
+ ret = decode_unregistered_user_data(h, size);
+ if (ret < 0)
+ return ret;
break;
case SEI_TYPE_RECOVERY_POINT:
- if (decode_recovery_point(h) < 0)
- return -1;
+ ret = decode_recovery_point(h);
+ if (ret < 0)
+ return ret;
break;
case SEI_BUFFERING_PERIOD:
- if (decode_buffering_period(h) < 0)
- return -1;
+ ret = decode_buffering_period(h);
+ if (ret < 0)
+ return ret;
break;
default:
skip_bits(&h->gb, 8 * size);