summaryrefslogtreecommitdiff
path: root/libavcodec/h264_parser.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-08-20 00:36:38 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-08-20 00:36:38 +0200
commitf10ea03df3dd1c15e3a957ca0aba528251438a79 (patch)
tree430c55a5b706d26c1f1f371c0c918eba16b92c9f /libavcodec/h264_parser.c
parentb8b36717217c6f45db71c77ad4e7c65521e7d9ff (diff)
avcodec/h264_parser: Factor get_avc_nalsize() out
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r--libavcodec/h264_parser.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c
index 8abe05d41c..615884fdac 100644
--- a/libavcodec/h264_parser.c
+++ b/libavcodec/h264_parser.c
@@ -228,26 +228,6 @@ static int scan_mmco_reset(AVCodecParserContext *s, GetBitContext *gb,
return 0;
}
-static inline int get_avc_nalsize(H264ParseContext *p, const uint8_t *buf,
- int buf_size, int *buf_index, void *logctx)
-{
- int i, nalsize = 0;
-
- if (*buf_index >= buf_size - p->nal_length_size) {
- // the end of the buffer is reached, refill it
- return AVERROR(EAGAIN);
- }
-
- for (i = 0; i < p->nal_length_size; i++)
- nalsize = ((unsigned)nalsize << 8) | buf[(*buf_index)++];
- if (nalsize <= 0 || nalsize > buf_size - *buf_index) {
- av_log(logctx, AV_LOG_ERROR,
- "AVC: nal size %d\n", nalsize);
- return AVERROR_INVALIDDATA;
- }
- return nalsize;
-}
-
/**
* Parse NAL units of found picture and decode some basic information.
*
@@ -288,7 +268,7 @@ static inline int parse_nal_units(AVCodecParserContext *s,
int src_length, consumed, nalsize = 0;
if (buf_index >= next_avc) {
- nalsize = get_avc_nalsize(p, buf, buf_size, &buf_index, avctx);
+ nalsize = get_nalsize(p->nal_length_size, buf, buf_size, &buf_index, avctx);
if (nalsize < 0)
break;
next_avc = buf_index + nalsize;