OSDN Git Service

Merge commit 'c68d4c230ad8ca85af3999a6af8e582c43620d58'
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 2 Nov 2013 17:31:41 +0000 (18:31 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 2 Nov 2013 17:31:41 +0000 (18:31 +0100)
* commit 'c68d4c230ad8ca85af3999a6af8e582c43620d58':
  mpeg4video_parser: K&R formatting cosmetics

Conflicts:
libavcodec/mpeg4video_parser.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
1  2 
libavcodec/mpeg4video_parser.c

@@@ -96,14 -96,7 +98,14 @@@ static int av_mpeg4_decode_header(AVCod
          if (ret < 0)
              return ret;
      }
-     s1->pict_type= s->pict_type;
 +    if((s1->flags & PARSER_FLAG_USE_CODEC_TS) && s->avctx->time_base.den>0 && ret>=0){
 +        av_assert1(s1->pts == AV_NOPTS_VALUE);
 +        av_assert1(s1->dts == AV_NOPTS_VALUE);
 +
 +        s1->pts = av_rescale_q(s->time, (AVRational){1, s->avctx->time_base.den}, (AVRational){1, 1200000});
 +    }
 +
+     s1->pict_type     = s->pict_type;
      pc->first_picture = 0;
      return ret;
  }
@@@ -112,12 -105,8 +114,12 @@@ static av_cold int mpeg4video_parse_ini
  {
      struct Mp4vParseContext *pc = s->priv_data;
  
-     pc->first_picture = 1;
-     pc->enc.quant_precision=5;
 +    ff_mpeg4videodec_static_init();
 +
+     pc->first_picture           = 1;
++    pc->enc.quant_precision     = 5;
      pc->enc.slice_context_count = 1;
 +    pc->enc.showed_packed_warning = 1;
      return 0;
  }