/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | ccextractor.c | 48 GstBuffer *buf, *outbuf; in GST_START_TEST() local 56 outbuf = gst_harness_push_and_pull (h, gst_buffer_ref (buf)); in GST_START_TEST() 58 fail_unless (outbuf != NULL); in GST_START_TEST() 59 fail_unless (outbuf == buf); in GST_START_TEST() 69 gst_buffer_unref (outbuf); in GST_START_TEST() 86 GstBuffer *buf, *outbuf; in GST_START_TEST() local 108 outbuf = gst_harness_push_and_pull (h, gst_buffer_ref (buf)); in GST_START_TEST() 110 fail_unless (outbuf != NULL); in GST_START_TEST() 111 fail_unless (outbuf == buf); in GST_START_TEST() 113 tc_meta = gst_buffer_get_video_time_code_meta (outbuf); in GST_START_TEST() [all …]
|
D | line21.c | 32 GstBuffer *buf, *outbuf; in GST_START_TEST() local 54 outbuf = gst_harness_push_and_pull (h, buf); in GST_START_TEST() 56 fail_unless (outbuf != NULL); in GST_START_TEST() 57 fail_unless_equals_int (gst_buffer_get_n_meta (outbuf, in GST_START_TEST() 60 out_cc_meta = gst_buffer_get_video_caption_meta (outbuf); in GST_START_TEST() 67 gst_buffer_unref (outbuf); in GST_START_TEST() 73 outbuf = gst_harness_push_and_pull (h, buf); in GST_START_TEST() 75 fail_unless (outbuf != NULL); in GST_START_TEST() 76 fail_unless_equals_int (gst_buffer_get_n_meta (outbuf, in GST_START_TEST() 79 out_cc_meta = gst_buffer_get_video_caption_meta (outbuf); in GST_START_TEST() [all …]
|
D | cccombiner.c | 38 GstBuffer *buf, *outbuf; in GST_START_TEST() local 48 outbuf = gst_harness_push_and_pull (h, gst_buffer_ref (buf)); in GST_START_TEST() 50 fail_unless (outbuf != NULL); in GST_START_TEST() 51 fail_unless (outbuf == buf); in GST_START_TEST() 60 gst_buffer_unref (outbuf); in GST_START_TEST() 101 GstBuffer *buf, *outbuf; in GST_START_TEST() local 151 outbuf = gst_harness_pull (h); in GST_START_TEST() 152 fail_unless (outbuf != NULL); in GST_START_TEST() 157 meta = gst_buffer_get_video_caption_meta (outbuf); in GST_START_TEST() 163 gst_buffer_unref (outbuf); in GST_START_TEST() [all …]
|
D | aesdec.c | 78 GstBuffer *buf, *outbuf; in run() local 92 outbuf = gst_harness_push_and_pull (h, gst_buffer_ref (buf)); in run() 94 fail_unless (gst_buffer_memcmp (outbuf, 0, out_ref, in run() 97 gst_buffer_unref (outbuf); in run() 105 outbuf = gst_harness_try_pull (h); in run() 106 fail_unless (outbuf); in run() 107 fail_unless (gst_buffer_get_size (outbuf) == final_bytes); in run() 108 fail_unless (gst_buffer_memcmp (outbuf, 0, in run() 110 gst_buffer_unref (outbuf); in run()
|
/third_party/libcoap/src/ |
D | coap_debug.c | 483 fprintf(COAP_DEBUG_FD, "%s", outbuf); \ 486 coap_log(level, "%s", outbuf); \ 512 static char outbuf[COAP_DEBUG_BUF_SIZE]; in coap_show_pdu() local 516 char outbuf[COAP_DEBUG_BUF_SIZE]; in coap_show_pdu() 537 snprintf(outbuf, sizeof(outbuf), "v:%d t:%s c:%s i:%04x {", in coap_show_pdu() 542 outbuflen = strlen(outbuf); in coap_show_pdu() 543 snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen, in coap_show_pdu() 546 outbuflen = strlen(outbuf); in coap_show_pdu() 547 snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen, "}"); in coap_show_pdu() 552 outbuflen = strlen(outbuf); in coap_show_pdu() [all …]
|
/third_party/libcoap/man/ |
D | examples-code-check.c | 211 char outbuf[1024]; in main() local 305 outbuf[0] = '\000'; in main() 307 len = strlen(outbuf); in main() 309 snprintf(&outbuf[len], sizeof(outbuf)-len, "%*.*s%c", in main() 312 snprintf(&outbuf[len], sizeof(outbuf)-len, "%*.*s U%c", in main() 324 len = strlen(outbuf); in main() 325 snprintf(&outbuf[len], sizeof(outbuf)-len, "%s", cp); in main() 328 len = strlen(outbuf); in main() 329 if (len > 3 && ((outbuf[len-3] == ';' && outbuf[len-2] == '*') || in main() 330 (outbuf[len-3] == '*' && outbuf[len-2] == ';'))) { in main() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | tls_schannel.c | 97 SecBuffer outbuf; in tls_shutdown_client() local 108 init_sec_buffer(&outbuf, SECBUFFER_EMPTY, NULL, 0); in tls_shutdown_client() 109 init_sec_buffer_desc(&outbuf_desc, &outbuf, 1); in tls_shutdown_client() 115 ret = ffurl_write(s->tcp, outbuf.pvBuffer, outbuf.cbBuffer); in tls_shutdown_client() 116 FreeContextBuffer(outbuf.pvBuffer); in tls_shutdown_client() 117 if (ret < 0 || ret != outbuf.cbBuffer) in tls_shutdown_client() 150 SecBuffer outbuf[3] = { 0 }; in tls_client_handshake_loop() local 206 init_sec_buffer(&outbuf[0], SECBUFFER_TOKEN, NULL, 0); in tls_client_handshake_loop() 207 init_sec_buffer(&outbuf[1], SECBUFFER_ALERT, NULL, 0); in tls_client_handshake_loop() 208 init_sec_buffer(&outbuf[2], SECBUFFER_EMPTY, NULL, 0); in tls_client_handshake_loop() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpmp4gdepay.c | 316 GstBuffer *outbuf; in gst_rtp_mp4g_depay_clear_queue() local 318 while ((outbuf = g_queue_pop_head (rtpmp4gdepay->packets))) in gst_rtp_mp4g_depay_clear_queue() 319 gst_buffer_unref (outbuf); in gst_rtp_mp4g_depay_clear_queue() 336 GstBuffer * outbuf, guint AU_index) in gst_rtp_mp4g_depay_push_outbuf() argument 343 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT); in gst_rtp_mp4g_depay_push_outbuf() 350 gst_rtp_drop_meta (GST_ELEMENT_CAST (rtpmp4gdepay), outbuf, 0); in gst_rtp_mp4g_depay_push_outbuf() 351 gst_rtp_base_depayload_push (GST_RTP_BASE_DEPAYLOAD (rtpmp4gdepay), outbuf); in gst_rtp_mp4g_depay_push_outbuf() 358 GstBuffer *outbuf; in gst_rtp_mp4g_depay_flush_queue() local 361 while ((outbuf = g_queue_pop_head (rtpmp4gdepay->packets))) { in gst_rtp_mp4g_depay_flush_queue() 362 AU_index = GST_BUFFER_OFFSET (outbuf); in gst_rtp_mp4g_depay_flush_queue() [all …]
|
D | gstrtpqcelpdepay.c | 207 GstBuffer *outbuf; in flush_packets() local 209 outbuf = g_ptr_array_index (depay->packets, i); in flush_packets() 212 gst_rtp_base_depayload_push (GST_RTP_BASE_DEPAYLOAD (depay), outbuf); in flush_packets() 222 GstBuffer * outbuf) in add_packet() argument 238 g_ptr_array_index (depay->packets, idx) = outbuf; in add_packet() 244 GstBuffer *outbuf; in create_erasure_buffer() local 247 outbuf = gst_buffer_new_and_alloc (1); in create_erasure_buffer() 248 gst_buffer_map (outbuf, &map, GST_MAP_WRITE); in create_erasure_buffer() 250 gst_buffer_unmap (outbuf, &map); in create_erasure_buffer() 252 return outbuf; in create_erasure_buffer() [all …]
|
D | gstrtph264depay.c | 113 GstBuffer * outbuf, gboolean keyframe, GstClockTime timestamp, 257 GstBuffer *outbuf; in gst_rtp_h264_depay_drain() local 262 outbuf = gst_rtp_h264_complete_au (rtph264depay, ×tamp, &keyframe); in gst_rtp_h264_depay_drain() 263 if (outbuf) in gst_rtp_h264_depay_drain() 264 gst_rtp_h264_depay_push (rtph264depay, outbuf, keyframe, timestamp, FALSE); in gst_rtp_h264_depay_drain() 903 GstBuffer *outbuf; in gst_rtp_h264_complete_au() local 911 outbuf = gst_rtp_h264_depay_allocate_output_buffer (rtph264depay, outsize); in gst_rtp_h264_complete_au() 913 if (outbuf == NULL) in gst_rtp_h264_complete_au() 916 if (!gst_buffer_map (outbuf, &outmap, GST_MAP_WRITE)) in gst_rtp_h264_complete_au() 940 gst_rtp_copy_video_meta (rtph264depay, outbuf, buf); in gst_rtp_h264_complete_au() [all …]
|
D | gstrtpklvpay.c | 117 GstBuffer *outbuf = NULL; in gst_rtp_klv_pay_handle_buffer() local 153 outbuf = gst_rtp_base_payload_allocate_output_buffer (basepayload, 0, 0, 0); in gst_rtp_klv_pay_handle_buffer() 157 gst_rtp_buffer_map (outbuf, GST_MAP_WRITE, &rtp); in gst_rtp_klv_pay_handle_buffer() 164 gst_rtp_copy_meta (GST_ELEMENT_CAST (pay), outbuf, buf, 0); in gst_rtp_klv_pay_handle_buffer() 170 outbuf = gst_buffer_append (outbuf, payloadbuf); in gst_rtp_klv_pay_handle_buffer() 172 GST_BUFFER_PTS (outbuf) = GST_BUFFER_PTS (buf); in gst_rtp_klv_pay_handle_buffer() 173 GST_BUFFER_DTS (outbuf) = GST_BUFFER_DTS (buf); in gst_rtp_klv_pay_handle_buffer() 177 gst_buffer_list_insert (list, -1, outbuf); in gst_rtp_klv_pay_handle_buffer() 189 else if (outbuf != NULL) in gst_rtp_klv_pay_handle_buffer() 190 ret = gst_rtp_base_payload_push (basepayload, outbuf); in gst_rtp_klv_pay_handle_buffer()
|
D | gstrtph263pdepay.c | 239 GstBuffer * outbuf) in gst_rtp_h263p_depay_decorate_output_buffer() argument 248 pic_hdr_len = gst_buffer_extract (outbuf, 0, pic_hdr, sizeof (pic_hdr)); in gst_rtp_h263p_depay_decorate_output_buffer() 323 GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT); in gst_rtp_h263p_depay_decorate_output_buffer() 325 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT); in gst_rtp_h263p_depay_decorate_output_buffer() 334 GstBuffer *outbuf; in gst_rtp_h263p_depay_process() local 408 outbuf = in gst_rtp_h263p_depay_process() 411 gst_buffer_memset (outbuf, 0, 0, 2); in gst_rtp_h263p_depay_process() 412 gst_adapter_push (rtph263pdepay->adapter, outbuf); in gst_rtp_h263p_depay_process() 413 outbuf = NULL; in gst_rtp_h263p_depay_process() 422 outbuf = gst_adapter_take_buffer (rtph263pdepay->adapter, avail); in gst_rtp_h263p_depay_process() [all …]
|
D | gstrtpldacpay.c | 195 GstBuffer *outbuf; in gst_rtp_ldac_pay_handle_buffer() local 200 outbuf = in gst_rtp_ldac_pay_handle_buffer() 205 gst_rtp_buffer_map (outbuf, GST_MAP_WRITE, &rtp); in gst_rtp_ldac_pay_handle_buffer() 218 gst_rtp_copy_audio_meta (ldacpay, outbuf, buffer); in gst_rtp_ldac_pay_handle_buffer() 219 outbuf = gst_buffer_append (outbuf, buffer); in gst_rtp_ldac_pay_handle_buffer() 221 GST_BUFFER_PTS (outbuf) = outbuf_pts; in gst_rtp_ldac_pay_handle_buffer() 222 GST_BUFFER_DURATION (outbuf) = outbuf_frame_duration; in gst_rtp_ldac_pay_handle_buffer() 225 GST_TIME_ARGS (GST_BUFFER_PTS (outbuf))); in gst_rtp_ldac_pay_handle_buffer() 227 return gst_rtp_base_payload_push (GST_RTP_BASE_PAYLOAD (ldacpay), outbuf); in gst_rtp_ldac_pay_handle_buffer()
|
D | gstrtph265depay.c | 119 GstBuffer * outbuf, gboolean keyframe, GstClockTime timestamp, 199 GstBuffer *outbuf; in gst_rtp_h265_depay_drain() local 204 outbuf = gst_rtp_h265_complete_au (rtph265depay, ×tamp, &keyframe); in gst_rtp_h265_depay_drain() 205 if (outbuf) in gst_rtp_h265_depay_drain() 206 gst_rtp_h265_depay_push (rtph265depay, outbuf, keyframe, timestamp, FALSE); in gst_rtp_h265_depay_drain() 974 GstBuffer *outbuf; in gst_rtp_h265_complete_au() local 982 outbuf = gst_rtp_h265_depay_allocate_output_buffer (rtph265depay, outsize); in gst_rtp_h265_complete_au() 984 if (outbuf == NULL) in gst_rtp_h265_complete_au() 987 if (!gst_buffer_map (outbuf, &outmap, GST_MAP_WRITE)) in gst_rtp_h265_complete_au() 1011 gst_rtp_copy_video_meta (rtph265depay, outbuf, buf); in gst_rtp_h265_complete_au() [all …]
|
D | gstrtpgsmpay.c | 135 GstBuffer *outbuf; in gst_rtp_gsm_pay_handle_buffer() local 151 outbuf = gst_rtp_base_payload_allocate_output_buffer (basepayload, 0, 0, 0); in gst_rtp_gsm_pay_handle_buffer() 154 GST_BUFFER_PTS (outbuf) = timestamp; in gst_rtp_gsm_pay_handle_buffer() 155 GST_BUFFER_DURATION (outbuf) = duration; in gst_rtp_gsm_pay_handle_buffer() 157 gst_rtp_copy_audio_meta (rtpgsmpay, outbuf, buffer); in gst_rtp_gsm_pay_handle_buffer() 160 outbuf = gst_buffer_append (outbuf, buffer); in gst_rtp_gsm_pay_handle_buffer() 163 gst_buffer_get_size (outbuf)); in gst_rtp_gsm_pay_handle_buffer() 165 ret = gst_rtp_base_payload_push (basepayload, outbuf); in gst_rtp_gsm_pay_handle_buffer()
|
D | gstrtputils.c | 25 GstBuffer *outbuf; member 37 GstBuffer *outbuf = data->outbuf; in foreach_metadata_copy() local 48 info->transform_func (outbuf, *meta, inbuf, in foreach_metadata_copy() 60 gst_rtp_copy_meta (GstElement * element, GstBuffer * outbuf, GstBuffer * inbuf, in gst_rtp_copy_meta() argument 63 CopyMetaData data = { element, outbuf, copy_tag }; in gst_rtp_copy_meta() 69 gst_rtp_copy_video_meta (gpointer element, GstBuffer * outbuf, in gst_rtp_copy_video_meta() argument 72 gst_rtp_copy_meta (element, outbuf, inbuf, rtp_quark_meta_tag_video); in gst_rtp_copy_video_meta() 76 gst_rtp_copy_audio_meta (gpointer element, GstBuffer * outbuf, in gst_rtp_copy_audio_meta() argument 79 gst_rtp_copy_meta (element, outbuf, inbuf, rtp_quark_meta_tag_audio); in gst_rtp_copy_audio_meta()
|
/third_party/openssl/demos/evp/ |
D | aesgcm.c | 54 unsigned char outbuf[1024]; in aes_gcm_encrypt() local 68 EVP_EncryptUpdate(ctx, outbuf, &outlen, gcm_pt, sizeof(gcm_pt)); in aes_gcm_encrypt() 71 BIO_dump_fp(stdout, outbuf, outlen); in aes_gcm_encrypt() 73 EVP_EncryptFinal_ex(ctx, outbuf, &outlen); in aes_gcm_encrypt() 75 EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG, 16, outbuf); in aes_gcm_encrypt() 78 BIO_dump_fp(stdout, outbuf, 16); in aes_gcm_encrypt() 86 unsigned char outbuf[1024]; in aes_gcm_decrypt() local 100 EVP_DecryptUpdate(ctx, outbuf, &outlen, gcm_ct, sizeof(gcm_ct)); in aes_gcm_decrypt() 103 BIO_dump_fp(stdout, outbuf, outlen); in aes_gcm_decrypt() 108 rv = EVP_DecryptFinal_ex(ctx, outbuf, &outlen); in aes_gcm_decrypt()
|
D | aesccm.c | 54 unsigned char outbuf[1024]; in aes_ccm_encrypt() local 73 EVP_EncryptUpdate(ctx, outbuf, &outlen, ccm_pt, sizeof(ccm_pt)); in aes_ccm_encrypt() 76 BIO_dump_fp(stdout, outbuf, outlen); in aes_ccm_encrypt() 78 EVP_EncryptFinal_ex(ctx, outbuf, &outlen); in aes_ccm_encrypt() 80 EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG, 16, outbuf); in aes_ccm_encrypt() 83 BIO_dump_fp(stdout, outbuf, 16); in aes_ccm_encrypt() 91 unsigned char outbuf[1024]; in aes_ccm_decrypt() local 111 rv = EVP_DecryptUpdate(ctx, outbuf, &outlen, ccm_ct, sizeof(ccm_ct)); in aes_ccm_decrypt() 115 BIO_dump_fp(stdout, outbuf, outlen); in aes_ccm_decrypt()
|
/third_party/gstreamer/gstplugins_base/gst/audioresample/ |
D | gstaudioresample.c | 122 GstBuffer * inbuf, GstBuffer * outbuf); 124 GstBuffer * outbuf, GstMeta * meta, GstBuffer * inbuf); 563 GstBuffer *outbuf; in gst_audio_resample_dump_drain() local 572 outbuf = gst_buffer_new_and_alloc (outsize); in gst_audio_resample_dump_drain() 576 gst_buffer_add_audio_meta (outbuf, &resample->out, out_len, NULL); in gst_audio_resample_dump_drain() 579 gst_audio_buffer_map (&abuf, &resample->out, outbuf, GST_MAP_WRITE); in gst_audio_resample_dump_drain() 584 gst_buffer_unref (outbuf); in gst_audio_resample_dump_drain() 590 GstBuffer *outbuf; in gst_audio_resample_push_drain() local 608 outbuf = gst_buffer_new_and_alloc (outsize); in gst_audio_resample_push_drain() 612 gst_buffer_add_audio_meta (outbuf, &resample->out, out_len, NULL); in gst_audio_resample_push_drain() [all …]
|
/third_party/libxml2/os400/ |
D | libxmlmain.c | 41 char * outbuf; in main() local 61 outbuf = dummybuf; in main() 64 &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main() 65 bytecount += outbuf - dummybuf; in main() 68 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft); in main() 75 outbuf = (char *) (argv + argc + 1); in main() 79 argv[i] = outbuf; in main() 82 iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main() 83 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft); in main()
|
/third_party/grpc/src/core/lib/compression/ |
D | message_compress.cc | 40 grpc_slice outbuf = GRPC_SLICE_MALLOC(OUTPUT_BLOCK_SIZE); in zlib_body() local 43 GPR_ASSERT(GRPC_SLICE_LENGTH(outbuf) <= uint_max); in zlib_body() 44 zs->avail_out = static_cast<uInt> GRPC_SLICE_LENGTH(outbuf); in zlib_body() 45 zs->next_out = GRPC_SLICE_START_PTR(outbuf); in zlib_body() 54 grpc_slice_buffer_add_indexed(output, outbuf); in zlib_body() 55 outbuf = GRPC_SLICE_MALLOC(OUTPUT_BLOCK_SIZE); in zlib_body() 56 GPR_ASSERT(GRPC_SLICE_LENGTH(outbuf) <= uint_max); in zlib_body() 57 zs->avail_out = static_cast<uInt> GRPC_SLICE_LENGTH(outbuf); in zlib_body() 58 zs->next_out = GRPC_SLICE_START_PTR(outbuf); in zlib_body() 76 GPR_ASSERT(outbuf.refcount); in zlib_body() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/mpegtsmux/ |
D | gstbasetsmuxopus.c | 83 GstBuffer *outbuf; in gst_base_ts_mux_prepare_opus() local 96 outbuf = gst_buffer_new_and_alloc (outsize); in gst_base_ts_mux_prepare_opus() 97 gst_buffer_copy_into (outbuf, buf, in gst_base_ts_mux_prepare_opus() 99 gst_buffer_map (outbuf, &map, GST_MAP_WRITE); in gst_base_ts_mux_prepare_opus() 128 gst_buffer_unmap (outbuf, &map); in gst_base_ts_mux_prepare_opus() 130 outbuf = gst_buffer_append (outbuf, gst_buffer_ref (buf)); in gst_base_ts_mux_prepare_opus() 132 return outbuf; in gst_base_ts_mux_prepare_opus()
|
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/ |
D | gstccconverter.c | 1496 GstBuffer * outbuf) in convert_cea608_raw_cea608_s334_1a() argument 1504 gst_buffer_set_size (outbuf, 0); in convert_cea608_raw_cea608_s334_1a() 1516 gst_buffer_set_size (outbuf, 3 * n); in convert_cea608_raw_cea608_s334_1a() 1519 gst_buffer_map (outbuf, &out, GST_MAP_WRITE); in convert_cea608_raw_cea608_s334_1a() 1530 gst_buffer_unmap (outbuf, &out); in convert_cea608_raw_cea608_s334_1a() 1537 GstBuffer * outbuf) in convert_cea608_raw_cea708_cc_data() argument 1545 gst_buffer_set_size (outbuf, 0); in convert_cea608_raw_cea708_cc_data() 1557 gst_buffer_set_size (outbuf, 3 * n); in convert_cea608_raw_cea708_cc_data() 1560 gst_buffer_map (outbuf, &out, GST_MAP_WRITE); in convert_cea608_raw_cea708_cc_data() 1571 gst_buffer_unmap (outbuf, &out); in convert_cea608_raw_cea708_cc_data() [all …]
|
/third_party/curl/tests/server/ |
D | fake_ntlm.c | 50 char *outbuf; in printable() local 73 outbuf = malloc(outsize); in printable() 74 if(!outbuf) in printable() 78 msnprintf(&outbuf[0], outsize, "%s", NOTHING_STR); in printable() 79 return outbuf; in printable() 86 newbuf = realloc(outbuf, newsize); in printable() 88 free(outbuf); in printable() 91 outbuf = newbuf; in printable() 96 outbuf[o] = inbuf[i]; in printable() 100 msnprintf(&outbuf[o], outsize - o, HEX_FMT_STR, inbuf[i]); in printable() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_pp.c | 130 AVFrame *outbuf; in pp_filter_frame() local 135 outbuf = ff_get_video_buffer(outlink, aligned_w, aligned_h); in pp_filter_frame() 136 if (!outbuf) { in pp_filter_frame() 140 av_frame_copy_props(outbuf, inbuf); in pp_filter_frame() 141 outbuf->width = inbuf->width; in pp_filter_frame() 142 outbuf->height = inbuf->height; in pp_filter_frame() 147 av_frame_free(&outbuf); in pp_filter_frame() 152 outbuf->data, outbuf->linesize, in pp_filter_frame() 158 outbuf->pict_type | (qp_table ? PP_PICT_TYPE_QP2 : 0)); in pp_filter_frame() 162 return ff_filter_frame(outlink, outbuf); in pp_filter_frame()
|