Home
last modified time | relevance | path

Searched refs:output_codec (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/email/
Dcharset.py241 self.output_codec = CODEC_MAP.get(self.output_charset,
290 codec = self.output_codec or 'us-ascii'
316 codec = self.output_codec or 'us-ascii'
Dheader.py298 output_charset = charset.output_codec or 'us-ascii'
/third_party/ffmpeg/doc/examples/
Dtranscode_aac.c147 AVCodec *output_codec = NULL; in open_output_file() local
181 if (!(output_codec = avcodec_find_encoder(AV_CODEC_ID_AAC))) { in open_output_file()
193 avctx = avcodec_alloc_context3(output_codec); in open_output_file()
205 avctx->sample_fmt = output_codec->sample_fmts[0]; in open_output_file()
221 if ((error = avcodec_open2(avctx, output_codec, NULL)) < 0) { in open_output_file()
/third_party/python/Doc/library/
Demail.charset.rst89 .. attribute:: output_codec
/third_party/ffmpeg/fftools/
Dffmpeg_opt.c2295 AVCodec const *output_codec = in open_output_file() local
2300 if (output_codec) in open_output_file()
2301 output_descriptor = avcodec_descriptor_get(output_codec->id); in open_output_file()