~ubuntu-branches/ubuntu/utopic/libav/utopic

« back to all changes in this revision

Viewing changes to libavcodec/eac3enc.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler, Reinhard Tartler, Rico Tzschichholz
  • Date: 2014-08-30 11:02:45 UTC
  • mfrom: (1.3.47 sid)
  • Revision ID: package-import@ubuntu.com-20140830110245-io3dg7q85wfr7125
Tags: 6:11~beta1-2
[ Reinhard Tartler ]
* Make libavcodec-dev depend on libavresample-dev

[ Rico Tzschichholz ]
* Some fixes and leftovers from soname bumps

Show diffs side-by-side

added added

removed removed

Lines of Context:
247
247
}
248
248
 
249
249
 
250
 
#if CONFIG_EAC3_ENCODER
251
250
AVCodec ff_eac3_encoder = {
252
251
    .name            = "eac3",
253
252
    .long_name       = NULL_IF_CONFIG_SMALL("ATSC A/52 E-AC-3"),
254
253
    .type            = AVMEDIA_TYPE_AUDIO,
255
254
    .id              = AV_CODEC_ID_EAC3,
256
255
    .priv_data_size  = sizeof(AC3EncodeContext),
257
 
    .init            = ff_ac3_encode_init,
 
256
    .init            = ff_ac3_float_encode_init,
258
257
    .encode2         = ff_ac3_float_encode_frame,
259
258
    .close           = ff_ac3_encode_close,
260
259
    .sample_fmts     = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLTP,
263
262
    .channel_layouts = ff_ac3_channel_layouts,
264
263
    .defaults        = ac3_defaults,
265
264
};
266
 
#endif