summaryrefslogtreecommitdiff
path: root/inc/profiles/container.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/profiles/container.h')
-rw-r--r--inc/profiles/container.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/inc/profiles/container.h b/inc/profiles/container.h
deleted file mode 100644
index 26cec8e..0000000
--- a/inc/profiles/container.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * File: container.h
- * Author: savop
- *
- * Created on 8. Januar 2010, 10:45
- */
-
-#ifndef _CONTAINER_H
-#define _CONTAINER_H
-
-#include "profile_data.h"
-
-extern "C" {
-#include <libavcodec/avcodec.h>
-#include <libavformat/avformat.h>
-}
-
-class cContainerDetector {
-public:
- static VideoContainerProfile detect(AVFormatContext* Ctx);
-private:
- /**
- * MPEG1
- */
- static VideoContainerProfile detectMPEG1Container(AVFormatContext* Ctx);
- /**
- * MPEG2-PS
- * MPEG2-TS
- * MPEG2-TS-DLNA
- * MPEG2-TS-DLNA-T
- */
- static VideoContainerProfile detectMPEG2Container(AVFormatContext* Ctx);
- /**
- * 3GPP
- * MP4
- */
- static VideoContainerProfile detectMP4Container(AVFormatContext* Ctx);
-#ifdef WITH_WINDOWS_MEDIA
- /**
- * ASF
- */
- static VideoContainerProfile detectWMFContainer(AVFormatContext* Ctx);
-#endif
-};
-
-#endif /* _CONTAINER_H */
-