Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
H A Dconcatdec.c172 static int copy_stream_props(AVStream *st, AVStream *source_st) in copy_stream_props() argument
176 if (st->codecpar->codec_id || !source_st->codecpar->codec_id) { in copy_stream_props()
177 if (st->codecpar->extradata_size < source_st->codecpar->extradata_size) { in copy_stream_props()
179 source_st->codecpar->extradata_size); in copy_stream_props()
183 memcpy(st->codecpar->extradata, source_st->codecpar->extradata, in copy_stream_props()
184 source_st->codecpar->extradata_size); in copy_stream_props()
187 if ((ret = avcodec_parameters_copy(st->codecpar, source_st->codecpar)) < 0) in copy_stream_props()
189 st->r_frame_rate = source_st->r_frame_rate; in copy_stream_props()
190 st->avg_frame_rate = source_st->avg_frame_rate; in copy_stream_props()
191 st->sample_aspect_ratio = source_st in copy_stream_props()
[all...]

Completed in 1 milliseconds