Commit b691fd7a authored by Diego Biurrun's avatar Diego Biurrun

h264: drop ff_h264_ prefix from static function ff_h264_decode_rbsp_trailing()

parent 9ad80ef3
...@@ -262,7 +262,7 @@ nsc: ...@@ -262,7 +262,7 @@ nsc:
* Identify the exact end of the bitstream * Identify the exact end of the bitstream
* @return the length of the trailing, or 0 if damaged * @return the length of the trailing, or 0 if damaged
*/ */
static int ff_h264_decode_rbsp_trailing(H264Context *h, const uint8_t *src) static int decode_rbsp_trailing(H264Context *h, const uint8_t *src)
{ {
int v = *src; int v = *src;
int r; int r;
...@@ -4225,7 +4225,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size) ...@@ -4225,7 +4225,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
dst_length--; dst_length--;
bit_length = !dst_length ? 0 bit_length = !dst_length ? 0
: (8 * dst_length - : (8 * dst_length -
ff_h264_decode_rbsp_trailing(h, ptr + dst_length - 1)); decode_rbsp_trailing(h, ptr + dst_length - 1));
if (s->avctx->debug & FF_DEBUG_STARTCODE) if (s->avctx->debug & FF_DEBUG_STARTCODE)
av_log(h->s.avctx, AV_LOG_DEBUG, av_log(h->s.avctx, AV_LOG_DEBUG,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment