Searched refs:tmp_pkt (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg_mux.c | 68 AVPacket *tmp_pkt; in of_write_packet() local 90 tmp_pkt = av_packet_alloc(); in of_write_packet() 91 if (!tmp_pkt) in of_write_packet() 93 av_packet_move_ref(tmp_pkt, pkt); in of_write_packet() 94 ost->muxing_queue_data_size += tmp_pkt->size; in of_write_packet() 95 av_fifo_write(ost->muxing_queue, &tmp_pkt, 1); in of_write_packet()
|
/third_party/ffmpeg/libavformat/ |
H A D | psxstr.c | 57 AVPacket tmp_pkt; member 210 pkt = &str->channels[channel].tmp_pkt; in str_read_packet() 289 if(str->channels[i].tmp_pkt.data) in str_read_close() 290 av_packet_unref(&str->channels[i].tmp_pkt); in str_read_close()
|
/third_party/ffmpeg/doc/examples/ |
H A D | muxing.c | 65 AVPacket *tmp_pkt; member 141 ost->tmp_pkt = av_packet_alloc(); in add_stream() 142 if (!ost->tmp_pkt) { in add_stream() 380 return write_frame(oc, c, ost->st, frame, ost->tmp_pkt); in write_audio_frame() 523 return write_frame(oc, ost->enc, ost->st, get_video_frame(ost), ost->tmp_pkt); in write_video_frame() 531 av_packet_free(&ost->tmp_pkt); in close_stream()
|
/third_party/ffmpeg/libavcodec/ |
H A D | bsf.c | 239 AVPacket *tmp_pkt; in ff_bsf_get_packet() local 247 tmp_pkt = av_packet_alloc(); in ff_bsf_get_packet() 248 if (!tmp_pkt) in ff_bsf_get_packet() 252 bsfi->buffer_pkt = tmp_pkt; in ff_bsf_get_packet()
|
Completed in 4 milliseconds