Searched refs:time_code (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmpeg12enc.c197 uint64_t time_code; local
291 time_code = s->current_picture_ptr->f.coded_picture_number + s->avctx->timecode_frame_start;
296 int d = time_code / 17982;
297 int m = time_code % 17982;
299 time_code += 18 * d + 2 * ((m - 2) / 1798);
301 put_bits(&s->pb, 5, (uint32_t)((time_code / (fps * 3600)) % 24));
302 put_bits(&s->pb, 6, (uint32_t)((time_code / (fps * 60)) % 60));
304 put_bits(&s->pb, 6, (uint32_t)((time_code / fps) % 60));
305 put_bits(&s->pb, 6, (uint32_t)((time_code % fps)));
H A Dmpeg4videodec.c1489 unsigned time_code = show_bits(gb, 18); local
1491 if (time_code & 0x40) { /* marker_bit */
1492 hours = time_code >> 13;
1493 minutes = time_code >> 7 & 0x3f;
1494 seconds = time_code & 0x3f;
1496 skip_bits(gb, 20); /* time_code, closed_gov, broken_link */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/dvb-core/
H A Ddvb_filter.h180 s32 time_code; member in struct:mpg_picture
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmpeg12enc.c242 uint64_t time_code; local
373 time_code = s->current_picture_ptr->f->coded_picture_number +
380 time_code = av_timecode_adjust_ntsc_framenum2(time_code, fps);
382 put_bits(&s->pb, 5, (uint32_t)((time_code / (fps * 3600)) % 24));
383 put_bits(&s->pb, 6, (uint32_t)((time_code / (fps * 60)) % 60));
385 put_bits(&s->pb, 6, (uint32_t)((time_code / fps) % 60));
386 put_bits(&s->pb, 6, (uint32_t)((time_code % fps)));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmxfenc.c1842 uint32_t time_code; local
1865 time_code = av_timecode_get_smpte_from_framenum(&mxf->tc, frame);
1866 avio_wb32(pb, time_code);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dmxfenc.c1576 uint32_t time_code; local
1599 time_code = ff_framenum_to_12m_time_code(frame, mxf->timecode_drop_frame, mxf->timecode_base);
1600 avio_wb32(pb, time_code);

Completed in 251 milliseconds