Commit 59bcc93b authored by Baptiste Coudurier's avatar Baptiste Coudurier

do not use PAL_samples_per_frame in init, to make init independant

Originally committed as revision 16902 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a9025f2a
......@@ -878,7 +878,7 @@ static int ff_audio_interleave_init(AVFormatContext *s, const int *samples_per_f
int i;
if (!samples_per_frame)
samples_per_frame = PAL_samples_per_frame;
return -1;
for (i = 0; i < s->nb_streams; i++) {
AVStream *st = s->streams[i];
......@@ -961,6 +961,9 @@ static int mxf_write_header(AVFormatContext *s)
sc->order = AV_RB32(sc->track_essence_element_key+12);
}
if (!samples_per_frame)
samples_per_frame = PAL_samples_per_frame;
if (ff_audio_interleave_init(s, samples_per_frame) < 0)
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment