Home
last modified time | relevance | path

Searched refs:got_picture (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmxpegdec.c201 jpg->got_picture = 0; in mxpeg_decode_frame()
218 if (jpg->got_picture) //emulating EOI in mxpeg_decode_frame()
272 if (!jpg->got_picture) { in mxpeg_decode_frame()
290 jpg->got_picture = 1; in mxpeg_decode_frame()
325 if (jpg->got_picture) { in mxpeg_decode_frame()
Dmjpegbdec.c58 s->got_picture = 0; in mjpegb_decode_frame()
142 if(!s->got_picture) { in mjpegb_decode_frame()
Dmjpegdec.c141 s->got_picture = 0; in ff_mjpeg_decode_init()
432 s->got_picture = 0; in ff_mjpeg_decode_sof()
466 if (s->got_picture && s->interlaced && (s->bottom_field == !s->interlace_polarity)) { in ff_mjpeg_decode_sof()
721 s->got_picture = 1; in ff_mjpeg_decode_sof()
730 s->got_picture = 1; in ff_mjpeg_decode_sof()
1635 if (!s->got_picture) { in ff_mjpeg_decode_sos()
1935 if (s->got_picture) in mjpeg_decode_app()
2551 s->progressive && s->cur_scan && s->got_picture) in ff_mjpeg_receive_frame()
2554 if (!s->got_picture) { in ff_mjpeg_receive_frame()
2566 s->got_picture = 0; in ff_mjpeg_receive_frame()
[all …]
Dmjpegdec.h110 int got_picture; ///< we found a SOF and picture is valid, too. member
Drv34.c1570 int got_picture = 0, ret; in finish_frame() local
1584 got_picture = 1; in finish_frame()
1590 got_picture = 1; in finish_frame()
1593 return got_picture; in finish_frame()
/third_party/ffmpeg/libavformat/
Dutils.c3058 int got_picture = 1, ret = 0; local
3112 while ((pkt.size > 0 || (!pkt.data && got_picture)) &&
3117 got_picture = 0;
3127 got_picture = 1;
3132 &got_picture, &pkt);
3133 if (got_picture)
3139 if (got_picture)
3141 ret = got_picture;
3145 if (!pkt.data && !got_picture)
/third_party/ffmpeg/fftools/
Dffplay.c1777 int got_picture; in get_video_frame() local
1779 if ((got_picture = decoder_decode_frame(&is->viddec, frame, NULL)) < 0) in get_video_frame()
1782 if (got_picture) { in get_video_frame()
1799 got_picture = 0; in get_video_frame()
1805 return got_picture; in get_video_frame()