summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h264.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index bf2ae361f6..d4cb0300c1 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -1274,11 +1274,8 @@ static int get_avc_nalsize(H264Context *h, const uint8_t *buf,
int i, nalsize = 0;
if (*buf_index >= buf_size - h->nal_length_size) {
- av_log(h->avctx, AV_LOG_ERROR,
- "AVC: The buffer size %d is too short to read "
- "the nal length size %d at the offset %d.\n",
- buf_size, h->nal_length_size, *buf_index);
- return AVERROR_INVALIDDATA;
+ // the end of the buffer is reached, refill it.
+ return AVERROR(EAGAIN);
}
for (i = 0; i < h->nal_length_size; i++)