diff options
author | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2005-11-30 10:50:13 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2005-11-30 10:50:13 +0000 |
commit | 0bb0289c3ab89b488c622bab606f861a517c3b88 (patch) | |
tree | 200047ef81f37d3c6199f8a305c7d32ba5c47c57 /libavformat/avienc.c | |
parent | 9fa62f2aade4ded0ef64ae8c5012ab933d8ad64d (diff) | |
download | ffmpeg-0bb0289c3ab89b488c622bab606f861a517c3b88.tar.gz |
add some h.264 fourccs to codec_bmp_tags[]
Originally committed as revision 4712 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avienc.c')
-rw-r--r-- | libavformat/avienc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/avienc.c b/libavformat/avienc.c index ac3b0be069..7014589527 100644 --- a/libavformat/avienc.c +++ b/libavformat/avienc.c @@ -77,6 +77,10 @@ void end_tag(ByteIOContext *pb, offset_t start) important if multiple tags possible for a given codec. */ const CodecTag codec_bmp_tags[] = { { CODEC_ID_H264, MKTAG('H', '2', '6', '4') }, + { CODEC_ID_H264, MKTAG('h', '2', '6', '4') }, + { CODEC_ID_H264, MKTAG('X', '2', '6', '4') }, + { CODEC_ID_H264, MKTAG('x', '2', '6', '4') }, + { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, { CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') }, { CODEC_ID_H263, MKTAG('H', '2', '6', '3') }, |