]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/libaomdec: remove bogus comment
authorJames Almer <jamrial@gmail.com>
Thu, 4 Oct 2018 18:43:54 +0000 (15:43 -0300)
committerJames Almer <jamrial@gmail.com>
Thu, 4 Oct 2018 18:44:15 +0000 (15:44 -0300)
It's a remnant from libvpx that's not valid for libaom.

Signed-off-by: James Almer <jamrial@gmail.com>
libavcodec/libaomdec.c

index 2530c9f76b4ada03fc1325b81c588467e211f340..a72ac984e72a9f7ea24227d79c1d9ce9f66e975c 100644 (file)
@@ -42,7 +42,6 @@ static av_cold int aom_init(AVCodecContext *avctx,
 {
     AV1DecodeContext *ctx           = avctx->priv_data;
     struct aom_codec_dec_cfg deccfg = {
-        /* token partitions+1 would be a decent choice */
         .threads = FFMIN(avctx->thread_count ? avctx->thread_count : av_cpu_count(), 16)
     };