Searched refs:video_st (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/videoio/src/ |
D | cap_ffmpeg_impl.hpp | 253 AVStream * video_st; member 283 video_st = 0; in init() 323 if( video_st ) in close() 326 avcodec_close( video_st->codec ); in close() 329 avcodec_close( &(video_st->codec) ); in close() 332 video_st = NULL; in close() 631 video_st = ic->streams[i]; in open() 668 if( !ic || !video_st ) return false; in grabFrame() 697 avcodec_decode_video2(video_st->codec, picture, &got_picture, &packet); in grabFrame() 699 avcodec_decode_video(video_st->codec, in grabFrame() [all …]
|
/external/libvncserver/client_examples/ |
D | vnc2mpg.c | 248 static AVStream *video_st; variable 253 video_st = add_video_stream(oc, fmt->video_codec, w, h); in movie_open() 268 if (video_st) in movie_open() 269 open_video(oc, video_st); in movie_open() 289 close_video(oc, video_st); in movie_close() 399 video_st = NULL; in main() 425 … video_pts = (double)video_st->pts.val * video_st->time_base.num / video_st->time_base.den; in main() 428 write_video_frame(oc, video_st); in main()
|