diff options
author | ami_stuff <ami_stuff@o2.pl> | 2011-05-13 00:49:29 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-21 21:38:59 +0200 |
commit | 7ac639654f21aa78e0afa14f6c049ffa2c9078bd (patch) | |
tree | e1cedde2494e586370f2aa04a5c3b44f99dc8236 | |
parent | a304a833621a793bbf49b796fe1fd11ea1cd54c8 (diff) | |
download | ffmpeg-7ac639654f21aa78e0afa14f6c049ffa2c9078bd.tar.gz |
mov: Support R10g codec identifier.
-rw-r--r-- | libavformat/isom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index c65f9317e7..dd4008b69b 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -83,6 +83,7 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_RAWVIDEO, MKTAG('b', '4', '8', 'r') }, { CODEC_ID_R10K, MKTAG('R', '1', '0', 'k') }, /* UNCOMPRESSED 10BIT RGB */ + { CODEC_ID_R10K, MKTAG('R', '1', '0', 'g') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, /* UNCOMPRESSED 10BIT RGB */ { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, /* UNCOMPRESSED 10BIT 4:2:2 */ |