Commit c59233d5 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavc/sbc: Remove bool usage.

parent 61dcaf5f
......@@ -30,7 +30,6 @@
* SBC decoder implementation
*/
#include <stdbool.h>
#include "avcodec.h"
#include "internal.h"
#include "libavutil/intreadwrite.h"
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment