av_common: remove unneeded field

This is actually needed for encoding only, and not decoding. Drop it.
This commit is contained in:
wm4 2014-06-29 13:22:11 +02:00
parent 8b06fc86f3
commit 7412257305
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}