diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-25 02:28:45 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-03-30 12:36:31 +0200 |
commit | 0ab70230f2a597545fb6063e3cebd26bbca93fa6 (patch) | |
tree | fc87a0548dbb29f40a64020bf43fef51509e9457 /libavcodec/sonic.c | |
parent | e4ccd348c15d30d24e1270b4cd3455c7ebaeb229 (diff) | |
download | ffmpeg-0ab70230f2a597545fb6063e3cebd26bbca93fa6.tar.gz |
avcodec/sonic: Remove outdated outcommented line
Compilation would fail if it were outcommented as it refers to a
nonexistent PutBitContext.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/sonic.c')
-rw-r--r-- | libavcodec/sonic.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c index c049f6aedc..c2cb47a2b4 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; |