Searched refs:fCodec (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVCodecEncoder.cpp45 fCodec(NULL),
62 fCodec = avcodec_find_encoder(fCodecID);
63 TRACE(" found AVCodec for %u: %p\n", fCodecID, fCodec);
132 if (fCodec == NULL && fCodecID == AV_CODEC_ID_NONE) {
135 fCodec = avcodec_find_encoder(fCodecID);
137 if (fCodec == NULL) {
283 fCodecContext = avcodec_alloc_context3(fCodec);
308 if (fCodec->pix_fmts != NULL) {
309 for (int i = 0; fCodec->pix_fmts[i] != AV_PIX_FMT_NONE; i++) {
312 fCodecContext->pix_fmt = fCodec
[all...]
H A DAVCodecEncoder.h76 const AVCodec* fCodec; member in class:AVCodecEncoder
H A DAVCodecDecoder.h120 const AVCodec* fCodec; member in class:AVCodecDecoder
H A DAVCodecDecoder.cpp89 fCodec(NULL),
176 snprintf(mci->short_name, 32, "%s", fCodec->name);
177 snprintf(mci->pretty_name, 96, "%s", fCodec->long_name);
179 mci->sub_id = fCodec->id;
210 fCodec = avcodec_find_decoder(static_cast<CodecID>(
212 if (fCodec == NULL) {
217 TRACE(" found decoder %s\n", fCodec->name);
307 fCodecContext = avcodec_alloc_context3(fCodec);
381 if (avcodec_open2(fCodecContext, fCodec, NULL) < 0) {
481 if (avcodec_open2(fCodecContext, fCodec, NUL
[all...]

Completed in 40 milliseconds