lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.

This commit is contained in:
Anton Khirnov
2011-08-23 07:23:52 +02:00
parent c11fb8288d
commit fb4ca26bdb
9 changed files with 46 additions and 3 deletions

View File

@@ -67,3 +67,8 @@ static const AVOption options[] = {
};
const AVClass sws_context_class = { "SWScaler", sws_context_to_name, options };
const AVClass *sws_get_class(void)
{
return &sws_context_class;
}