summaryrefslogtreecommitdiffstats
path: root/TOOLS/lib/Parse/Matroska.pm
diff options
context:
space:
mode:
authorMartin Herkt <lachs0r@srsfckn.biz>2016-12-25 13:28:05 +0100
committerMartin Herkt <lachs0r@srsfckn.biz>2016-12-25 13:28:05 +0100
commitb3d670a3e1ee9c60be33b6e5fafdf3b6449b5762 (patch)
tree341f80d55bf200c6bb195f77ce50a2fd1f030345 /TOOLS/lib/Parse/Matroska.pm
parent1d4273cfb52043c8165b85e9d7ac7bc14cb59cba (diff)
parent1c761bd6f59c369e45037e80f781429da65734c3 (diff)
downloadmpv-b3d670a3e1ee9c60be33b6e5fafdf3b6449b5762.tar.bz2
mpv-b3d670a3e1ee9c60be33b6e5fafdf3b6449b5762.tar.xz
Merge branch 'master' into release/current
Diffstat (limited to 'TOOLS/lib/Parse/Matroska.pm')
-rw-r--r--TOOLS/lib/Parse/Matroska.pm30
1 files changed, 0 insertions, 30 deletions
diff --git a/TOOLS/lib/Parse/Matroska.pm b/TOOLS/lib/Parse/Matroska.pm
deleted file mode 100644
index e1c08c9814..0000000000
--- a/TOOLS/lib/Parse/Matroska.pm
+++ /dev/null
@@ -1,30 +0,0 @@
-use 5.008;
-use strict;
-use warnings;
-
-# ABSTRACT: Module collection to parse Matroska files.
-package Parse::Matroska;
-
-=head1 DESCRIPTION
-
-C<use>s L<Parse::Matroska::Reader>. See the documentation
-of the modules mentioned in L</"SEE ALSO"> for more information
-in how to use this module.
-
-It's intended for this module to contain high-level interfaces
-to the other modules in the distribution.
-
-=head1 SOURCE CODE
-
-L<https://github.com/Kovensky/Parse-Matroska>
-
-=head1 SEE ALSO
-
-L<Parse::Matroska::Reader>, L<Parse::Matroska::Element>,
-L<Parse::Matroska::Definitions>.
-
-=cut
-
-use Parse::Matroska::Reader;
-
-1;