]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/intrax8.c
Fix standalone compilation of the WebVTT decoder.
[ffmpeg] / libavcodec / intrax8.c
index 213842f5851b93276257a5475d3d0851fa8ffeb5..c6df8cf2e92c13b17147d970894991a1845befcd 100644 (file)
@@ -25,6 +25,7 @@
 #include "avcodec.h"
 #include "error_resilience.h"
 #include "get_bits.h"
+#include "idctdsp.h"
 #include "mpegvideo.h"
 #include "msmpeg4data.h"
 #include "intrax8huf.h"
@@ -643,9 +644,9 @@ static int x8_decode_intra_mb(IntraX8Context* const w, const int chroma){
                                             s->current_picture.f->linesize[!!chroma] );
     }
     if(!zeros_only)
-        w->wdsp.idct_add (s->dest[chroma],
-                          s->current_picture.f->linesize[!!chroma],
-                          s->block[0] );
+        w->wdsp.idct_add(s->dest[chroma],
+                         s->current_picture.f->linesize[!!chroma],
+                         s->block[0]);
 
 block_placed: