summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-29 13:22:11 +0200
committerwm4 <wm4@nowhere>2014-06-29 20:39:32 +0200
commit7412257305140e5a21a1acd35f6be546b9295dd5 (patch)
tree3fceb1836aef1efe53cb2a8917878eac4d4b53f2 /common
parent8b06fc86f38e62d2dfed58eeb03d5dad597047e1 (diff)
downloadmpv-7412257305140e5a21a1acd35f6be546b9295dd5.tar.bz2
mpv-7412257305140e5a21a1acd35f6be546b9295dd5.tar.xz
av_common: remove unneeded field
This is actually needed for encoding only, and not decoding. Drop it.
Diffstat (limited to 'common')
-rw-r--r--common/av_common.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/av_common.c b/common/av_common.c
index 1a162b7d95..d8d5c7e09d 100644
--- a/common/av_common.c
+++ b/common/av_common.c
@@ -64,7 +64,6 @@ void mp_copy_lav_codec_headers(AVCodecContext *avctx, AVCodecContext *st)
avctx->channels = st->channels;
avctx->block_align = st->block_align;
avctx->channel_layout = st->channel_layout;
- avctx->audio_service_type = st->audio_service_type;
avctx->bits_per_coded_sample = st->bits_per_coded_sample;
}