]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/png_parser.c
Fix typo in v410 decoder.
[ffmpeg] / libavcodec / png_parser.c
index 47056fa25129e378947c25a0cfd0e77e4dbc5881..877b894e4d2c746ac12e3c98715509171b319c63 100644 (file)
@@ -25,9 +25,7 @@
  */
 
 #include "parser.h"
-
-#define PNGSIG 0x89504e470d0a1a0a
-#define MNGSIG 0x8a4d4e470d0a1a0a
+#include "png.h"
 
 typedef struct PNGParseContext
 {
@@ -115,9 +113,8 @@ flush:
 }
 
 AVCodecParser ff_png_parser = {
-    { CODEC_ID_PNG },
-    sizeof(PNGParseContext),
-    NULL,
-    png_parse,
-    ff_parse_close,
+    .codec_ids      = { CODEC_ID_PNG },
+    .priv_data_size = sizeof(PNGParseContext),
+    .parser_parse   = png_parse,
+    .parser_close   = ff_parse_close,
 };