rather than using the smem
output driver of VLC, i would suggest to interact directly with libvlc
, via the mediaplayer interface:
/* user_data is the pointer we passed to `video_set_callbacks()` */
void*lock_frame(void*user_data, void**planes) {
/* make '*plane* point to a memory you want the video-data rendered to */
*planes=user_data->img;
return user_data->pic;
}
void unlock_frame(void *user_data, void *picture, void *const *planes) {
/* image rendered into (*planes)==user_data->img; */
}
unsigned format_callback(void**user_data_ptr; char*chroma, unsigned *width, unsigned *height, unsigned *pitches, unsigned *lines) {
mydata_t*user_data=(mydata_t*)(*user_data_ptr);
/* set the output format to RGBA */
memcpy(chroma, "RV32", 4); /* 'RV32' is 'RGBA'
/* leave dimensions intact, but store them
* now's the time to resize user_data->img to hold that much memory
*/
user_data->width =*width;
user_data->height=*height;
*pitches=(*width)*4; /* 4 is the pixel size for RGBA */
*lines=*height;
return 1;
}
vlc_inst=libvlc_new (0, 0);
libvlc_media_t*media = libvlc_media_new_location (vlc_inst, location);
libvlc_media_player_t*mplayer=libvlc_media_player_new_from_media(media);
libvlc_video_set_callbacks(mplayer,
lock_frame, unlock_frame,
0, user_data);
libvlc_video_set_format_callbacks(data->m_mediaplayer, format_callback,0);
libvlc_media_player_play(mplayer);
/* the media-player will call
* - format_callback() with a format suggestion which you can adjust to your needs
* - lock_frame()/unlock_frame() whenever a new frame has arrived.
* once you are done, call: */
libvlc_media_player_stop(mplayer);
libvlc_release(vlc_inst);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…