Revision 773947ba libavformat/ffmdec.c
libavformat/ffmdec.c | ||
---|---|---|
325 | 325 |
codec->qcompress = avio_rb16(pb) / 10000.0; |
326 | 326 |
codec->qblur = avio_rb16(pb) / 10000.0; |
327 | 327 |
codec->bit_rate_tolerance = avio_rb32(pb); |
328 |
codec->rc_eq = av_strdup(get_strz(pb, rc_eq_buf, sizeof(rc_eq_buf))); |
|
328 |
avio_get_str(pb, INT_MAX, rc_eq_buf, sizeof(rc_eq_buf)); |
|
329 |
codec->rc_eq = av_strdup(rc_eq_buf); |
|
329 | 330 |
codec->rc_max_rate = avio_rb32(pb); |
330 | 331 |
codec->rc_min_rate = avio_rb32(pb); |
331 | 332 |
codec->rc_buffer_size = avio_rb32(pb); |
Also available in: Unified diff