]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cscd.c
adx: Convert to the new bitstream reader
[ffmpeg] / libavcodec / cscd.c
index 9ae7e33c7a4f6124a1170c7065d06bcd3e18882f..0cb375b60d93142a3ae7ac5c12b9c39a2feca7de 100644 (file)
@@ -30,7 +30,7 @@
 #endif
 #include "libavutil/lzo.h"
 
-typedef struct {
+typedef struct CamStudioContext {
     int linelen, height, bpp;
     unsigned int decomp_size;
     unsigned char* decomp_buf;
@@ -256,5 +256,5 @@ AVCodec ff_cscd_decoder = {
     .init           = decode_init,
     .close          = decode_end,
     .decode         = decode_frame,
-    .capabilities   = CODEC_CAP_DR1,
+    .capabilities   = AV_CODEC_CAP_DR1,
 };