]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/pcx.c
Fix a typo in the documentation.
[ffmpeg] / libavcodec / pcx.c
index 23a808d633dbc4c56d39df2a16fe88780b5d4dfe..43d7a5a028e243df022861f587ca32b91c7e2f72 100644 (file)
@@ -24,7 +24,7 @@
 
 #include "avcodec.h"
 #include "bytestream.h"
-#include "bitstream.h"
+#include "get_bits.h"
 
 typedef struct PCXContext {
     AVFrame picture;
@@ -244,7 +244,7 @@ AVCodec pcx_decoder = {
     NULL,
     pcx_end,
     pcx_decode_frame,
-    0,
+    CODEC_CAP_DR1,
     NULL,
     .long_name = NULL_IF_CONFIG_SMALL("PC Paintbrush PCX image"),
 };