mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
lavc/sbc: Remove bool usage.
This commit is contained in:
parent
61dcaf5fb7
commit
c59233d503
@ -30,7 +30,6 @@
|
|||||||
* SBC decoder implementation
|
* SBC decoder implementation
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "libavutil/intreadwrite.h"
|
#include "libavutil/intreadwrite.h"
|
||||||
|
@ -30,7 +30,6 @@
|
|||||||
* SBC encoder implementation
|
* SBC encoder implementation
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include "libavutil/opt.h"
|
#include "libavutil/opt.h"
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "internal.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.
|
* Returns the length of the packed frame.
|
||||||
*/
|
*/
|
||||||
static size_t sbc_pack_frame(AVPacket *avpkt, struct sbc_frame *frame,
|
static size_t sbc_pack_frame(AVPacket *avpkt, struct sbc_frame *frame,
|
||||||
int joint, bool msbc)
|
int joint, int msbc)
|
||||||
{
|
{
|
||||||
PutBitContext pb;
|
PutBitContext pb;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user