- 论坛徽章:
- 0
|
回复 #2 fengshenx 的帖子
部分代码如下。
XvImage *image = XvCreateImage(dpy, port, 0x32315659, NULL, avctx->width, avctx->height);
image->data = malloc(image->data_size);
pict.data[0] = image->data+image->offsets[0];
pict.data[1] = image->data+image->offsets[2];
pict.data[2] = image->data+image->offsets[1];
pict.linesize[0] = image->pitches[0];
pict.linesize[1] = image->pitches[2];
pict.linesize[2] = image->pitches[1];
img_convert(&pict,PIX_FMT_YUV420P,
pFrame, PIX_FMT_YUV420P,
avctx->width, avctx->height);
XvPutImage(dpy,port,win,gc,image,
0,0,avctx->width, avctx->height,
0,0,704,576);
XFlush(dpy);
XFree(image);
但是窗体上一片黑啊。运行倒是没错。困惑。 |
|