Browse Source

lavc/sbc: Remove bool usage.

tags/n4.3
Carl Eugen Hoyos 5 years ago
parent
commit
c59233d503
2 changed files with 1 additions and 3 deletions
  1. +0
    -1
      libavcodec/sbcdec.c
  2. +1
    -2
      libavcodec/sbcenc.c

+ 0
- 1
libavcodec/sbcdec.c View File

@@ -30,7 +30,6 @@
* SBC decoder implementation
*/

#include <stdbool.h>
#include "avcodec.h"
#include "internal.h"
#include "libavutil/intreadwrite.h"


+ 1
- 2
libavcodec/sbcenc.c View File

@@ -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;



Loading…
Cancel
Save