Home
last modified time | relevance | path

Searched refs:timecode (Results 1 – 25 of 67) sorted by relevance

123

/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dv4l2_show.c75 buf->timecode.type, in show_v4l2_buffer()
76 buf->timecode.flags, in show_v4l2_buffer()
77 buf->timecode.frames, in show_v4l2_buffer()
78 buf->timecode.seconds, in show_v4l2_buffer()
79 buf->timecode.minutes, in show_v4l2_buffer()
80 buf->timecode.hours, in show_v4l2_buffer()
81 buf->timecode.userbits[0], in show_v4l2_buffer()
82 buf->timecode.userbits[1], in show_v4l2_buffer()
83 buf->timecode.userbits[2], in show_v4l2_buffer()
84 buf->timecode.userbits[3], buf->sequence, buf->memory); in show_v4l2_buffer()
/third_party/gstreamer/gstplugins_good/ext/dv/
Dgstsmptetimecode.h54 #define GST_SMPTE_TIME_CODE_ARGS(timecode) \ argument
55 (timecode)->hours, (timecode)->minutes, \
56 (timecode)->seconds, (timecode)->frames
Dgstdvdemux.c1425 GstSMPTETimeCode * timecode) in gst_dvdemux_get_timecode() argument
1438 timecode->frames = ((data[offset + 4] >> 4) & 0x3) * 10 + in gst_dvdemux_get_timecode()
1440 timecode->seconds = ((data[offset + 5] >> 4) & 0x3) * 10 + in gst_dvdemux_get_timecode()
1442 timecode->minutes = ((data[offset + 6] >> 4) & 0x3) * 10 + in gst_dvdemux_get_timecode()
1444 timecode->hours = ((data[offset + 7] >> 4) & 0x3) * 10 + in gst_dvdemux_get_timecode()
1447 GST_SMPTE_TIME_CODE_ARGS (timecode)); in gst_dvdemux_get_timecode()
1496 GstSMPTETimeCode timecode; in gst_dvdemux_demux_frame() local
1537 gst_dvdemux_get_timecode (dvdemux, buffer, &timecode); in gst_dvdemux_demux_frame()
1541 &frame_number, &timecode); in gst_dvdemux_demux_frame()
/third_party/gstreamer/gstplugins_bad/gst/timecode/
Dgsttimecodestamper.c141 GstVideoTimeCode timecode; member
442 gst_video_time_code_clear (&tc->timecode); in gst_timecodestamper_dispose()
504 if (tc->timecode.config.latest_daily_jam) { in gst_timecodestamper_set_property()
505 g_date_time_unref (tc->timecode.config.latest_daily_jam); in gst_timecodestamper_set_property()
507 tc->timecode.config.latest_daily_jam = in gst_timecodestamper_set_property()
675 gst_video_time_code_clear (&tc->timecode); in gst_timecodestamper_stop()
735 tc->timecode.config.flags |= GST_VIDEO_TIME_CODE_FLAGS_DROP_FRAME; in gst_timecodestamper_update_drop_frame()
756 tc->timecode.config.flags &= ~GST_VIDEO_TIME_CODE_FLAGS_DROP_FRAME; in gst_timecodestamper_update_drop_frame()
768 timecodestamper, gint fps_n, gint fps_d, GstVideoTimeCode * timecode, in gst_timecodestamper_update_timecode_framerate() argument
776 if (!timecode) in gst_timecodestamper_update_timecode_framerate()
[all …]
Dplugin.c43 timecode,
/third_party/ffmpeg/tests/ref/fate/
Ddpx-probe7 TAG:timecode=00:00:01:18
11 side_data_type=SMPTE 12-1 timecode
Dmxf-d10-user-comments27 TAG:timecode=01:00:00:00
Dmxf-probe-d10109 TAG:timecode=07:12:10:00
Dmxf-probe-dv25146 TAG:timecode=01:00:00:00
Dmxf-probe-applehdr10165 TAG:timecode=00:01:15;26
/third_party/ffmpeg/libavformat/
Dgxf.c42 static int add_timecode_metadata(AVDictionary **pm, const char *key, uint32_t timecode, int fields_… in add_timecode_metadata() argument
45 int field = timecode & 0xff; in add_timecode_metadata()
47 int second = (timecode >> 8) & 0xff; in add_timecode_metadata()
48 int minute = (timecode >> 16) & 0xff; in add_timecode_metadata()
49 int hour = (timecode >> 24) & 0x1f; in add_timecode_metadata()
50 int drop = (timecode >> 29) & 1; in add_timecode_metadata()
53 if (timecode >> 31) in add_timecode_metadata()
Ddvenc.c102 uint32_t timecode; in dv_write_pack() local
108 timecode = av_timecode_get_smpte_from_framenum(&c->tc, c->frames); in dv_write_pack()
109 timecode |= 1<<23 | 1<<15 | 1<<7 | 1<<6; // biphase and binary group flags in dv_write_pack()
110 AV_WB32(buf + 1, timecode); in dv_write_pack()
Dmatroskadec.c348 uint64_t timecode; member
762 { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, 0, offsetof(MatroskaCluster, timecode) },
3203 uint8_t *data, int size, uint64_t timecode, in matroska_parse_rm_audio() argument
3216 track->audio.buf_timecode = timecode; in matroska_parse_rm_audio()
3388 uint64_t timecode, in matroska_parse_webvtt() argument
3482 pkt->pts = timecode; in matroska_parse_webvtt()
3502 uint64_t timecode, uint64_t lace_duration, in matroska_parse_frame() argument
3587 pkt->dts = timecode; in matroska_parse_frame()
3589 pkt->pts = timecode; in matroska_parse_frame()
3622 uint64_t timecode = AV_NOPTS_VALUE; in matroska_parse_block() local
[all …]
Ddv.c457 char timecode[AV_TIMECODE_STR_SIZE]; in dv_read_timecode() local
474 ret = dv_extract_timecode(&c->dv_demux, partial_frame, timecode); in dv_read_timecode()
476 av_dict_set(&s->metadata, "timecode", timecode, 0); in dv_read_timecode()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/
Dgstav1parser.c1665 GstAV1MetadataTimecode * timecode) in gst_av1_parse_metadata_timecode() argument
1674 timecode->counting_type = AV1_READ_BITS (br, 5); in gst_av1_parse_metadata_timecode()
1675 timecode->full_timestamp_flag = AV1_READ_BIT (br); in gst_av1_parse_metadata_timecode()
1676 timecode->discontinuity_flag = AV1_READ_BIT (br); in gst_av1_parse_metadata_timecode()
1677 timecode->cnt_dropped_flag = AV1_READ_BIT (br); in gst_av1_parse_metadata_timecode()
1678 timecode->n_frames = AV1_READ_BITS (br, 9); in gst_av1_parse_metadata_timecode()
1680 if (timecode->full_timestamp_flag) { in gst_av1_parse_metadata_timecode()
1685 timecode->seconds_value = AV1_READ_BITS (br, 6); in gst_av1_parse_metadata_timecode()
1686 timecode->minutes_value = AV1_READ_BITS (br, 6); in gst_av1_parse_metadata_timecode()
1687 timecode->hours_value = AV1_READ_BITS (br, 5); in gst_av1_parse_metadata_timecode()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/
Dmeson.build13 'timecode', 'transcode', 'videofilters',
/third_party/gstreamer/gstplugins_bad/sys/decklink/osx/
DDeckLinkAPITypes.h112 virtual HRESULT GetString (/* out */ CFStringRef *timecode) = 0;
DDeckLinkAPIDeckControl.h182 …virtual HRESULT GoToTimecode (/* in */ BMDTimecodeBCD timecode, /* out */ BMDDeckControlError *err…
/third_party/gstreamer/gstplugins_bad/sys/decklink/linux/
DDeckLinkAPITypes.h112 virtual HRESULT GetString (/* out */ const char **timecode) = 0;
DDeckLinkAPIDeckControl.h182 …virtual HRESULT GoToTimecode (/* in */ BMDTimecodeBCD timecode, /* out */ BMDDeckControlError *err…
/third_party/ffmpeg/libavutil/
DMakefile78 timecode.h \
162 timecode.o \
/third_party/ffmpeg/libavcodec/
Dhevc_sei.h122 HEVCSEITimeCode timecode; member
Dh264_sei.h94 H264SEITimeCode timecode[3]; member
/third_party/gstreamer/gstplugins_bad/sys/decklink/win/
DDeckLinkAPI.h2201 /* [out] */ BSTR *timecode) = 0;
2241 /* [out] */ BSTR *timecode);
2279 #define IDeckLinkTimecode_GetString(This,timecode) \ argument
2280 ( (This)->lpVtbl -> GetString(This,timecode) )
3124 /* [in] */ BMDTimecodeBCD timecode,
3278 /* [in] */ BMDTimecodeBCD timecode,
3436 #define IDeckLinkDeckControl_GoToTimecode(This,timecode,error) \ argument
3437 ( (This)->lpVtbl -> GoToTimecode(This,timecode,error) )
6704 /* [out] */ IDeckLinkTimecode **timecode) = 0;
6752 /* [out] */ IDeckLinkTimecode **timecode);
[all …]
/third_party/ffmpeg/libavdevice/
Ddecklink_dec.cpp795 IDeckLinkTimecode *timecode; in get_bmd_timecode() local
802 if (videoFrame->GetTimecode(tc_format, &timecode) == S_OK) { in get_bmd_timecode()
804 if (timecode->GetComponents(&hh, &mm, &ss, &ff) == S_OK) { in get_bmd_timecode()
805 … int flags = (timecode->GetFlags() & bmdTimecodeIsDropFrame) ? AV_TIMECODE_FLAG_DROPFRAME : 0; in get_bmd_timecode()
807 ff = ff << 1 | !!(timecode->GetFlags() & bmdTimecodeFieldMark); in get_bmd_timecode()
810 timecode->Release(); in get_bmd_timecode()

123