Message ID | 20210325154956.2405162-2-andreas.rheinhardt@gmail.com |
---|---|
State | Accepted |
Commit | 0ab70230f2a597545fb6063e3cebd26bbca93fa6 |
Headers | show |
Series | [FFmpeg-devel,01/12] avcodec/vorbisenc: Remove always-false check | expand |
Context | Check | Description |
---|---|---|
andriy/x86_make | success | Make finished |
andriy/x86_make_fate | success | Make fate finished |
andriy/PPC64_make | success | Make finished |
andriy/PPC64_make_fate | success | Make fate finished |
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c index 32e94d24f6..8339799dd3 100644 --- a/libavcodec/sonic.c +++ b/libavcodec/sonic.c @@ -832,8 +832,6 @@ static int sonic_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, return ret; } -// av_log(avctx, AV_LOG_DEBUG, "used bytes: %d\n", (put_bits_count(&pb)+7)/8); - avpkt->size = ff_rac_terminate(&c, 0); *got_packet_ptr = 1; return 0;
Compilation would fail if it were outcommented as it refers to a nonexistent PutBitContext. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> --- libavcodec/sonic.c | 2 -- 1 file changed, 2 deletions(-)