Searched refs:sws_ctx (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dlswsutils.c29 struct SwsContext *sws_ctx = sws_getContext(src_w, src_h, src_pix_fmt, local
32 if (!sws_ctx) {
45 sws_scale(sws_ctx, (const uint8_t * const*)src_data, src_linesize, 0, src_h, dst_data, dst_linesize);
48 sws_freeContext(sws_ctx);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dscaling_video.c62 struct SwsContext *sws_ctx; local
90 sws_ctx = sws_getContext(src_w, src_h, src_pix_fmt,
93 if (!sws_ctx) {
123 sws_scale(sws_ctx, (const uint8_t * const*)src_data,
139 sws_freeContext(sws_ctx);
H A Dmuxing.c64 struct SwsContext *sws_ctx; member in struct:OutputStream
437 if (!ost->sws_ctx) {
438 ost->sws_ctx = sws_getContext(c->width, c->height,
443 if (!ost->sws_ctx) {
450 sws_scale(ost->sws_ctx,
525 sws_freeContext(ost->sws_ctx);

Completed in 156 milliseconds