]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/h264_parser.c
Add operand size to add instructions.
[ffmpeg] / libavcodec / h264_parser.c
index 7ae5d5ab7d627e810f194559d848ab137670a1bc..27fba4b628f560c4bf5217207b1580a539105952 100644 (file)
@@ -97,7 +97,7 @@ found:
     return i-(state&5);
 }
 
-/*!
+/**
  * Parse NAL units of found picture and decode some basic information.
  *
  * @param s parser context.
@@ -117,7 +117,7 @@ static inline int parse_nal_units(AVCodecParserContext *s,
     const uint8_t *ptr;
 
     /* set some sane default values */
-    s->pict_type = FF_I_TYPE;
+    s->pict_type = AV_PICTURE_TYPE_I;
     s->key_frame = 0;
 
     h->s.avctx= avctx;