Commit 5292dac3 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mov: Rename alt_sample_size so its name matches what it is

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7e03886b
...@@ -110,7 +110,7 @@ typedef struct MOVStreamContext { ...@@ -110,7 +110,7 @@ typedef struct MOVStreamContext {
int ctts_index; int ctts_index;
int ctts_sample; int ctts_sample;
unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
unsigned int alt_sample_size; ///< always contains sample size from stsz atom unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
unsigned int sample_count; unsigned int sample_count;
int *sample_sizes; int *sample_sizes;
int keyframe_absent; int keyframe_absent;
......
...@@ -1721,7 +1721,7 @@ static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom) ...@@ -1721,7 +1721,7 @@ static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
sample_size = avio_rb32(pb); sample_size = avio_rb32(pb);
if (!sc->sample_size) /* do not overwrite value computed in stsd */ if (!sc->sample_size) /* do not overwrite value computed in stsd */
sc->sample_size = sample_size; sc->sample_size = sample_size;
sc->alt_sample_size = sample_size; sc->stsz_sample_size = sample_size;
field_size = 32; field_size = 32;
} else { } else {
sample_size = 0; sample_size = 0;
...@@ -2018,7 +2018,7 @@ static void mov_build_index(MOVContext *mov, AVStream *st) ...@@ -2018,7 +2018,7 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
} }
if (keyframe) if (keyframe)
distance = 0; distance = 0;
sample_size = sc->alt_sample_size > 0 ? sc->alt_sample_size : sc->sample_sizes[current_sample]; sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
if (sc->pseudo_stream_id == -1 || if (sc->pseudo_stream_id == -1 ||
sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) { sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
AVIndexEntry *e = &st->index_entries[st->nb_index_entries++]; AVIndexEntry *e = &st->index_entries[st->nb_index_entries++];
......
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