]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ra288.c
aacenc: populate the sce->ics.swb_offset table pointer
[ffmpeg] / libavcodec / ra288.c
index 189d5c51f8aca1720506011d4237afba6fcf7c7d..00ce49102bfbb37271bbf76d46658aa9c9e13445 100644 (file)
@@ -81,7 +81,7 @@ static av_cold int ra288_decode_init(AVCodecContext *avctx)
         return AVERROR_PATCHWELCOME;
     }
 
-    ractx->fdsp = avpriv_float_dsp_alloc(avctx->flags & CODEC_FLAG_BITEXACT);
+    ractx->fdsp = avpriv_float_dsp_alloc(avctx->flags & AV_CODEC_FLAG_BITEXACT);
     if (!ractx->fdsp)
         return AVERROR(ENOMEM);
 
@@ -247,5 +247,5 @@ AVCodec ff_ra_288_decoder = {
     .init           = ra288_decode_init,
     .decode         = ra288_decode_frame,
     .close          = ra288_decode_close,
-    .capabilities   = CODEC_CAP_DR1,
+    .capabilities   = AV_CODEC_CAP_DR1,
 };