diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-06-20 13:08:40 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-07-06 20:10:41 +0200 |
commit | 5e8d2e337e432cad00daae7a6755c994b4853e70 (patch) | |
tree | 543f08695f7f3ef9abb124783a9a0f76facf789b /libavformat/ffmenc.c | |
parent | df64da3b1ef0c7014135bce44e5f82becf81fe79 (diff) | |
download | ffmpeg-5e8d2e337e432cad00daae7a6755c994b4853e70.tar.gz |
lavf: deprecate AVStream.quality.
AVStream is no place for it and it's unused outside of ffmpeg anyway.
Diffstat (limited to 'libavformat/ffmenc.c')
-rw-r--r-- | libavformat/ffmenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/ffmenc.c b/libavformat/ffmenc.c index 9a3eb40ad7..a31ac8e1d0 100644 --- a/libavformat/ffmenc.c +++ b/libavformat/ffmenc.c @@ -114,7 +114,6 @@ static int ffm_write_header(AVFormatContext *s) avio_wb32(pb, codec->codec_id); avio_w8(pb, codec->codec_type); avio_wb32(pb, codec->bit_rate); - avio_wb32(pb, st->quality); avio_wb32(pb, codec->flags); avio_wb32(pb, codec->flags2); avio_wb32(pb, codec->debug); |