[FFmpeg-devel] [PATCH 02/10] lavc/flacdsp: separate the encoder and decoder functions

Carl Eugen Hoyos cehoyos at ag.or.at
Wed Feb 12 00:50:15 CET 2014


James Darnley <james.darnley <at> gmail.com> writes:

> -    if (bps > 16) {
> +    if (CONFIG_FLAC_DECODER) {
> +    if (bps > 16)

if (CONFIG_FLAC_DECODER && bps > 16)
(Same below.)

>          c->lpc            = flac_lpc_32_c;
> -        c->lpc_encode     = flac_lpc_encode_c_32;

> -    } else {

Please don't change this line.

Carl Eugen



More information about the ffmpeg-devel mailing list