/* mediastreamer2 android_mediacodec.h Copyright (C) 2015 Belledonne Communications SARL This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #define MEDIASTREAMER2_ANDROID_MEDIACODEC typedef bool bool_t; //#include "mediastreamer2/mscommon.h" //#include "mediastreamer2/msvideo.h" typedef struct MSRect{ int x,y,w,h; } MSRect; #include #ifdef __cplusplus extern "C" { #endif typedef struct { int format; int width; int height; MSRect crop_rect; uint64_t timestamp; int nplanes; int row_strides[4]; int pixel_strides[4]; uint8_t *buffers[4]; void *priv_ptr; } AMediaImage; void AMediaCodec_reset(AMediaCodec *codec); void AMediaCodec_setParams(AMediaCodec *codec, const char *params); bool AMediaCodec_getInputImage(AMediaCodec *codec, int index, AMediaImage *image); bool AMediaCodec_getOutputImage(AMediaCodec *codec, int index, AMediaImage *image); void AMediaImage_close(AMediaImage *image); bool_t AMediaImage_isAvailable(void); const char* AMediaFormat_toString(AMediaFormat*); #ifdef __cplusplus } // extern "C" #endif