1ccb06a4cSAndrew Rist/************************************************************** 2*f77fb251SMatthias Seidel * 3ccb06a4cSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4ccb06a4cSAndrew Rist * or more contributor license agreements. See the NOTICE file 5ccb06a4cSAndrew Rist * distributed with this work for additional information 6ccb06a4cSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7ccb06a4cSAndrew Rist * to you under the Apache License, Version 2.0 (the 8ccb06a4cSAndrew Rist * "License"); you may not use this file except in compliance 9ccb06a4cSAndrew Rist * with the License. You may obtain a copy of the License at 10*f77fb251SMatthias Seidel * 11ccb06a4cSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*f77fb251SMatthias Seidel * 13ccb06a4cSAndrew Rist * Unless required by applicable law or agreed to in writing, 14ccb06a4cSAndrew Rist * software distributed under the License is distributed on an 15ccb06a4cSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16ccb06a4cSAndrew Rist * KIND, either express or implied. See the License for the 17ccb06a4cSAndrew Rist * specific language governing permissions and limitations 18ccb06a4cSAndrew Rist * under the License. 19*f77fb251SMatthias Seidel * 20ccb06a4cSAndrew Rist *************************************************************/ 21ccb06a4cSAndrew Rist 22cdf0e10cSrcweir 23*f77fb251SMatthias Seidel 24*f77fb251SMatthias Seidel#define AVMEDIA_STR_PLAY 1024 25*f77fb251SMatthias Seidel#define AVMEDIA_STR_PAUSE 1025 26*f77fb251SMatthias Seidel#define AVMEDIA_STR_STOP 1026 27*f77fb251SMatthias Seidel#define AVMEDIA_STR_ENDLESS 1027 28*f77fb251SMatthias Seidel#define AVMEDIA_STR_ZOOM 1028 29*f77fb251SMatthias Seidel#define AVMEDIA_STR_ZOOM_50 1029 30*f77fb251SMatthias Seidel#define AVMEDIA_STR_ZOOM_100 1030 31*f77fb251SMatthias Seidel#define AVMEDIA_STR_ZOOM_200 1031 32*f77fb251SMatthias Seidel#define AVMEDIA_STR_ZOOM_FIT 1032 33*f77fb251SMatthias Seidel#define AVMEDIA_STR_MUTE 1033 34*f77fb251SMatthias Seidel#define AVMEDIA_STR_OPEN 1034 35*f77fb251SMatthias Seidel#define AVMEDIA_STR_INSERT 1035 36*f77fb251SMatthias Seidel#define AVMEDIA_STR_MEDIAPLAYER 1036 37*f77fb251SMatthias Seidel 38*f77fb251SMatthias Seidel#define AVMEDIA_IMG_OPEN 2048 39*f77fb251SMatthias Seidel#define AVMEDIA_IMG_PLAY 2049 40*f77fb251SMatthias Seidel#define AVMEDIA_IMG_PAUSE 2050 41*f77fb251SMatthias Seidel#define AVMEDIA_IMG_STOP 2051 42*f77fb251SMatthias Seidel#define AVMEDIA_IMG_ENDLESS 2052 43*f77fb251SMatthias Seidel#define AVMEDIA_IMG_INSERT 2053 44*f77fb251SMatthias Seidel#define AVMEDIA_IMG_MUTE 2054 45cdf0e10cSrcweir 46cdf0e10cSrcweir#define AVMEDIA_IMGLST 3072 47cdf0e10cSrcweir#define AVMEDIA_IMGLST_HC 3073 48cdf0e10cSrcweir#define AVMEDIA_IMGLST_L 3074 49cdf0e10cSrcweir#define AVMEDIA_IMGLST_L_HC 3075 50*f77fb251SMatthias Seidel 51