blob: 66dfff69f26686298d5190b70b8fc6c893d8aab0 [file] [log] [blame]
Andreas Hubere6c40962009-09-10 14:13:30 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef MEDIA_DEFS_H_
18
19#define MEDIA_DEFS_H_
20
21namespace android {
22
23extern const char *MEDIA_MIMETYPE_IMAGE_JPEG;
24
Andreas Huber072f5242010-05-20 14:56:53 -070025extern const char *MEDIA_MIMETYPE_VIDEO_VPX;
Andreas Hubere6c40962009-09-10 14:13:30 -070026extern const char *MEDIA_MIMETYPE_VIDEO_AVC;
27extern const char *MEDIA_MIMETYPE_VIDEO_MPEG4;
28extern const char *MEDIA_MIMETYPE_VIDEO_H263;
29extern const char *MEDIA_MIMETYPE_VIDEO_RAW;
30
31extern const char *MEDIA_MIMETYPE_AUDIO_AMR_NB;
32extern const char *MEDIA_MIMETYPE_AUDIO_AMR_WB;
33extern const char *MEDIA_MIMETYPE_AUDIO_MPEG;
34extern const char *MEDIA_MIMETYPE_AUDIO_AAC;
Andreas Huberd0332ad2010-04-12 16:05:57 -070035extern const char *MEDIA_MIMETYPE_AUDIO_QCELP;
Andreas Huber388379f2010-05-07 10:35:13 -070036extern const char *MEDIA_MIMETYPE_AUDIO_VORBIS;
Andreas Huber520b2a72010-08-09 09:54:59 -070037extern const char *MEDIA_MIMETYPE_AUDIO_G711_ALAW;
38extern const char *MEDIA_MIMETYPE_AUDIO_G711_MLAW;
Andreas Hubere6c40962009-09-10 14:13:30 -070039extern const char *MEDIA_MIMETYPE_AUDIO_RAW;
Glenn Kastenf9f223e2011-01-13 11:17:00 -080040extern const char *MEDIA_MIMETYPE_AUDIO_FLAC;
Gloria Wangc5b0abf2011-02-02 14:12:49 -080041extern const char *MEDIA_MIMETYPE_AUDIO_AAC_ADTS;
Andreas Hubere6c40962009-09-10 14:13:30 -070042
43extern const char *MEDIA_MIMETYPE_CONTAINER_MPEG4;
Andreas Huber6bce6d82009-11-03 16:00:58 -080044extern const char *MEDIA_MIMETYPE_CONTAINER_WAV;
Andreas Huber388379f2010-05-07 10:35:13 -070045extern const char *MEDIA_MIMETYPE_CONTAINER_OGG;
Andreas Huber072f5242010-05-20 14:56:53 -070046extern const char *MEDIA_MIMETYPE_CONTAINER_MATROSKA;
Andreas Hubera557b242010-06-07 13:05:37 -070047extern const char *MEDIA_MIMETYPE_CONTAINER_MPEG2TS;
Andreas Hubere6c40962009-09-10 14:13:30 -070048
Gloria Wangc2c22e72010-11-01 15:53:16 -070049extern const char *MEDIA_MIMETYPE_CONTAINER_WVM;
50
Andreas Hubere6c40962009-09-10 14:13:30 -070051} // namespace android
52
53#endif // MEDIA_DEFS_H_