mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/mvdec: re-indent after last commit
Signed-off-by: John-Paul Stewart <jpstewart@personalprojects.net> Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Reviewed-by: Peter Ross <pross@xvid.org>
This commit is contained in:
parent
a8da115143
commit
b24f0c82b3
|
@ -316,9 +316,9 @@ static int mv_read_header(AVFormatContext *avctx)
|
||||||
v = avio_rb16(pb);
|
v = avio_rb16(pb);
|
||||||
if (v == MOVIE_SOUND) {
|
if (v == MOVIE_SOUND) {
|
||||||
/* movie has sound so allocate an audio stream */
|
/* movie has sound so allocate an audio stream */
|
||||||
ast = avformat_new_stream(avctx, NULL);
|
ast = avformat_new_stream(avctx, NULL);
|
||||||
if (!ast)
|
if (!ast)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
} else if (v != MOVIE_SILENT)
|
} else if (v != MOVIE_SILENT)
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
|
@ -350,41 +350,41 @@ static int mv_read_header(AVFormatContext *avctx)
|
||||||
avio_skip(pb, 12);
|
avio_skip(pb, 12);
|
||||||
|
|
||||||
if (ast) {
|
if (ast) {
|
||||||
ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||||
ast->nb_frames = vst->nb_frames;
|
ast->nb_frames = vst->nb_frames;
|
||||||
ast->codecpar->sample_rate = avio_rb32(pb);
|
ast->codecpar->sample_rate = avio_rb32(pb);
|
||||||
if (ast->codecpar->sample_rate <= 0) {
|
if (ast->codecpar->sample_rate <= 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Invalid sample rate %d\n", ast->codecpar->sample_rate);
|
av_log(avctx, AV_LOG_ERROR, "Invalid sample rate %d\n", ast->codecpar->sample_rate);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
|
||||||
avpriv_set_pts_info(ast, 33, 1, ast->codecpar->sample_rate);
|
|
||||||
|
|
||||||
bytes_per_sample = avio_rb32(pb);
|
|
||||||
|
|
||||||
v = avio_rb32(pb);
|
|
||||||
if (v == AUDIO_FORMAT_SIGNED) {
|
|
||||||
switch (bytes_per_sample) {
|
|
||||||
case 1:
|
|
||||||
ast->codecpar->codec_id = AV_CODEC_ID_PCM_S8;
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
ast->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
avpriv_request_sample(avctx, "Audio sample size %i bytes", bytes_per_sample);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
} else {
|
avpriv_set_pts_info(ast, 33, 1, ast->codecpar->sample_rate);
|
||||||
avpriv_request_sample(avctx, "Audio compression (format %i)", v);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bytes_per_sample == 0)
|
bytes_per_sample = avio_rb32(pb);
|
||||||
return AVERROR_INVALIDDATA;
|
|
||||||
|
|
||||||
if (set_channels(avctx, ast, avio_rb32(pb)) < 0)
|
v = avio_rb32(pb);
|
||||||
return AVERROR_INVALIDDATA;
|
if (v == AUDIO_FORMAT_SIGNED) {
|
||||||
|
switch (bytes_per_sample) {
|
||||||
|
case 1:
|
||||||
|
ast->codecpar->codec_id = AV_CODEC_ID_PCM_S8;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
ast->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
avpriv_request_sample(avctx, "Audio sample size %i bytes", bytes_per_sample);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
avpriv_request_sample(avctx, "Audio compression (format %i)", v);
|
||||||
|
}
|
||||||
|
|
||||||
avio_skip(pb, 8);
|
if (bytes_per_sample == 0)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
|
if (set_channels(avctx, ast, avio_rb32(pb)) < 0)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
|
avio_skip(pb, 8);
|
||||||
} else
|
} else
|
||||||
avio_skip(pb, 24); /* skip meaningless audio metadata */
|
avio_skip(pb, 24); /* skip meaningless audio metadata */
|
||||||
|
|
||||||
|
@ -401,8 +401,8 @@ static int mv_read_header(AVFormatContext *avctx)
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
avio_skip(pb, 8);
|
avio_skip(pb, 8);
|
||||||
if (ast) {
|
if (ast) {
|
||||||
av_add_index_entry(ast, pos, timestamp, asize, 0, AVINDEX_KEYFRAME);
|
av_add_index_entry(ast, pos, timestamp, asize, 0, AVINDEX_KEYFRAME);
|
||||||
timestamp += asize / (ast->codecpar->channels * (uint64_t)bytes_per_sample);
|
timestamp += asize / (ast->codecpar->channels * (uint64_t)bytes_per_sample);
|
||||||
}
|
}
|
||||||
av_add_index_entry(vst, pos + asize, i, vsize, 0, AVINDEX_KEYFRAME);
|
av_add_index_entry(vst, pos + asize, i, vsize, 0, AVINDEX_KEYFRAME);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue