diff options
author | David Conrad <lessen42@gmail.com> | 2010-05-05 21:02:37 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-05-05 21:02:37 +0000 |
commit | 614748ceeb88004b1ea79cf47e4a447abca46e48 (patch) | |
tree | 4b93763a3426c039c4606bd5eae0816a88f9310b | |
parent | 8af7dbce61711c61c90dc8c2acec28fb7b4b77f0 (diff) | |
download | ffmpeg-614748ceeb88004b1ea79cf47e4a447abca46e48.tar.gz |
schroenc: Don't touch gop_structure by default, it should be left adaptive
Originally committed as revision 23025 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/libschroedingerenc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/libschroedingerenc.c b/libavcodec/libschroedingerenc.c index c375c73c0b..26318193da 100644 --- a/libavcodec/libschroedingerenc.c +++ b/libavcodec/libschroedingerenc.c @@ -153,9 +153,6 @@ static int libschroedinger_encode_init(AVCodecContext *avccontext) schro_encoder_setting_set_double(p_schro_params->encoder, "enable_noarith", 1); } else { - schro_encoder_setting_set_double(p_schro_params->encoder, - "gop_structure", - SCHRO_ENCODER_GOP_BIREF); avccontext->has_b_frames = 1; } |