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
c59233d5
Commit
c59233d5
authored
Apr 01, 2020
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/sbc: Remove bool usage.
parent
61dcaf5f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
sbcdec.c
libavcodec/sbcdec.c
+0
-1
sbcenc.c
libavcodec/sbcenc.c
+1
-2
No files found.
libavcodec/sbcdec.c
View file @
c59233d5
...
...
@@ -30,7 +30,6 @@
* SBC decoder implementation
*/
#include <stdbool.h>
#include "avcodec.h"
#include "internal.h"
#include "libavutil/intreadwrite.h"
...
...
libavcodec/sbcenc.c
View file @
c59233d5
...
...
@@ -30,7 +30,6 @@
* SBC encoder implementation
*/
#include <stdbool.h>
#include "libavutil/opt.h"
#include "avcodec.h"
#include "internal.h"
...
...
@@ -95,7 +94,7 @@ static int sbc_analyze_audio(SBCDSPContext *s, struct sbc_frame *frame)
* Returns the length of the packed frame.
*/
static
size_t
sbc_pack_frame
(
AVPacket
*
avpkt
,
struct
sbc_frame
*
frame
,
int
joint
,
bool
msbc
)
int
joint
,
int
msbc
)
{
PutBitContext
pb
;
...
...
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