diff options
author | Reuben Martin <reuben.m@gmail.com> | 2013-06-17 19:09:34 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-06-27 18:13:45 +0200 |
commit | 86190afbda0c6e663596d799a939a7ffca8e7cfa (patch) | |
tree | 636ece1c1c30002fd4b055a2fb8f18f03fdd1b6d /libavformat | |
parent | 7eb6eb03d83a4d6454ce1e20ec672dbf99f8f009 (diff) | |
download | ffmpeg-86190afbda0c6e663596d799a939a7ffca8e7cfa.tar.gz |
gxf: Added codec ID to playback AVCHD
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/gxf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/gxf.c b/libavformat/gxf.c index 6cc8afde83..e73243559e 100644 --- a/libavformat/gxf.c +++ b/libavformat/gxf.c @@ -164,6 +164,7 @@ static int get_sindex(AVFormatContext *s, int id, int format) { st->codec->sample_rate = 48000; break; case 26: /* AVCi50 / AVCi100 (AVC Intra) */ + case 29: /* AVCHD */ st->codec->codec_type = AVMEDIA_TYPE_VIDEO; st->codec->codec_id = CODEC_ID_H264; st->need_parsing = AVSTREAM_PARSE_HEADERS; |