Home
last modified time | relevance | path

Searched refs:cpl (Results 1 - 9 of 9) sorted by relevance

/third_party/ffmpeg/libavformat/
H A Dimf_cpl.c169 static int fill_content_title(xmlNodePtr cpl_element, FFIMFCPL *cpl) in fill_content_title() argument
177 cpl->content_title_utf8 = xmlNodeListGetString(cpl_element->doc, in fill_content_title()
180 if (!cpl->content_title_utf8) in fill_content_title()
181 cpl->content_title_utf8 = xmlStrdup(""); in fill_content_title()
182 if (!cpl->content_title_utf8) in fill_content_title()
188 static int fill_edit_rate(xmlNodePtr cpl_element, FFIMFCPL *cpl) in fill_edit_rate() argument
197 return ff_imf_xml_read_rational(element, &cpl->edit_rate); in fill_edit_rate()
200 static int fill_id(xmlNodePtr cpl_element, FFIMFCPL *cpl) in fill_id() argument
209 return ff_imf_xml_read_uuid(element, cpl->id_uuid); in fill_id()
246 static int fill_base_resource(xmlNodePtr resource_elem, FFIMFBaseResource *resource, FFIMFCPL *cpl) in fill_base_resource() argument
295 fill_trackfile_resource(xmlNodePtr tf_resource_elem, FFIMFTrackFileResource *tf_resource, FFIMFCPL *cpl) fill_trackfile_resource() argument
319 fill_marker_resource(xmlNodePtr marker_resource_elem, FFIMFMarkerResource *marker_resource, FFIMFCPL *cpl) fill_marker_resource() argument
358 push_marker_sequence(xmlNodePtr marker_sequence_elem, FFIMFCPL *cpl) push_marker_sequence() argument
445 push_main_audio_sequence(xmlNodePtr audio_sequence_elem, FFIMFCPL *cpl) push_main_audio_sequence() argument
531 push_main_image_2d_sequence(xmlNodePtr image_sequence_elem, FFIMFCPL *cpl) push_main_image_2d_sequence() argument
613 fill_virtual_tracks(xmlNodePtr cpl_element, FFIMFCPL *cpl) fill_virtual_tracks() argument
665 ff_imf_parse_cpl_from_xml_dom(xmlDocPtr doc, FFIMFCPL **cpl) ff_imf_parse_cpl_from_xml_dom() argument
733 imf_cpl_init(FFIMFCPL *cpl) imf_cpl_init() argument
746 FFIMFCPL *cpl; ff_imf_cpl_alloc() local
755 ff_imf_cpl_free(FFIMFCPL *cpl) ff_imf_cpl_free() argument
781 ff_imf_parse_cpl(AVIOContext *in, FFIMFCPL **cpl) ff_imf_parse_cpl() argument
[all...]
H A Dimfdec.c124 FFIMFCPL *cpl; member
605 if (c->cpl->main_image_2d_track) { in open_cpl_tracks()
606 if ((ret = open_virtual_track(s, c->cpl->main_image_2d_track, track_index++)) != 0) { in open_cpl_tracks()
608 AV_UUID_ARG(c->cpl->main_image_2d_track->base.id_uuid)); in open_cpl_tracks()
613 for (uint32_t i = 0; i < c->cpl->main_audio_track_count; i++) { in open_cpl_tracks()
614 if ((ret = open_virtual_track(s, &c->cpl->main_audio_tracks[i], track_index++)) != 0) { in open_cpl_tracks()
616 AV_UUID_ARG(c->cpl->main_audio_tracks[i].base.id_uuid)); in open_cpl_tracks()
645 if ((ret = ff_imf_parse_cpl(s->pb, &c->cpl)) < 0) in imf_read_header()
651 AV_UUID_ARG(c->cpl->id_uuid)); in imf_read_header()
881 ff_imf_cpl_free(c->cpl); in imf_close()
[all...]
H A Dimf.h142 * @param[out] cpl Pointer to a memory area (allocated by the client), where the
148 int ff_imf_parse_cpl_from_xml_dom(xmlDocPtr doc, FFIMFCPL **cpl);
153 * @param[out] cpl Pointer to a memory area (allocated by the client), where the
159 int ff_imf_parse_cpl(AVIOContext *in, FFIMFCPL **cpl);
171 * @param[in] cpl The FFIMFCPL structure to delete.
173 void ff_imf_cpl_free(FFIMFCPL *cpl);
/third_party/ffmpeg/libavformat/tests/
H A Dimf.c290 FFIMFCPL *cpl; in test_cpl_parsing() local
299 ret = ff_imf_parse_cpl_from_xml_dom(doc, &cpl); in test_cpl_parsing()
306 printf("%s\n", cpl->content_title_utf8); in test_cpl_parsing()
307 printf(AV_PRI_URN_UUID "\n", AV_UUID_ARG(cpl->id_uuid)); in test_cpl_parsing()
308 printf("%i %i\n", cpl->edit_rate.num, cpl->edit_rate.den); in test_cpl_parsing()
310 printf("Marker resource count: %" PRIu32 "\n", cpl->main_markers_track->resource_count); in test_cpl_parsing()
311 for (uint32_t i = 0; i < cpl->main_markers_track->resource_count; i++) { in test_cpl_parsing()
313 for (uint32_t j = 0; j < cpl->main_markers_track->resources[i].marker_count; j++) { in test_cpl_parsing()
315 printf(" Label %s\n", cpl in test_cpl_parsing()
344 FFIMFCPL *cpl; test_bad_cpl_parsing() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dac3enc_float.c43 int cpl = s->cpl_on; in scale_coefficients() local
44 s->ac3dsp.float_to_fixed24(s->fixed_coef_buffer + (chan_size * !cpl), in scale_coefficients()
45 s->mdct_coef_buffer + (chan_size * !cpl), in scale_coefficients()
46 chan_size * (s->channels + cpl)); in scale_coefficients()
H A Dac3enc.c543 * @param cpl indicates if the block is in the coupling channel
546 int cpl) in encode_exponents_blk_ch()
550 nb_groups = exponent_group_tab[cpl][exp_strategy-1][nb_exps] * 3; in encode_exponents_blk_ch()
555 for (i = 1, k = 1-cpl; i <= nb_groups; i++) { in encode_exponents_blk_ch()
559 exp[i-cpl] = exp_min; in encode_exponents_blk_ch()
564 for (i = 1, k = 1-cpl; i <= nb_groups; i++) { in encode_exponents_blk_ch()
572 exp[i-cpl] = exp_min; in encode_exponents_blk_ch()
579 if (!cpl && exp[0] > 15) in encode_exponents_blk_ch()
590 if (cpl) in encode_exponents_blk_ch()
596 for (i = nb_groups, k = (nb_groups * 2)-cpl; in encode_exponents_blk_ch()
545 encode_exponents_blk_ch(uint8_t *exp, int nb_exps, int exp_strategy, int cpl) encode_exponents_blk_ch() argument
620 int blk, blk1, ch, cpl; encode_exponents() local
678 int cpl = (ch == CPL_CH); count_exponent_bits() local
702 int blk, ch, i, cpl; ac3_group_exponents() local
1606 int cpl = (ch == CPL_CH); output_audio_block() local
[all...]
/third_party/ffmpeg/tests/fate/
H A Dimf.mak1 FATE_IMF += fate-imf-cpl-with-repeat
2 fate-imf-cpl-with-repeat: CMD = framecrc -f imf -i $(TARGET_SAMPLES)/imf/countdown/CPL_bb2ce11c-1bb6-4781-8e69-967183d02b9b.xml -c:v copy
/third_party/ltp/testcases/kernel/kvm/include/
H A Dkvm_x86_svm.h112 uint8_t cpl; member
/third_party/gn/src/gn/
H A Dvariables.cc1562 # On Windows, generate a "mysettings.cpl" control panel applet. Control panel
1566 output_extension = "cpl"

Completed in 9 milliseconds