Home
last modified time | relevance | path

Searched refs:dec_sub (Results 1 – 25 of 48) sorted by relevance

12

/dports/multimedia/mpv/mpv-0.34.1/sub/
H A Ddec_sub.h13 struct dec_sub;
41 void sub_destroy(struct dec_sub *sub);
43 bool sub_can_preload(struct dec_sub *sub);
44 void sub_preload(struct dec_sub *sub);
45 bool sub_read_packets(struct dec_sub *sub, double video_pts);
49 struct sd_times sub_get_times(struct dec_sub *sub, double pts);
50 void sub_reset(struct dec_sub *sub);
51 void sub_select(struct dec_sub *sub, bool selected);
53 void sub_set_play_dir(struct dec_sub *sub, int dir);
54 bool sub_is_secondary_visible(struct dec_sub *sub);
[all …]
H A Ddec_sub.c46 struct dec_sub { struct
75 static void update_subtitle_speed(struct dec_sub *sub) in update_subtitle_speed() argument
119 void sub_destroy(struct dec_sub *sub) in sub_destroy()
133 static struct sd *init_decoder(struct dec_sub *sub) in init_decoder()
169 struct dec_sub *sub = talloc(NULL, struct dec_sub); in sub_create()
170 *sub = (struct dec_sub){ in sub_create()
198 static void update_segment(struct dec_sub *sub) in update_segment()
227 bool sub_can_preload(struct dec_sub *sub) in sub_can_preload()
236 void sub_preload(struct dec_sub *sub) in sub_preload()
388 void sub_reset(struct dec_sub *sub) in sub_reset()
[all …]
H A Dosd.h168 struct dec_sub;
177 void osd_set_sub(struct osd_state *osd, int index, struct dec_sub *dec_sub);
H A Dosd_state.h40 struct dec_sub *sub;
H A Dosd.c176 void osd_set_sub(struct osd_state *osd, int index, struct dec_sub *dec_sub) in osd_set_sub() argument
181 obj->sub = dec_sub; in osd_set_sub()
/dports/multimedia/ccextractor/ccextractor-0.85/src/lib_ccx/
H A Dgeneral_loop.c535 dec_sub = &dec_ctx->dec_sub; in raw_loop()
550 if (dec_sub->got_output) in raw_loop()
553 encode_sub(enc_ctx, dec_sub); in raw_loop()
554 dec_sub->got_output = 0; in raw_loop()
640 struct cc_subtitle *dec_sub = &dec_ctx->dec_sub; in process_data() local
759 encode_sub(enc_ctx, dec_sub); in process_data()
760 dec_sub->got_output = 0; in process_data()
1160 dec_sub = &dec_ctx->dec_sub; in rcwt_loop()
1180 dec_sub->got_output = 0; in rcwt_loop()
1232 if (dec_sub->got_output) in rcwt_loop()
[all …]
H A Dmyth.c773 struct cc_subtitle dec_sub; in myth_loop() local
786 memset(&dec_sub, 0, sizeof(dec_sub)); in myth_loop()
798 ProcessVBIDataPacket(ctx, &dec_sub); in myth_loop()
816 LLONG used = process_m2v(dec_ctx, desp, length, &dec_sub); in myth_loop()
846 if (dec_sub.got_output) in myth_loop()
849 encode_sub(enc_ctx,&dec_sub); in myth_loop()
850 dec_sub.got_output = 0; in myth_loop()
H A Dlib_ccx.c222 flush_cc_decode(dec_ctx, &dec_ctx->dec_sub); in dinit_libraries()
225 if (enc_ctx && dec_ctx->dec_sub.got_output == CCX_TRUE) in dinit_libraries()
227 encode_sub(enc_ctx, &dec_ctx->dec_sub); in dinit_libraries()
228 dec_ctx->dec_sub.got_output = CCX_FALSE; in dinit_libraries()
284 dec_ctx->dec_sub.prev = NULL; in update_decoder_list()
288 dec_ctx->dec_sub.prev = malloc(sizeof(struct cc_subtitle)); in update_decoder_list()
337 dec_ctx->dec_sub.prev = NULL; in update_decoder_list_cinfo()
H A Dhardsubx.c251 ctx->dec_sub = (struct cc_subtitle *)malloc(sizeof(struct cc_subtitle)); in _init_hardsubx()
252 memset (ctx->dec_sub, 0,sizeof(struct cc_subtitle)); in _init_hardsubx()
267 freep(lctx->dec_sub); in _dinit_hardsubx()
H A Dhardsubx_decoder.c334 …add_cc_sub_text(ctx->dec_sub, prev_subtitle_text, begin_time, end_time, "", "BURN", CCX_ENC_UTF_8); in hardsubx_process_frames_linear()
335 encode_sub(enc_ctx, ctx->dec_sub); in hardsubx_process_frames_linear()
359 add_cc_sub_text(ctx->dec_sub, prev_subtitle_text, begin_time, end_time, "", "BURN", CCX_ENC_UTF_8); in hardsubx_process_frames_linear()
360 encode_sub(enc_ctx, ctx->dec_sub); in hardsubx_process_frames_linear()
H A Dccx_decoders_structs.h124 struct cc_subtitle dec_sub; member
H A Dhardsubx.h71 struct cc_subtitle *dec_sub; member
H A Dccx_decoders_common.c225 free_subtitle(lctx->dec_sub.prev); in dinit_cc_decode()
329 memset (&ctx->dec_sub, 0,sizeof(ctx->dec_sub)); in init_cc_decode()
/dports/multimedia/ccextractor/ccextractor-0.85/src/gpacmp4/
H A Dmp4.c292 struct cc_subtitle dec_sub; in processmp4() local
298 memset(&dec_sub,0,sizeof(dec_sub)); in processmp4()
350 if(dec_sub.got_output) in processmp4()
353 encode_sub(enc_ctx, &dec_sub); in processmp4()
354 dec_sub.got_output = 0; in processmp4()
378 if(dec_sub.got_output) in processmp4()
381 encode_sub(enc_ctx, &dec_sub); in processmp4()
382 dec_sub.got_output = 0; in processmp4()
520 &dec_sub); in processmp4()
524 if (dec_sub.got_output) { in processmp4()
[all …]
/dports/multimedia/mpv/mpv-0.34.1/player/
H A Dsub.c86 struct dec_sub *dec_sub = track ? track->d_sub : NULL; in update_subtitle() local
88 if (!dec_sub || video_pts == MP_NOPTS_VALUE) in update_subtitle()
94 sub_control(dec_sub, SD_CTRL_SET_VIDEO_PARAMS, &params); in update_subtitle()
97 if (track->demuxer->fully_read && sub_can_preload(dec_sub)) { in update_subtitle()
101 sub_preload(dec_sub); in update_subtitle()
104 if (!sub_read_packets(dec_sub, video_pts)) in update_subtitle()
109 char *text = sub_get_text(dec_sub, video_pts, SD_TEXT_TYPE_PLAIN); in update_subtitle()
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavcodec/
H A Djacosubdec.c179 char *dec_sub; in jacosub_decode_frame() local
188 av_bprint_finalize(&buffer, &dec_sub); in jacosub_decode_frame()
189 ff_ass_add_rect(sub, dec_sub, avpkt->pts, avpkt->duration, 0); in jacosub_decode_frame()
190 av_free(dec_sub); in jacosub_decode_frame()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavcodec/
H A Djacosubdec.c179 char *dec_sub; in jacosub_decode_frame() local
188 av_bprint_finalize(&buffer, &dec_sub); in jacosub_decode_frame()
189 ff_ass_add_rect(sub, dec_sub, avpkt->pts, avpkt->duration, 0); in jacosub_decode_frame()
190 av_free(dec_sub); in jacosub_decode_frame()
/dports/lang/parrot/parrot-8.1.0/t/library/
H A Dmime_base64.t432 .local pmc dec_sub
433 dec_sub = get_global [ "MIME"; "Base64" ], 'decode_base64'
454 decode = dec_sub( base64 )
458 decode = dec_sub( base64, enc )
H A Dmime_base64u.t240 .local pmc dec_sub
241 dec_sub = get_global [ "MIME"; "Base64" ], 'decode_base64'
251 decode = dec_sub( base64, enc )
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/Transforms/InstCombine/
H A Dsub-not.ll41 define i8 @dec_sub(i8 %x, i8 %y) {
42 ; CHECK-LABEL: @dec_sub(
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/Transforms/InstCombine/
H A Dsub-not.ll41 define i8 @dec_sub(i8 %x, i8 %y) {
42 ; CHECK-LABEL: @dec_sub(
/dports/devel/llvm90/llvm-9.0.1.src/test/Transforms/InstCombine/
H A Dsub-not.ll41 define i8 @dec_sub(i8 %x, i8 %y) {
42 ; CHECK-LABEL: @dec_sub(
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/Transforms/InstCombine/
H A Dsub-not.ll41 define i8 @dec_sub(i8 %x, i8 %y) {
42 ; CHECK-LABEL: @dec_sub(
/dports/devel/llvm10/llvm-10.0.1.src/test/Transforms/InstCombine/
H A Dsub-not.ll41 define i8 @dec_sub(i8 %x, i8 %y) {
42 ; CHECK-LABEL: @dec_sub(
/dports/devel/llvm11/llvm-11.0.1.src/test/Transforms/InstCombine/
H A Dsub-not.ll41 define i8 @dec_sub(i8 %x, i8 %y) {
42 ; CHECK-LABEL: @dec_sub(

12