Searched refs:coded_frame (Results 1 - 25 of 195) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dv308enc.c34 avctx->coded_frame = av_frame_alloc();
36 if (!avctx->coded_frame) {
55 avctx->coded_frame->key_frame = 1;
56 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
80 av_freep(&avctx->coded_frame);
H A Dy41penc.c33 avctx->coded_frame = av_frame_alloc();
36 if (!avctx->coded_frame) {
54 avctx->coded_frame->key_frame = 1;
55 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
87 av_freep(&avctx->coded_frame);
H A Dyuv4enc.c28 avctx->coded_frame = av_frame_alloc();
30 if (!avctx->coded_frame) {
49 avctx->coded_frame->key_frame = 1;
50 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
77 av_freep(&avctx->coded_frame);
H A Dv408enc.c29 avctx->coded_frame = av_frame_alloc();
31 if (!avctx->coded_frame) {
50 avctx->coded_frame->key_frame = 1;
51 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
85 av_freep(&avctx->coded_frame);
H A Dv410enc.c35 avctx->coded_frame = av_frame_alloc();
37 if (!avctx->coded_frame) {
57 avctx->coded_frame->key_frame = 1;
58 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
84 av_freep(&avctx->coded_frame);
H A Drawenc.c38 avctx->coded_frame = avctx->priv_data;
39 avcodec_get_frame_defaults(avctx->coded_frame);
40 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
H A Daliaspixenc.c32 avctx->coded_frame = av_frame_alloc();
33 if (!avctx->coded_frame)
44 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
45 avctx->coded_frame->key_frame = 1;
119 av_frame_free(&avctx->coded_frame);
H A Davuienc.c28 avctx->coded_frame = av_frame_alloc();
34 if (!avctx->coded_frame) {
73 avctx->coded_frame->key_frame = 1;
74 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
97 av_freep(&avctx->coded_frame);
H A Dpamenc.c126 avctx->coded_frame = av_frame_alloc();
127 if (!avctx->coded_frame)
130 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
131 avctx->coded_frame->key_frame = 1;
138 av_frame_free(&avctx->coded_frame);
H A Dr210enc.c29 avctx->coded_frame = av_frame_alloc();
31 if (!avctx->coded_frame)
50 avctx->coded_frame->key_frame = 1;
51 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
83 av_freep(&avctx->coded_frame);
H A Dv210enc.c39 avctx->coded_frame = av_frame_alloc();
40 if (!avctx->coded_frame)
43 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
112 av_freep(&avctx->coded_frame);
H A Dflashsvenc.c101 av_frame_free(&avctx->coded_frame);
134 avctx->coded_frame = av_frame_alloc();
135 if (!avctx->coded_frame) {
265 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
266 avctx->coded_frame->key_frame = 1;
270 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_P;
271 avctx->coded_frame->key_frame = 0;
274 if (avctx->coded_frame->key_frame)
H A Dbmpenc.c63 avctx->coded_frame = av_frame_alloc();
64 if (!avctx->coded_frame)
81 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
82 avctx->coded_frame->key_frame = 1;
168 av_frame_free(&avctx->coded_frame);
H A Dlclenc.c138 avctx->coded_frame = av_frame_alloc();
139 if (!avctx->coded_frame)
142 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
143 avctx->coded_frame->key_frame = 1;
186 av_frame_free(&avctx->coded_frame);
H A Dlibutvideodec.cpp99 avctx->coded_frame = av_frame_alloc();
105 avctx->coded_frame->interlaced_frame = info.flags & 0x800 ? 1 : 0;
108 avctx->coded_frame->top_field_first = 1;
134 AVFrame *pic = avctx->coded_frame;
177 av_frame_free(&avctx->coded_frame);
H A Dpcxenc.c38 avctx->coded_frame = av_frame_alloc();
39 if (!avctx->coded_frame)
42 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
43 avctx->coded_frame->key_frame = 1;
50 av_frame_free(&avctx->coded_frame);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Drawenc.c34 avctx->coded_frame = (AVFrame *)avctx->priv_data;
35 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
36 avctx->coded_frame->key_frame = 1;
H A Dv410dec.c36 avctx->coded_frame = avcodec_alloc_frame();
38 if (!avctx->coded_frame) {
49 AVFrame *pic = avctx->coded_frame;
101 if (avctx->coded_frame->data[0])
102 avctx->release_buffer(avctx, avctx->coded_frame);
104 av_freep(&avctx->coded_frame);
H A Dv410enc.c33 avctx->coded_frame = avcodec_alloc_frame();
35 if (!avctx->coded_frame) {
58 avctx->coded_frame->reference = 0;
59 avctx->coded_frame->key_frame = 1;
60 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
85 av_freep(&avctx->coded_frame);
H A Ddxtory.c29 avctx->coded_frame = avcodec_alloc_frame();
30 if (!avctx->coded_frame)
40 AVFrame *pic = avctx->coded_frame;
92 AVFrame *pic = avctx->coded_frame;
95 av_freep(&avctx->coded_frame);
H A Dr210dec.c31 avctx->coded_frame = avcodec_alloc_frame();
40 AVFrame *pic = avctx->coded_frame;
84 *(AVFrame*)data = *avctx->coded_frame;
91 AVFrame *pic = avctx->coded_frame;
94 av_freep(&avctx->coded_frame);
H A Dv210dec.c36 avctx->coded_frame = avcodec_alloc_frame();
45 AVFrame *pic = avctx->coded_frame;
108 *(AVFrame*)data = *avctx->coded_frame;
115 AVFrame *pic = avctx->coded_frame;
118 av_freep(&avctx->coded_frame);
H A Dfrwu.c35 avctx->coded_frame = avcodec_alloc_frame();
44 AVFrame *pic = avctx->coded_frame;
104 AVFrame *pic = avctx->coded_frame;
107 av_freep(&avctx->coded_frame);
H A Dv210enc.c43 avctx->coded_frame = avcodec_alloc_frame();
45 avctx->coded_frame->key_frame = 1;
46 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
115 av_freep(&avctx->coded_frame);
H A Dv210x.c33 avctx->coded_frame= avcodec_alloc_frame();
42 AVFrame *pic= avctx->coded_frame;
120 *(AVFrame*)data= *avctx->coded_frame;
127 AVFrame *pic = avctx->coded_frame;
130 av_freep(&avctx->coded_frame);

Completed in 141 milliseconds

12345678