Commit 721de905 authored by bcoudurier's avatar bcoudurier

add context_to_name func for logging

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13610 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8916716a
......@@ -512,7 +512,12 @@ void img_resample_close(ImgReSampleContext *s)
av_free(s);
}
static const AVClass context_class = { "imgresample", NULL, NULL };
static const char *context_to_name(void* ptr)
{
return "imgconvert";
}
static const AVClass context_class = { "imgresample", context_to_name, NULL };
struct SwsContext *sws_getContext(int srcW, int srcH, int srcFormat,
int dstW, int dstH, int dstFormat,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment