summaryrefslogtreecommitdiff
path: root/libavformat/soxenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/soxenc.c')
-rw-r--r--libavformat/soxenc.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/soxenc.c b/libavformat/soxenc.c
index 17de1789a1..ea05f36892 100644
--- a/libavformat/soxenc.c
+++ b/libavformat/soxenc.c
@@ -44,7 +44,7 @@ static int sox_write_header(AVFormatContext *s)
{
SoXContext *sox = s->priv_data;
AVIOContext *pb = s->pb;
- AVCodecContext *enc = s->streams[0]->codec;
+ AVCodecParameters *par = s->streams[0]->codecpar;
AVDictionaryEntry *comment;
size_t comment_len = 0, comment_size;
@@ -55,19 +55,19 @@ static int sox_write_header(AVFormatContext *s)
sox->header_size = SOX_FIXED_HDR + comment_size;
- if (enc->codec_id == AV_CODEC_ID_PCM_S32LE) {
+ if (par->codec_id == AV_CODEC_ID_PCM_S32LE) {
ffio_wfourcc(pb, ".SoX");
avio_wl32(pb, sox->header_size);
avio_wl64(pb, 0); /* number of samples */
- avio_wl64(pb, av_double2int(enc->sample_rate));
- avio_wl32(pb, enc->channels);
+ avio_wl64(pb, av_double2int(par->sample_rate));
+ avio_wl32(pb, par->channels);
avio_wl32(pb, comment_size);
- } else if (enc->codec_id == AV_CODEC_ID_PCM_S32BE) {
+ } else if (par->codec_id == AV_CODEC_ID_PCM_S32BE) {
ffio_wfourcc(pb, "XoS.");
avio_wb32(pb, sox->header_size);
avio_wb64(pb, 0); /* number of samples */
- avio_wb64(pb, av_double2int(enc->sample_rate));
- avio_wb32(pb, enc->channels);
+ avio_wb64(pb, av_double2int(par->sample_rate));
+ avio_wb32(pb, par->channels);
avio_wb32(pb, comment_size);
} else {
av_log(s, AV_LOG_ERROR, "invalid codec; use pcm_s32le or pcm_s32be\n");
@@ -96,14 +96,14 @@ static int sox_write_trailer(AVFormatContext *s)
{
SoXContext *sox = s->priv_data;
AVIOContext *pb = s->pb;
- AVCodecContext *enc = s->streams[0]->codec;
+ AVCodecParameters *par = s->streams[0]->codecpar;
if (s->pb->seekable) {
/* update number of samples */
int64_t file_size = avio_tell(pb);
int64_t num_samples = (file_size - sox->header_size - 4LL) >> 2LL;
avio_seek(pb, 8, SEEK_SET);
- if (enc->codec_id == AV_CODEC_ID_PCM_S32LE) {
+ if (par->codec_id == AV_CODEC_ID_PCM_S32LE) {
avio_wl64(pb, num_samples);
} else
avio_wb64(pb, num_samples);