Home
last modified time | relevance | path

Searched refs:got_output (Results 1 – 9 of 9) sorted by relevance

/third_party/cef/tests/ceftests/
Dscheme_handler_unittest.cc40 got_output.reset(); in reset()
80 TrackCallback got_request, got_read, got_output, got_sub_output, got_redirect, member in __anon85064f760111::TestResults
131 if (!(test_results_->got_output || test_results_->got_error)) { in DestroyTestIfDone()
188 test_results_->got_output.yes(); in OnLoadEnd()
871 EXPECT_TRUE(g_TestResults.got_output); in TEST()
879 g_TestResults.got_output.reset(); in TEST()
886 EXPECT_FALSE(g_TestResults.got_output); in TEST()
902 EXPECT_TRUE(g_TestResults.got_output); in TEST()
920 EXPECT_TRUE(g_TestResults.got_output); in TEST()
940 EXPECT_TRUE(g_TestResults.got_output); in TEST()
[all …]
/third_party/ffmpeg/libavfilter/
Daf_resample.c48 int got_output; member
192 s->got_output = 0; in request_frame()
193 while (ret >= 0 && !s->got_output) in request_frame()
295 s->got_output = 1; in filter_frame()
303 s->got_output = 1; in filter_frame()
/third_party/grpc/tools/buildgen/
Dmako_renderer.py62 got_output = False
81 if got_output:
85 got_output = True
/third_party/ffmpeg/fftools/
Dffmpeg.c2147 static void check_decode_result(InputStream *ist, int *got_output, int ret) in check_decode_result() argument
2149 if (*got_output || ret<0) in check_decode_result()
2155 if (*got_output && ist) { in check_decode_result()
2330 static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output, in decode_audio() argument
2345 ret = decode(avctx, decoded_frame, got_output, pkt); in decode_audio()
2356 check_decode_result(ist, got_output, ret); in decode_audio()
2358 if (!*got_output || ret < 0) in decode_audio()
2392 static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output, int64_t *duration_pts, in… in decode_video() argument
2428 ret = decode(ist->dec_ctx, decoded_frame, got_output, pkt); in decode_video()
2449 check_decode_result(ist, got_output, ret); in decode_video()
[all …]
Dffmpeg.h347 int got_output; member
397 int got_output; member
/third_party/ffmpeg/libavcodec/
Ddvbsubdec.c720 static int save_subtitle_set(AVCodecContext *avctx, AVSubtitle *sub, int *got_output) in save_subtitle_set() argument
752 *got_output = 1; in save_subtitle_set()
755 *got_output = 1; in save_subtitle_set()
1297 … const uint8_t *buf, int buf_size, AVSubtitle *sub, int *got_output) in dvbsub_parse_page_segment() argument
1326 save_subtitle_set(avctx, sub, got_output); in dvbsub_parse_page_segment()
1604 int buf_size, AVSubtitle *sub,int *got_output) in dvbsub_display_end_segment() argument
1609 save_subtitle_set(avctx, sub, got_output); in dvbsub_display_end_segment()
Dmpeg12dec.c2466 int *got_output, const uint8_t *buf, int buf_size) in decode_chunks() argument
2501 *got_output = 1; in decode_chunks()
2792 int *got_output, AVPacket *avpkt) in mpeg_decode_frame() argument
2810 *got_output = 1; in mpeg_decode_frame()
2833 ret = decode_chunks(avctx, picture, got_output, in mpeg_decode_frame()
2835 if (*got_output) { in mpeg_decode_frame()
2838 *got_output = 0; in mpeg_decode_frame()
2847 ret = decode_chunks(avctx, picture, got_output, buf, buf_size); in mpeg_decode_frame()
2848 if (ret<0 || *got_output) { in mpeg_decode_frame()
2851 if (s2->timecode_frame_start != -1 && *got_output) { in mpeg_decode_frame()
Dhevcdec.c3302 static int hevc_decode_frame(AVCodecContext *avctx, void *data, int *got_output, in hevc_decode_frame() argument
3315 *got_output = ret; in hevc_decode_frame()
3359 *got_output = 1; in hevc_decode_frame()
/third_party/ffmpeg/libavformat/
Dutils.c1430 int ret = 0, got_output = flush; in parse_packet() local
1439 while (size > 0 || (flush && got_output)) { in parse_packet()
1455 got_output = !!out_pkt->size; in parse_packet()