• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/

Lines Matching defs:avccontext

160     AVCodecContext *avctx = ac->avccontext;
236 av_log(ac->avccontext, AV_LOG_ERROR, "invalid sampling rate index %d\n", ac->m4ac.sampling_index);
284 av_log(ac->avccontext, AV_LOG_ERROR, "invalid default channel configuration (%d)\n",
327 ff_log_missing_feature(ac->avccontext, "960/120 MDCT window is", 1);
389 av_log(ac->avccontext, AV_LOG_ERROR, "invalid sampling rate index %d\n", ac->m4ac.sampling_index);
402 av_log(ac->avccontext, AV_LOG_ERROR, "Audio object type %s%d is not supported.\n",
441 static av_cold int aac_decode_init(AVCodecContext * avccontext) {
442 AACContext * ac = avccontext->priv_data;
445 ac->avccontext = avccontext;
447 if (avccontext->extradata_size > 0) {
448 if(decode_audio_specific_config(ac, avccontext->extradata, avccontext->extradata_size))
450 avccontext->sample_rate = ac->m4ac.sample_rate;
451 } else if (avccontext->channels > 0) {
454 if(set_default_channel_config(ac, new_che_pos, avccontext->channels - (avccontext->channels == 8)))
458 ac->m4ac.sample_rate = avccontext->sample_rate;
460 ff_log_missing_feature(ac->avccontext, "Implicit channel configuration is", 0);
464 avccontext->sample_fmt = SAMPLE_FMT_S16;
465 avccontext->frame_size = 1024;
479 dsputil_init(&ac->dsp, avccontext);
536 av_log(ac->avccontext, AV_LOG_ERROR, "Invalid Predictor Reset Group.\n");
553 av_log(ac->avccontext, AV_LOG_ERROR, "Reserved bit set.\n");
594 av_log(ac->avccontext, AV_LOG_ERROR, "Prediction is not allowed in AAC-LC.\n");
598 ff_log_missing_feature(ac->avccontext, "Predictor bit set but LTP is", 1);
606 av_log(ac->avccontext, AV_LOG_ERROR,
635 av_log(ac->avccontext, AV_LOG_ERROR, "invalid band type\n");
642 av_log(ac->avccontext, AV_LOG_ERROR,
684 av_log(ac->avccontext, AV_LOG_ERROR,
697 av_log(ac->avccontext, AV_LOG_ERROR,
707 av_log(ac->avccontext, AV_LOG_ERROR,
761 av_log(ac->avccontext, AV_LOG_ERROR, "TNS filter order %d is greater than maximum %d.",
854 av_log(ac->avccontext, AV_LOG_ERROR,
875 av_log(ac->avccontext, AV_LOG_ERROR, "error in spectral data, ESC overflow\n");
1047 av_log(ac->avccontext, AV_LOG_ERROR, "Pulse tool not allowed in eight short sequence.\n");
1051 av_log(ac->avccontext, AV_LOG_ERROR, "Pulse data corrupt or invalid.\n");
1058 ff_log_missing_feature(ac->avccontext, "SSR", 1);
1157 av_log(ac->avccontext, AV_LOG_ERROR, "ms_present = 3 is reserved.\n");
1211 av_log(ac->avccontext, AV_LOG_ERROR,
1270 ff_log_missing_feature(ac->avccontext, "SBR", 0);
1434 av_log(ac->avccontext, AV_LOG_WARNING,
1497 av_log(ac->avccontext, AV_LOG_ERROR,
1612 ff_log_missing_feature(ac->avccontext, "More than one AAC RDB per ADTS frame is", 0);
1619 static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data_size, const uint8_t * buf, int buf_size) {
1620 AACContext * ac = avccontext->priv_data;
1630 av_log(avccontext, AV_LOG_ERROR, "Error decoding AAC frame header.\n");
1634 av_log(ac->avccontext, AV_LOG_ERROR, "invalid sampling rate index %d\n", ac->m4ac.sampling_index);
1645 av_log(ac->avccontext, AV_LOG_ERROR, "channel element %d.%d is not allocated\n", elem_type, elem_id);
1707 data_size_tmp = 1024 * avccontext->channels * sizeof(int16_t);
1709 av_log(avccontext, AV_LOG_ERROR,
1716 ac->dsp.float_to_int16_interleave(data, (const float **)ac->output_data, 1024, avccontext->channels);
1721 static av_cold int aac_decode_close(AVCodecContext * avccontext) {
1722 AACContext * ac = avccontext->priv_data;