1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/*
* transcode_specifics.h
*
* Copyright (C) Georg Martius - February 2013
* georg dot martius at web dot de
*
* This file is part of transcode, a video stream processing tool
*
* transcode 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, or (at your option)
* any later version.
*
* transcode 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 GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef __TRANSCODE_SPECIFICS_H
#define __TRANSCODE_SPECIFICS_H
#include "vidstabdefines.h"
#include "frameinfo.h"
#include <transcode.h>
static VSPixelFormat transcode2ourPF(int tc_img_codec){
switch(tc_img_codec){
case CODEC_RGB:
return PF_RGB24;
case CODEC_YUV:
return PF_YUV420P;
case CODEC_YUV422:
return PF_YUV422P;
default:
tc_log_error(MOD_NAME, "cannot deal with img format %i!\n", tc_img_codec);
return PF_NONE;
}
}
void setLogFunctions(){
// we cannot map the memory functions because they are macros
// with FILE and LINE expansion in transcode
VS_ERROR_TYPE = TC_LOG_ERR;
VS_WARN_TYPE = TC_LOG_WARN;
VS_INFO_TYPE = TC_LOG_INFO;
VS_MSG_TYPE = TC_LOG_MSG;
// we need the case because tc_log has first argument TCLogLevel
// which is an enum and not an int
vs_log = (vs_log_t)tc_log;
VS_ERROR = TC_ERROR;
VS_OK = TC_OK;
}
#endif
|