Home
last modified time | relevance | path

Searched refs:pts_t (Results 1 – 25 of 29) sorted by relevance

12

/dports/multimedia/dvbcut/dvbcut-deb-0.7.3/src/
H A Dmuxer.h34 pts_t pts[MAXAVSTREAMS];
35 pts_t dts[MAXAVSTREAMS];
45 pts_t getpts(int str) const in getpts()
49 void setpts(int str, pts_t p) in setpts()
53 pts_t getdts(int str) const in getdts()
57 void setdts(int str, pts_t d) in setdts()
74 …virtual bool putpacket(int str, const void *data, int len, pts_t pts, pts_t dts, uint32_t flags=0)…
H A Dmpegmuxer.h34 #define scr2pts(x) ((pts_t)((x)/300))
64 pts_t pts,dts;
68 au(const void *_data,int _size, pts_t _pts, pts_t _dts, int _flags);
96 pts_t getpts() in getpts()
100 pts_t getdts() in getdts()
124 pts_t dts;
159 void setlastdts(pts_t dts) in setlastdts()
181 pts_t getdts() const in getdts()
300 pts_t ptsoffset;
309 void packetizer(int str, pts_t maxdts);
[all …]
H A Dpts.h28 typedef int64_t pts_t; typedef
34 static inline pts_t ptsreference(pts_t t, pts_t reference) in ptsreference()
40 std::string ptsstring(pts_t pts);
41 pts_t string2pts(std::string);
H A Dstreamdata.h55 pts_t pts;
57 …item(filepos_t fp, uint32_t fl, pts_t p, uint32_t bp) : fileposition(fp), bufferposition(bp), flag… in item()
60 pts=(pts_t)AV_NOPTS_VALUE; in item()
65 void setpts(pts_t p) in setpts()
67 if (p!=(pts_t)AV_NOPTS_VALUE) in setpts()
77 pts_t headerpts() const in headerpts()
81 pts_t headerpts(pts_t reference) const in headerpts()
208 void appenditem(filepos_t fp, int flags, pts_t pts, const void *d, int s) in appenditem()
258 uint32_t ptsbufferpos(pts_t pts);
259 uint32_t closestptsbufferpos(pts_t pts);
H A Ddvbcut.h56 pts_t startpts;
58 pts_t stoppts;
60 pts_t outpts;
62 …ick_picture_lookup_s(int _startpicture, pts_t _startpts, int _stoppicture, pts_t _stoppts, int _ou… in quick_picture_lookup_s()
86 std::list<pts_t> chapterlist;
95 pts_t firstpts;
107 pts_t mplayer_curpts;
H A Dmpgfile.h172 int getpictureattime(pts_t time) const in getpictureattime()
175 pts_t firstpts=idx[first].getpts(), secondpts=idx[second].getpts(); in getpictureattime()
222 void recodevideo(muxer &mux, int start, int stop, pts_t offset,
224 void fixtimecode(uint8_t *buf, int len, pts_t pts);
236 static pts_t char2pts(const unsigned char *h) in char2pts()
238 return pts_t((uint32_t(h[4] & 0xfe) >> 1) | in char2pts()
241 (uint32_t(h[1]) << 22)) | pts_t((uint32_t) (h[0] & 0x0e) << 29); in char2pts()
243 static pts_t char2pts(const unsigned char *h, pts_t reference) in char2pts()
H A Dmpgfile.cpp292 pts_t stoppts=startpts; in playaudio()
327 pts_t pts=AV_NOPTS_VALUE; in playaudio()
334 if (pts==(pts_t)AV_NOPTS_VALUE) in playaudio()
406 pts_t startpts = framerate / 300; in savempg()
414 pts_t audiopts[MAXAUDIOSTREAMS]; in savempg()
415 pts_t audiostartpts[MAXAUDIOSTREAMS]; in savempg()
416 pts_t audiooffset[MAXAUDIOSTREAMS]; in savempg()
422 pts_t shift=0; in savempg()
428 pts_t delta_pts = (pts_t)(stop - start) * framerate / 300; in savempg()
490 pts_t audiostoppts[MAXAUDIOSTREAMS]; in savempg()
[all …]
H A Dstreamdata.cpp144 pts_t pts=0; in audio_addpts()
213 uint32_t streamdata::ptsbufferpos(pts_t pts) in ptsbufferpos()
227 pts_t itpts=it->headerpts(pts); in ptsbufferpos()
236 pts_t nxpts=nx->headerpts(pts); in ptsbufferpos()
252 uint32_t streamdata::closestptsbufferpos(pts_t pts) in closestptsbufferpos()
264 pts_t itpts=it->headerpts(pts); in closestptsbufferpos()
273 pts_t nxpts=nx->headerpts(pts); in closestptsbufferpos()
296 pts_t pts(0); in appenditem()
H A Deventlistitem.h36 …Widget *listbox, const QPixmap &pixmap, eventtype type, int picture, int picturetype, pts_t _pts );
43 pts_t getpts() const in getpts()
64 pts_t pts;
H A Dmpegmuxer.cpp139 ptsoffset=pts_t(90000.*(allbuffers/50./muxrate))+90; in mpegmuxer()
162 bool mpegmuxer::putpacket(int str, const void *data, int len, pts_t pts, pts_t dts, uint32_t flags) in putpacket()
231 const pts_t dts_safetymargin=2*90000; // 2 seconds in flush()
232 pts_t maxdts=-1; in flush()
383 void mpegmuxer::packetizer(int str,pts_t maxdts) in packetizer()
544 pts_t pts=a->getpts(); in packetizer()
562 pts_t dts=a->getdts(); in packetizer()
654 mpegmuxer::au::au(const void *_data,int _size, pts_t _pts, pts_t _dts, int _flags) : in au()
669 mpegmuxer::pack::pack(int packsize, int payloadsize, int muxrate, pts_t _dts) : in pack()
H A Dindex.h60 picture(filepos_t pos, pts_t _pts, int framerate, int aspectratio,
74 pts_t getpts() const in getpts()
76 pts_t l=pts&0xffffffffffll; in getpts()
H A Dlavfmuxer.h63 bool putpacket(int str, const void *data, int len, pts_t pts, pts_t dts, uint32_t flags=0)
H A Dpts.cpp29 std::string ptsstring(pts_t pts) in ptsstring()
53 pts_t string2pts(std::string str) in string2pts()
H A Dtsfile.h117 std::vector<pts_t> time_bookmarks; // to store the bookmarks as time stamps
142 for (std::vector<pts_t>::iterator b = time_bookmarks.begin(); b != time_bookmarks.end(); ++b) in getbookmarks()
H A Dindex.cpp123 pts_t maxbitratepts=0, dt; in generate()
127 pts_t referencepts=0; // pts of picture #0 in current sequence in generate()
129 pts_t lastpts=1ll<<31, lastseqheaderpts=0, firstseqheaderpts=0; in generate()
238 pts_t pts=sd->itemlist().front().headerpts(); in generate()
316 pts_t ptsdelta = pts - p[lastiframe].getpts(); in generate()
402 p[pictures]=picture(filepos_t(w),pts_t(h),0,0,0,0,false,i+1); in generate()
H A Deventlistitem.cpp28 eventtype type, int picture, int picturetype, pts_t _pts ) : in EventListItem()
H A Ddvbcut.cpp626 pts_t lastch=-1; in fileExport()
627 for(std::list<pts_t>::const_iterator it=chapterlist.begin(); in fileExport()
776 pts_t startpts=(*mpg)[0].getpts(), stoppts, savedtime=0; in fileExport()
1749 pts_t pts=mplayer_ptsreference(pts_t(d*90000.),mplayer_curpts); in mplayer_readstdout()
2453 timestr(pts_t pts) { in timestr()
2464 const pts_t pts=idx.getpts()-firstpts; in update_time_display()
2469 pts_t outpts=0; in update_time_display()
2531 pts_t startpts, stoppts, outpts=0; in update_quick_picture_lookup_table()
/dports/multimedia/dvdauthor/dvdauthor-d5bb0b/src/
H A Dda-internal.h62 typedef int64_t pts_t; /* timestamp in units of 90kHz clock */ typedef
71 pts_t videopts[2],sectpts[2],firstvideopts;
114 pts_t startpts,endpts;
133 pts_t pts[2]; /* start and end time of packet */
268 int findvobu(const struct vob *va,pts_t pts,int l,int h);
269 pts_t getptsspan(const struct pgc *ch);
270 pts_t getframepts(const struct vobgroup *va);
274 pts_t getcellpts(const struct vob *va,int cellid);
H A Ddvdvob.c94 static pts_t calcpts in calcpts()
99 pts_t *align, in calcpts()
100 pts_t basepts, in calcpts()
107 const pts_t fpts = getframepts(va); in calcpts()
147 static int findaudsect(const struct vob *va, int aind, pts_t pts0, pts_t pts1) in findaudsect()
301 ((pts_t)a1) << 30 in readpts()
779 static void printpts(pts_t pts) in printpts()
1143 pts_t backoffs = 0, lastscr = 0; in FindVobus()
1822 pts_t finalaudiopts; in FindVobus()
2018 static pts_t pabs(pts_t pts) in pabs()
[all …]
/dports/graphics/open3d/Open3D-0.2/src/Python/Tutorial/ReconstructionSystem/
H A Dopencv_pose_estimation.py39 pts_t = []
41 pts_t.append(kp_t[match.trainIdx].pt)
44 pts_t = np.asarray(pts_t)
48 np.asarray(target_rgbd_image.color), pts_s, pts_t,
58 pts_t_int = np.int32(pts_t + 0.5)
68 pts_s, pts_t, mask, "5-pt RANSAC")
81 xyz_t = get_xyz_from_pts(pts_t[i,:],
110 def draw_correspondences(img_s, img_t, pts_s, pts_t, mask, title): argument
124 tx = pts_t[i,0] + wa
125 ty = pts_t[i,1]
/dports/graphics/py-open3d-python/Open3D-0.2/src/Python/Tutorial/ReconstructionSystem/
H A Dopencv_pose_estimation.py39 pts_t = []
41 pts_t.append(kp_t[match.trainIdx].pt)
44 pts_t = np.asarray(pts_t)
48 np.asarray(target_rgbd_image.color), pts_s, pts_t,
58 pts_t_int = np.int32(pts_t + 0.5)
68 pts_s, pts_t, mask, "5-pt RANSAC")
81 xyz_t = get_xyz_from_pts(pts_t[i,:],
110 def draw_correspondences(img_s, img_t, pts_s, pts_t, mask, title): argument
124 tx = pts_t[i,0] + wa
125 ty = pts_t[i,1]
/dports/audio/din/din-52/src/
H A Dtrail.h21 struct pts_t { struct
/dports/science/qmcpack/qmcpack-3.11.0/src/QMCHamiltonians/
H A DStaticStructureFactor.h26 typedef std::vector<PosType> pts_t; typedef
H A DSpinDensity.h27 typedef std::vector<PosType> pts_t; typedef
H A DDensityMatrices1B.h53 typedef std::vector<PosType> pts_t; typedef

12