diff options
author | rogerdpack <rogerpack2005@gmail.com> | 2012-09-21 13:26:02 -0600 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-23 02:12:34 +0200 |
commit | 641c0eea0b8deef08907e4dddeb8416f741edad6 (patch) | |
tree | a2f31525fe43599c823927218091505ccb02456d | |
parent | 697b476c075a0330c9ea058b5e74e970d1095adb (diff) | |
download | ffmpeg-641c0eea0b8deef08907e4dddeb8416f741edad6.tar.gz |
bitmap header lookup: add code comment
Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/riff.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index f69e536506..1c3411220e 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -28,7 +28,10 @@ #include "libavutil/avassert.h" /* Note: when encoding, the first matching tag is used, so order is - important if multiple tags possible for a given codec. */ + important if multiple tags possible for a given codec. + Note also that this list is used for more than just riff, other + files use it as well. +*/ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_H264, MKTAG('H', '2', '6', '4') }, { AV_CODEC_ID_H264, MKTAG('h', '2', '6', '4') }, |