Browse Source

avformat/gxf: fix old codec id

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 12 years ago
parent
commit
f1f0b01c47
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/gxf.c

+ 1
- 1
libavformat/gxf.c View File

@@ -166,7 +166,7 @@ static int get_sindex(AVFormatContext *s, int id, int format) {
case 26: /* AVCi50 / AVCi100 (AVC Intra) */ case 26: /* AVCi50 / AVCi100 (AVC Intra) */
case 29: /* AVCHD */ case 29: /* AVCHD */
st->codec->codec_type = AVMEDIA_TYPE_VIDEO; st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
st->codec->codec_id = CODEC_ID_H264;
st->codec->codec_id = AV_CODEC_ID_H264;
st->need_parsing = AVSTREAM_PARSE_HEADERS; st->need_parsing = AVSTREAM_PARSE_HEADERS;
break; break;
// timecode tracks: // timecode tracks:


Loading…
Cancel
Save