[haiku-commits] r36844 - haiku/trunk/src/add-ons/media/plugins/ffmpeg

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 17 May 2010 18:17:06 +0200 (CEST)

Author: stippi
Date: 2010-05-17 18:17:06 +0200 (Mon, 17 May 2010)
New Revision: 36844
Changeset: http://dev.haiku-os.org/changeset/36844/haiku

Modified:
   haiku/trunk/src/add-ons/media/plugins/ffmpeg/DemuxerTable.cpp
Log:
Added some more defines for demuxers that could in theory be enabled. But we
have native implementations.


Modified: haiku/trunk/src/add-ons/media/plugins/ffmpeg/DemuxerTable.cpp
===================================================================
--- haiku/trunk/src/add-ons/media/plugins/ffmpeg/DemuxerTable.cpp       
2010-05-17 15:39:42 UTC (rev 36843)
+++ haiku/trunk/src/add-ons/media/plugins/ffmpeg/DemuxerTable.cpp       
2010-05-17 16:17:06 UTC (rev 36844)
@@ -42,11 +42,21 @@
                B_QUICKTIME_FORMAT_FAMILY, B_QUICKTIME_FORMAT_FAMILY
        },
 //     {
-//             TODO: untested!
-//             "mov", "MOV (Quicktime Movie)", "video/x-mov",
+//             // Tested and appears to work ok with the one clip I have...
+//             "matroska", "Matroska Movie", "video/x-matroska",
+//             B_WAV_FORMAT_FAMILY, B_AVI_FORMAT_FAMILY
+//     },
+//     {
+//             // Plays the limited amount of files I could test with.
+//             "mov", "Quicktime Movie", "video/x-mov",
 //             B_QUICKTIME_FORMAT_FAMILY, B_QUICKTIME_FORMAT_FAMILY
 //     },
 //     {
+//             // Plays the limited amount of files I could test with.
+//             "mp4", "MPEG-4 Movie", "video/x-mp4",
+//             B_QUICKTIME_FORMAT_FAMILY, B_QUICKTIME_FORMAT_FAMILY
+//     },
+//     {
 //             // TODO: Broken because of buggy FindKeyFrame() or Seek() 
support.
 //             "mp3", "MPEG (Motion Picture Experts Group)", "audio/mpg",
 //             B_MPEG_FORMAT_FAMILY, B_MPEG_FORMAT_FAMILY
@@ -64,7 +74,7 @@
                B_WAV_FORMAT_FAMILY, B_AVI_FORMAT_FAMILY
        },
        {
-               // TODO: Also covers "mpegvideo", plus see above.
+               // TODO: Also covers "mpegvideo", plus see mpegts.
                "mpeg", "MPEG (Motion Picture Experts Group)", "video/mpeg",
                B_MPEG_FORMAT_FAMILY, B_MPEG_FORMAT_FAMILY
        },


Other related posts:

  • » [haiku-commits] r36844 - haiku/trunk/src/add-ons/media/plugins/ffmpeg - superstippi