]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/rv34_parser.c
mips: intreadwrite: fix inline asm for gcc 4.8
[ffmpeg] / libavcodec / rv34_parser.c
index c2563a5fdc48aed9b0b3304f34a851b4ab555832..4c1d2e396e5d05416e4f4caac5f8d5428d840f7d 100644 (file)
@@ -43,7 +43,6 @@ static int rv34_parse(AVCodecParserContext *s,
                       const uint8_t *buf, int buf_size)
 {
     RV34ParseContext *pc = s->priv_data;
-    int off;
     int type, pts, hdr;
 
     if (buf_size < 13 + *buf * 8) {
@@ -52,7 +51,6 @@ static int rv34_parse(AVCodecParserContext *s,
         return buf_size;
     }
 
-    off = AV_RL32(buf + 5);
     hdr = AV_RB32(buf + 9 + *buf * 8);
     if (avctx->codec_id == CODEC_ID_RV30) {
         type = (hdr >> 27) & 3;
@@ -80,18 +78,16 @@ static int rv34_parse(AVCodecParserContext *s,
 
 #ifdef CONFIG_RV30_PARSER
 AVCodecParser ff_rv30_parser = {
-    { CODEC_ID_RV30 },
-    sizeof(RV34ParseContext),
-    NULL,
-    rv34_parse,
+    .codec_ids      = { CODEC_ID_RV30 },
+    .priv_data_size = sizeof(RV34ParseContext),
+    .parser_parse   = rv34_parse,
 };
 #endif
 
 #ifdef CONFIG_RV40_PARSER
 AVCodecParser ff_rv40_parser = {
-    { CODEC_ID_RV40 },
-    sizeof(RV34ParseContext),
-    NULL,
-    rv34_parse,
+    .codec_ids      = { CODEC_ID_RV40 },
+    .priv_data_size = sizeof(RV34ParseContext),
+    .parser_parse   = rv34_parse,
 };
 #endif