Searched refs:opkt (Results 1 - 2 of 2) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dffmpeg.c1371 AVPacket opkt; local
1372 av_init_packet(&opkt);
1391 opkt.stream_index= ost->index;
1393 opkt.pts= av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base);
1395 opkt.pts= AV_NOPTS_VALUE;
1398 opkt.dts = av_rescale_q(ist->pts, AV_TIME_BASE_Q, ost->st->time_base);
1400 opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
1402 opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
1403 opkt.flags= pkt->flags;
1406 if(av_parser_change(ist->st->parser, ost->st->codec, &opkt
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dutils.c2774 AVPacket opkt; local
2775 int ret= av_interleave_packet(s, &opkt, pkt, 0);
2779 ret= s->oformat->write_packet(s, &opkt);
2781 av_free_packet(&opkt);

Completed in 110 milliseconds