diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-03-29 14:15:16 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-03-30 17:47:12 +0200 |
commit | b691fd7a4dfca766075c022922a75cdbca4e6d92 (patch) | |
tree | 6b6acebc55603b12a3973becc1db417b23d33952 /libavcodec/h264.c | |
parent | 9ad80ef3db41a70a4c272f17216b6e09011368ea (diff) | |
download | ffmpeg-b691fd7a4dfca766075c022922a75cdbca4e6d92.tar.gz |
h264: drop ff_h264_ prefix from static function ff_h264_decode_rbsp_trailing()
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 520a97d80b..3b1fdb2ccf 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -262,7 +262,7 @@ nsc: * Identify the exact end of the bitstream * @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 r; @@ -4225,7 +4225,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size) dst_length--; bit_length = !dst_length ? 0 : (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) av_log(h->s.avctx, AV_LOG_DEBUG, |