summaryrefslogtreecommitdiff
path: root/libavcodec/mlp_parser.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2017-04-25 16:26:57 -0400
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-04-26 11:21:18 -0400
commitcea7fd9afb8488a6c48f7d7ee38602e1fd3dd425 (patch)
tree075be9c25bbf523e2925d559d65c5b6c43c97181 /libavcodec/mlp_parser.c
parent1f6e5dd4d4dd9c02371ad211049d27edb6d95286 (diff)
mlp: Drop ff_ prefix from a static function
Diffstat (limited to 'libavcodec/mlp_parser.c')
-rw-r--r--libavcodec/mlp_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mlp_parser.c b/libavcodec/mlp_parser.c
index e9ba840200..fb9ede8702 100644
--- a/libavcodec/mlp_parser.c
+++ b/libavcodec/mlp_parser.c
@@ -120,7 +120,7 @@ static uint64_t truehd_layout(int chanmap)
return layout;
}
-static int ff_mlp_get_major_sync_size(const uint8_t * buf, int bufsize)
+static int mlp_get_major_sync_size(const uint8_t * buf, int bufsize)
{
int has_extension, extensions = 0;
int size = 28;
@@ -150,7 +150,7 @@ int ff_mlp_read_major_sync(void *log, MLPHeaderInfo *mh, BitstreamContext *bc)
assert(bitstream_tell(bc) == 0);
- header_size = ff_mlp_get_major_sync_size(bc->buffer, bc->size_in_bits >> 3);
+ header_size = mlp_get_major_sync_size(bc->buffer, bc->size_in_bits >> 3);
if (header_size < 0 || bc->size_in_bits < header_size << 3) {
av_log(log, AV_LOG_ERROR, "packet too short, unable to read major sync\n");
return -1;