Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
cea7fd9a
Commit
cea7fd9a
authored
Apr 25, 2017
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlp: Drop ff_ prefix from a static function
parent
1f6e5dd4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mlp_parser.c
libavcodec/mlp_parser.c
+2
-2
No files found.
libavcodec/mlp_parser.c
View file @
cea7fd9a
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment