aboutsummaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorMatthew Hoops2014-05-27 23:57:39 -0400
committerMatthew Hoops2014-05-27 23:57:39 -0400
commit1ea4b36c3b6f959048cab0c6a5567fefcc390cc3 (patch)
tree67ef5a6ab8af3423e3a38bf41200d3e38922e75e /video
parent381ebe7816e023c29396f3661e0bf6ed2d9e9702 (diff)
downloadscummvm-rg350-1ea4b36c3b6f959048cab0c6a5567fefcc390cc3.tar.gz
scummvm-rg350-1ea4b36c3b6f959048cab0c6a5567fefcc390cc3.tar.bz2
scummvm-rg350-1ea4b36c3b6f959048cab0c6a5567fefcc390cc3.zip
VIDEO: Document PRMI as being Premiere metadata
Diffstat (limited to 'video')
-rw-r--r--video/avi_decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/avi_decoder.cpp b/video/avi_decoder.cpp
index 3c1c907097..68d6cb6cec 100644
--- a/video/avi_decoder.cpp
+++ b/video/avi_decoder.cpp
@@ -183,7 +183,7 @@ void AVIDecoder::handleList(uint32 listSize) {
_decodedHeader = true;
break;
case ID_INFO: // Metadata
- case ID_PRMI: // Unknown metadata, should be safe to ignore
+ case ID_PRMI: // Adobe Premiere metadata, safe to ignore
// Ignore metadata
_fileStream->skip(listSize);
return;