Searched refs:av_q2d (Results 1 - 25 of 105) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dtimestamp.h68 else snprintf(buf, AV_TS_MAX_STRING_SIZE, "%.6g", av_q2d(*tb) * ts);
H A Drational.h80 static inline double av_q2d(AVRational a){ function
H A Drational.c159 double d = av_q2d(a) == av_q2d(b) ?
160 0 : (av_q2d(a) - av_q2d(b));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_framestep.c58 inlink->frame_rate.num, inlink->frame_rate.den, av_q2d(inlink->frame_rate),
59 outlink->frame_rate.num, outlink->frame_rate.den, av_q2d(outlink->frame_rate));
H A Dsettb.c79 settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
80 settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
H A Dsetpts.c121 setpts->var_values[VAR_TB] = av_q2d(inlink->time_base);
129 av_q2d(inlink->frame_rate) : NAN;
140 #define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts)*av_q2d(tb))
H A Dvf_vignette.c151 #define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts) * av_q2d(tb))
289 s->var_values[VAR_TB] = av_q2d(inlink->time_base);
291 NAN : av_q2d(inlink->frame_rate);
296 s->xscale = av_q2d(av_div_q(sar, s->aspect));
299 s->yscale = av_q2d(av_div_q(s->aspect, sar));
H A Daf_asetrate.c73 if (av_q2d(intb) > 1.0 / FFMAX(inrate, outlink->sample_rate))
H A Dvf_blackframe.c91 frame->pts == AV_NOPTS_VALUE ? -1 : frame->pts * av_q2d(inlink->time_base),
H A Davf_showwaves.c118 showwaves->n = FFMAX(1, ((double)inlink->sample_rate / (showwaves->w * av_q2d(showwaves->rate))) + 0.5);
129 showwaves->w, showwaves->h, av_q2d(outlink->frame_rate), showwaves->n);
H A Df_interleave.c79 queue_idx, frame->pts * av_q2d(AV_TIME_BASE_Q));
99 frame->pts * av_q2d(AV_TIME_BASE_Q), in_no, s->queues[in_no].available);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_setpts.c93 setpts->var_values[VAR_TB] = av_q2d(inlink->time_base);
124 inpicref ->pts, inpicref ->pts * av_q2d(inlink->time_base),
125 outpicref->pts, outpicref->pts * av_q2d(inlink->time_base));
H A Dvf_settb.c79 settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
80 settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
H A Dvf_select.c157 select->var_values[VAR_TB] = av_q2d(inlink->time_base);
190 select->var_values[VAR_START_T] = TS2D(picref->pts) * av_q2d(inlink->time_base);
193 select->var_values[VAR_T ] = TS2D(picref->pts) * av_q2d(inlink->time_base);
H A Dvf_blackframe.c102 picref->pts == AV_NOPTS_VALUE ? -1 : picref->pts * av_q2d(inlink->time_base));
H A Dvf_showinfo.c66 picref->pts, picref->pts * av_q2d(inlink->time_base), picref->pos,
H A Dvsrc_nullsrc.c82 priv->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavutil/
H A Drational.h60 static inline double av_q2d(AVRational a){ function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dfilmstripenc.c67 avio_wb16(pb, 1/av_q2d(st->codec->time_base));
H A Dseek-test.c56 tsval = ts * av_q2d(base);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Drational.c157 double d = av_q2d(a) == av_q2d(b) ?
158 0 : (av_q2d(a) - av_q2d(b));
H A Drational.h69 static inline double av_q2d(AVRational a){ function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Ddump.c85 HEXDUMP_PRINT(" duration=%0.3f\n", pkt->duration * av_q2d(time_base));
91 HEXDUMP_PRINT("%0.3f", pkt->dts * av_q2d(time_base));
97 HEXDUMP_PRINT("%0.3f", pkt->pts * av_q2d(time_base));
326 print_fps(av_q2d(st->avg_frame_rate), "fps");
329 print_fps(av_q2d(st->r_frame_rate), "tbr");
332 print_fps(1 / av_q2d(st->time_base), "tbn");
334 print_fps(1 / av_q2d(st->codec->time_base), "tbc");
415 "start %f, ", ch->start * av_q2d(ch->time_base));
417 "end %f\n", ch->end * av_q2d(ch->time_base));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dfbdev_dec.c130 fbdev->width * fbdev->height * fbdev->bytes_per_pixel * av_q2d(fbdev->framerate_q) * 8;
164 fbdev->time_frame += INT64_C(1000000) / av_q2d(fbdev->framerate_q);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dfbdev.c170 fbdev->width * fbdev->height * fbdev->bytes_per_pixel * av_q2d(fbdev->framerate_q) * 8;
210 fbdev->time_frame += INT64_C(1000000) / av_q2d(fbdev->framerate_q);

Completed in 161 milliseconds

12345