HomeSort by relevance Sort by last modified time
    Searched full:av_codec_context (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 146 AVCodecContext* av_codec_context = av_stream->codec; local
147 AVCodec* av_codec = avcodec_find_decoder(av_codec_context->codec_id);
151 << av_codec_context->codec_id;
153 av_codec_context->error_concealment = FF_EC_GUESS_MVS | FF_EC_DEBLOCK;
154 av_codec_context->thread_count = kDecodeThreads;
156 EXPECT_EQ(0, avcodec_open2(av_codec_context, av_codec, NULL))
158 << av_codec_context->codec_id;
  /external/chromium_org/media/cast/test/
sender.cc 206 AVCodecContext* av_codec_context = av_stream->codec; local
207 AVCodec* av_codec = avcodec_find_decoder(av_codec_context->codec_id);
211 << av_codec_context->codec_id;
216 av_codec_context->thread_count = 2;
217 av_codec_context->error_concealment = FF_EC_GUESS_MVS | FF_EC_DEBLOCK;
218 av_codec_context->request_sample_fmt = AV_SAMPLE_FMT_S16;
220 if (avcodec_open2(av_codec_context, av_codec, NULL) < 0) {
222 << av_codec_context->codec_id;
227 if (av_codec_context->sample_fmt == AV_SAMPLE_FMT_S16P) {
232 av_codec_context->channel_layout
    [all...]

Completed in 121 milliseconds