• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/

Lines Matching refs:decoded_frame

167     AVFrame *decoded_frame;
700 av_freep(&input_streams[i].decoded_frame);
989 InputStream *ist, AVFrame *decoded_frame)
999 uint8_t *buf = decoded_frame->data[0];
1000 int size = decoded_frame->nb_samples * dec->channels * isize;
1813 AVFrame *decoded_frame;
1818 if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
1821 avcodec_get_frame_defaults(ist->decoded_frame);
1822 decoded_frame = ist->decoded_frame;
1824 ret = avcodec_decode_audio4(avctx, decoded_frame, got_output, pkt);
1836 if (decoded_frame->pts != AV_NOPTS_VALUE)
1837 ist->next_pts = decoded_frame->pts;
1841 ist->next_pts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1846 int decoded_data_size = decoded_frame->nb_samples * avctx->channels * bps;
1847 void *samples = decoded_frame->data[0];
1909 do_audio_out(output_files[ost->file_index].ctx, ost, ist, decoded_frame);
1917 AVFrame *decoded_frame, *filtered_frame = NULL;
1925 if (!ist->decoded_frame && !(ist->decoded_frame = avcodec_alloc_frame()))
1928 avcodec_get_frame_defaults(ist->decoded_frame);
1929 decoded_frame = ist->decoded_frame;
1935 decoded_frame, got_output, pkt);
1939 quality = same_quant ? decoded_frame->quality : 0;
1944 ist->next_pts = ist->pts = guess_correct_pts(&ist->pts_ctx, decoded_frame->pkt_pts,
1945 decoded_frame->pkt_dts);
1956 pre_process_video_frame(ist, (AVPicture *)decoded_frame, &buffer_to_free);
1968 resample_changed = ost->resample_width != decoded_frame->width ||
1969 ost->resample_height != decoded_frame->height ||
1970 ost->resample_pix_fmt != decoded_frame->format;
1976 decoded_frame->width, decoded_frame->height, av_get_pix_fmt_name(decoded_frame->format));
1984 ost->resample_width = decoded_frame->width;
1985 ost->resample_height = decoded_frame->height;
1986 ost->resample_pix_fmt = decoded_frame->format;
1990 decoded_frame->sample_aspect_ratio = ist->st->sample_aspect_ratio;
1992 FrameBuffer *buf = decoded_frame->opaque;
1994 decoded_frame->data, decoded_frame->linesize,
1999 avfilter_copy_frame_props(fb, decoded_frame);
2007 av_vsrc_buffer_add_frame(ost->input_video_filter, decoded_frame,
2008 ist->pts, decoded_frame->sample_aspect_ratio);
2027 filtered_frame = decoded_frame;