Searched refs:avctx (Results 476 - 500 of 1129) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dqpeg.c32 AVCodecContext *avctx; member in struct:QpegContext
252 static int decode_frame(AVCodecContext *avctx, argument
257 QpegContext * const a = avctx->priv_data;
265 av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
274 if ((ret = ff_get_buffer(avctx, p, AV_GET_BUFFER_FLAG_REF)) < 0)
283 qpeg_decode_intra(a, outdata, p->linesize[0], avctx->width, avctx->height);
285 qpeg_decode_inter(a, outdata, p->linesize[0], avctx->width, avctx->height, delta, ctable, ref->data[0]);
303 static void decode_flush(AVCodecContext *avctx){ argument
315 decode_end(AVCodecContext *avctx) argument
325 decode_init(AVCodecContext *avctx) argument
[all...]
H A Ddnxhddec.c36 AVCodecContext *avctx; member in struct:DNXHDContext
69 static av_cold int dnxhd_decode_init(AVCodecContext *avctx) argument
71 DNXHDContext *ctx = avctx->priv_data;
73 ctx->avctx = avctx;
84 av_log(ctx->avctx, AV_LOG_ERROR, "unsupported cid %d\n", cid);
88 av_log(ctx->avctx, AV_LOG_ERROR, "bit depth mismatches %d %d\n", ff_dnxhd_cid_table[index].bit_depth, ctx->bit_depth);
126 av_log(ctx->avctx, AV_LOG_ERROR, "error in header\n");
133 av_log(ctx->avctx, AV_LOG_DEBUG,
140 av_dlog(ctx->avctx, "widt
426 dnxhd_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) argument
474 dnxhd_decode_close(AVCodecContext *avctx) argument
[all...]
H A Dffv1dec.c168 av_dlog(s->avctx, "count:%d index:%d, mode:%d, x:%d pos:%d\n",
203 if (s->avctx->bits_per_raw_sample <= 8) {
208 decode_line(s, w, sample, plane_index, s->avctx->bits_per_raw_sample);
215 ((uint16_t*)(src + stride*y))[x] = sample[1][x] << (16 - s->avctx->bits_per_raw_sample);
227 int lbd = s->avctx->bits_per_raw_sample <= 8;
228 int bits = s->avctx->bits_per_raw_sample > 0 ? s->avctx->bits_per_raw_sample : 8;
307 av_log(f->avctx, AV_LOG_ERROR, "quant_table_index out of range\n");
336 av_log(f->avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
349 av_log(f->avctx, AV_LOG_ERRO
836 decode_init(AVCodecContext *avctx) argument
855 decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) argument
991 init_thread_copy(AVCodecContext *avctx) argument
[all...]
H A Dproresdec2.c46 static av_cold int decode_init(AVCodecContext *avctx) argument
48 ProresContext *ctx = avctx->priv_data;
51 avctx->bits_per_raw_sample = 10;
53 ff_dsputil_init(&ctx->dsp, avctx);
54 ff_blockdsp_init(&ctx->bdsp, avctx);
55 ff_proresdsp_init(&ctx->prodsp, avctx);
67 const int data_size, AVCodecContext *avctx)
74 av_dlog(avctx, "header size %d\n", hdr_size);
76 av_log(avctx, AV_LOG_ERROR, "error, wrong header size\n");
81 av_dlog(avctx, "
66 decode_frame_header(ProresContext *ctx, const uint8_t *buf, const int data_size, AVCodecContext *avctx) argument
148 decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, const int buf_size) argument
315 decode_ac_coeffs(AVCodecContext *avctx, GetBitContext *gb, int16_t *out, int blocks_per_slice) argument
358 decode_slice_luma(AVCodecContext *avctx, SliceContext *slice, uint16_t *dst, int dst_stride, const uint8_t *buf, unsigned buf_size, const int16_t *qmat) argument
391 decode_slice_chroma(AVCodecContext *avctx, SliceContext *slice, uint16_t *dst, int dst_stride, const uint8_t *buf, unsigned buf_size, const int16_t *qmat, int log2_blocks_per_mb) argument
501 decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int threadnr) argument
600 decode_picture(AVCodecContext *avctx) argument
614 decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) argument
671 decode_close(AVCodecContext *avctx) argument
[all...]
H A Dwnv1.c58 static int decode_frame(AVCodecContext *avctx, argument
62 WNV1Context * const l = avctx->priv_data;
72 av_log(avctx, AV_LOG_ERROR, "Packet size %d is too small\n", buf_size);
78 av_log(avctx, AV_LOG_ERROR, "Cannot allocate temporary buffer\n");
83 if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
98 avpriv_request_sample(avctx,
104 avpriv_request_sample(avctx,
114 for (j = 0; j < avctx->height; j++) {
115 for (i = 0; i < avctx->width / 2; i++) {
133 static av_cold int decode_init(AVCodecContext *avctx) argument
[all...]
H A Dlibschroedinger.c50 static unsigned int get_video_format_idx(AVCodecContext *avctx) argument
59 if (avctx->width == vf->width &&
60 avctx->height == vf->height) {
62 if (avctx->time_base.den == vf->frame_rate_num &&
63 avctx->time_base.num == vf->frame_rate_denom)
140 SchroVideoFormatEnum ff_get_schro_video_format_preset(AVCodecContext *avctx) argument
145 unsigned int idx = get_video_format_idx(avctx);
179 SchroFrame *ff_create_schro_frame(AVCodecContext *avctx, argument
188 y_width = avctx->width;
189 y_height = avctx
[all...]
H A Dra144dec.c32 static av_cold int ra144_decode_init(AVCodecContext * avctx) argument
34 RA144Context *ractx = avctx->priv_data;
36 ractx->avctx = avctx;
42 avctx->channels = 1;
43 avctx->channel_layout = AV_CH_LAYOUT_MONO;
44 avctx->sample_fmt = AV_SAMPLE_FMT_S16;
62 static int ra144_decode_frame(AVCodecContext * avctx, void *data, argument
77 RA144Context *ractx = avctx->priv_data;
81 av_log(avctx, AV_LOG_ERRO
[all...]
H A Dvqavideo.c96 AVCodecContext *avctx; member in struct:VqaContext
121 static av_cold int vqa_decode_init(AVCodecContext *avctx) argument
123 VqaContext *s = avctx->priv_data;
126 s->avctx = avctx;
127 avctx->pix_fmt = AV_PIX_FMT_PAL8;
130 if (s->avctx->extradata_size != VQA_HEADER_SIZE) {
131 av_log(s->avctx, AV_LOG_ERROR, "expected extradata size of %d\n", VQA_HEADER_SIZE);
136 s->vqa_version = s->avctx->extradata[0];
142 avpriv_report_missing_feature(avctx, "VQ
602 vqa_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) argument
627 vqa_decode_end(AVCodecContext *avctx) argument
[all...]
H A Dh264_mp4toannexb_bsf.c63 static int h264_extradata_to_annexb(AVCodecContext *avctx, const int padding) argument
69 const uint8_t *extradata = avctx->extradata + 4;
87 av_log(avctx, AV_LOG_ERROR,
92 if (extradata + 2 + unit_size > avctx->extradata + avctx->extradata_size) {
93 av_log(avctx, AV_LOG_ERROR, "Packet header is not contained in global extradata, "
115 av_log(avctx, AV_LOG_WARNING,
120 av_log(avctx, AV_LOG_WARNING,
124 av_free(avctx->extradata);
125 avctx
131 h264_mp4toannexb_filter(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe) argument
[all...]
H A Dqtrle.c43 AVCodecContext *avctx; member in struct:QtrleContext
52 av_log (s->avctx, AV_LOG_ERROR, "Problem: pixel_ptr = %d, pixel_limit = %d\n",\
64 int pixel_limit = s->frame->linesize[0] * s->avctx->height;
127 int pixel_limit = s->frame->linesize[0] * s->avctx->height;
183 int pixel_limit = s->frame->linesize[0] * s->avctx->height;
232 int pixel_limit = s->frame->linesize[0] * s->avctx->height;
276 int pixel_limit = s->frame->linesize[0] * s->avctx->height;
323 int pixel_limit = s->frame->linesize[0] * s->avctx->height;
360 static av_cold int qtrle_decode_init(AVCodecContext *avctx) argument
362 QtrleContext *s = avctx
405 qtrle_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) argument
508 qtrle_decode_end(AVCodecContext *avctx) argument
[all...]
H A Dasvdec.c110 av_log(a->avctx, AV_LOG_ERROR, "coded coeff pattern damaged\n");
170 if (a->avctx->codec_id == AV_CODEC_ID_ASV1) {
198 if (!(a->avctx->flags&CODEC_FLAG_GRAY)) {
204 static int decode_frame(AVCodecContext *avctx, argument
208 ASV1Context * const a = avctx->priv_data;
214 if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
224 if (avctx->codec_id == AV_CODEC_ID_ASV1)
271 static av_cold int decode_init(AVCodecContext *avctx) argument
273 ASV1Context * const a = avctx->priv_data;
274 const int scale = avctx
305 decode_end(AVCodecContext *avctx) argument
[all...]
H A Droqvideodec.c74 av_log(ri->avctx, AV_LOG_ERROR, "Chunk does not fit in input buffer\n");
82 av_log(ri->avctx, AV_LOG_VERBOSE, "Chunk is too short\n");
117 av_log(ri->avctx, AV_LOG_VERBOSE, "Chunk is too short\n");
169 static av_cold int roq_decode_init(AVCodecContext *avctx) argument
171 RoqContext *s = avctx->priv_data;
173 s->avctx = avctx;
175 if (avctx->width % 16 || avctx->height % 16) {
176 av_log(avctx, AV_LOG_ERRO
198 roq_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) argument
228 roq_decode_end(AVCodecContext *avctx) argument
[all...]
H A Dmss2.c371 static int decode_wmv9(AVCodecContext *avctx, const uint8_t *buf, int buf_size, argument
374 MSS2Context *ctx = avctx->priv_data;
376 VC1Context *v = avctx->priv_data;
381 ff_mpeg_flush(avctx);
386 s->loop_filter = avctx->skip_loop_filter < AVDISCARD_ALL;
389 av_log(v->s.avctx, AV_LOG_ERROR, "header error\n");
394 av_log(v->s.avctx, AV_LOG_ERROR, "expected I-frame\n");
398 avctx->pix_fmt = AV_PIX_FMT_YUV420P;
400 if ((ret = ff_MPV_frame_start(s, avctx)) < 0) {
401 av_log(v->s.avctx, AV_LOG_ERRO
462 mss2_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) argument
739 wmv9_init(AVCodecContext *avctx) argument
798 mss2_decode_end(AVCodecContext *avctx) argument
812 mss2_decode_init(AVCodecContext *avctx) argument
[all...]
H A Dmpeg12dec.c132 av_log(ctx->avctx, AV_LOG_ERROR, "ac-tex damaged at %d %d\n", \
157 av_dlog(s->avctx, "dc=%d diff=%d\n", dc, diff);
569 av_dlog(s->avctx, "dc=%d\n", block[0]);
735 av_dlog(s->avctx, "decode_mb: x=%d y=%d\n", s->mb_x, s->mb_y);
753 av_log(s->avctx, AV_LOG_ERROR, "skip with previntra\n");
771 av_log(s->avctx, AV_LOG_ERROR,
784 av_log(s->avctx, AV_LOG_ERROR,
793 av_log(s->avctx, AV_LOG_ERROR,
800 av_dlog(s->avctx, "mb_type=%x\n", mb_type);
897 av_dlog(s->avctx, "motion_typ
1115 mpeg_decode_init(AVCodecContext *avctx) argument
1146 mpeg_decode_update_thread_context(AVCodecContext *avctx, const AVCodecContext *avctx_from) argument
1213 uses_vdpau(AVCodecContext *avctx) argument
1217 mpeg_get_pixelformat(AVCodecContext *avctx) argument
1233 setup_hwaccel_for_pixfmt(AVCodecContext *avctx) argument
1253 mpeg_decode_postinit(AVCodecContext *avctx) argument
1373 mpeg1_decode_picture(AVCodecContext *avctx, const uint8_t *buf, int buf_size) argument
1613 AVCodecContext *avctx = s->avctx; local
1707 AVCodecContext *avctx = s->avctx; local
2018 slice_end(AVCodecContext *avctx, AVFrame *pict) argument
2066 mpeg1_decode_sequence(AVCodecContext *avctx, const uint8_t *buf, int buf_size) argument
2150 vcr2_init_sequence(AVCodecContext *avctx) argument
2203 mpeg_decode_a53_cc(AVCodecContext *avctx, const uint8_t *p, int buf_size) argument
2256 mpeg_decode_user_data(AVCodecContext *avctx, const uint8_t *p, int buf_size) argument
2323 mpeg_decode_gop(AVCodecContext *avctx, const uint8_t *buf, int buf_size) argument
2350 decode_chunks(AVCodecContext *avctx, AVFrame *picture, int *got_output, const uint8_t *buf, int buf_size) argument
2681 mpeg_decode_frame(AVCodecContext *avctx, void *data, int *got_output, AVPacket *avpkt) argument
2743 flush(AVCodecContext *avctx) argument
2752 mpeg_decode_end(AVCodecContext *avctx) argument
2825 mpeg_mc_decode_init(AVCodecContext *avctx) argument
[all...]
H A Dalsdec.c192 AVCodecContext *avctx; member in struct:__anon3075
253 AVCodecContext *avctx = ctx->avctx; local
256 av_dlog(avctx, "resolution = %i\n", sconf->resolution);
257 av_dlog(avctx, "floating = %i\n", sconf->floating);
258 av_dlog(avctx, "frame_length = %i\n", sconf->frame_length);
259 av_dlog(avctx, "ra_distance = %i\n", sconf->ra_distance);
260 av_dlog(avctx, "ra_flag = %i\n", sconf->ra_flag);
261 av_dlog(avctx, "adapt_order = %i\n", sconf->adapt_order);
262 av_dlog(avctx, "coef_tabl
287 AVCodecContext *avctx = ctx->avctx; local
567 AVCodecContext *avctx = ctx->avctx; local
611 AVCodecContext *avctx = ctx->avctx; local
1326 AVCodecContext *avctx = ctx->avctx; local
1470 decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) argument
1598 decode_end(AVCodecContext *avctx) argument
1633 decode_init(AVCodecContext *avctx) argument
1795 flush(AVCodecContext *avctx) argument
[all...]
H A Dindeo4.c101 * @param[in] avctx pointer to the AVCodecContext
104 static int decode_pic_hdr(IVI45DecContext *ctx, AVCodecContext *avctx) argument
110 av_log(avctx, AV_LOG_ERROR, "Invalid picture start code!\n");
117 av_log(avctx, AV_LOG_ERROR, "Invalid frame type: %d\n", ctx->frame_type);
135 av_log(avctx, AV_LOG_ERROR, "Sync bit is set!\n");
143 av_dlog(avctx, "Null frame encountered!\n");
152 av_dlog(avctx, "Password-protected clip!\n");
178 av_log(avctx, AV_LOG_ERROR, "Only YVU9 picture format is supported!\n");
191 av_log(avctx, AV_LOG_ERROR, "Scalability: unsupported subdivision! Luma bands: %d, chroma bands: %d\n",
199 av_log(avctx, AV_LOG_ERRO
269 decode_band_hdr(IVI45DecContext *ctx, IVIBandDesc *band, AVCodecContext *avctx) argument
466 decode_mb_info(IVI45DecContext *ctx, IVIBandDesc *band, IVITile *tile, AVCodecContext *avctx) argument
662 decode_init(AVCodecContext *avctx) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh263dec.c45 av_cold int ff_h263_decode_init(AVCodecContext *avctx) argument
47 MpegEncContext *s = avctx->priv_data;
49 s->avctx = avctx;
52 s->width = avctx->coded_width;
53 s->height = avctx->coded_height;
54 s->workaround_bugs= avctx->workaround_bugs;
61 avctx->pix_fmt= avctx->get_format(avctx, avct
121 ff_h263_decode_end(AVCodecContext *avctx) argument
338 ff_h263_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) argument
[all...]
H A Dbinkaudio.c74 static av_cold int decode_init(AVCodecContext *avctx) argument
76 BinkAudioContext *s = avctx->priv_data;
77 int sample_rate = avctx->sample_rate;
82 dsputil_init(&s->dsp, avctx);
83 ff_fmt_convert_init(&s->fmt_conv, avctx);
86 if (avctx->sample_rate < 22050) {
88 } else if (avctx->sample_rate < 44100) {
94 if (avctx->channels > MAX_CHANNELS) {
95 av_log(avctx, AV_LOG_ERROR, "too many channels: %d\n", avctx
291 decode_end(AVCodecContext *avctx) argument
310 decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) argument
[all...]
H A Dg722dec.c56 static av_cold int g722_decode_init(AVCodecContext * avctx) argument
58 G722Context *c = avctx->priv_data;
60 if (avctx->channels != 1) {
61 av_log(avctx, AV_LOG_ERROR, "Only mono tracks are allowed.\n");
64 avctx->sample_fmt = AV_SAMPLE_FMT_S16;
71 avctx->coded_frame = &c->frame;
87 static int g722_decode_frame(AVCodecContext *avctx, void *data, argument
90 G722Context *c = avctx->priv_data;
99 if ((ret = avctx->get_buffer(avctx,
[all...]
H A Dsgienc.c34 static av_cold int encode_init(AVCodecContext *avctx) argument
36 SgiContext *s = avctx->priv_data;
39 avctx->coded_frame = &s->picture;
44 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, argument
47 SgiContext *s = avctx->priv_data;
58 width = avctx->width;
59 height = avctx->height;
61 switch (avctx->pix_fmt) {
82 av_log(avctx, AV_LOG_ERROR, "buf_size too small(need %d, got %d)\n", length, buf_size);
88 bytestream_put_byte(&buf, avctx
[all...]
H A Dalsdec.c193 AVCodecContext *avctx; member in struct:__anon1860
254 AVCodecContext *avctx = ctx->avctx; local
257 av_dlog(avctx, "resolution = %i\n", sconf->resolution);
258 av_dlog(avctx, "floating = %i\n", sconf->floating);
259 av_dlog(avctx, "frame_length = %i\n", sconf->frame_length);
260 av_dlog(avctx, "ra_distance = %i\n", sconf->ra_distance);
261 av_dlog(avctx, "ra_flag = %i\n", sconf->ra_flag);
262 av_dlog(avctx, "adapt_order = %i\n", sconf->adapt_order);
263 av_dlog(avctx, "coef_tabl
288 AVCodecContext *avctx = ctx->avctx; local
558 AVCodecContext *avctx = ctx->avctx; local
597 AVCodecContext *avctx = ctx->avctx; local
1300 AVCodecContext *avctx = ctx->avctx; local
1433 decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) argument
1556 decode_end(AVCodecContext *avctx) argument
1591 decode_init(AVCodecContext *avctx) argument
1752 flush(AVCodecContext *avctx) argument
[all...]
H A Daacenc.c142 static void put_audio_specific_config(AVCodecContext *avctx) argument
145 AACEncContext *s = avctx->priv_data;
147 init_put_bits(&pb, avctx->extradata, avctx->extradata_size*8);
150 put_bits(&pb, 4, avctx->channels);
163 static av_cold int aac_encode_init(AVCodecContext *avctx) argument
165 AACEncContext *s = avctx->priv_data;
171 avctx->frame_size = 1024;
174 if (avctx->sample_rate == avpriv_mpeg4audio_sample_rates[i])
177 av_log(avctx, AV_LOG_ERRO
227 apply_window_and_mdct(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, short *audio) argument
388 encode_scale_factors(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce) argument
454 encode_individual_channel(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, int common_window) argument
473 put_bitstream_info(AVCodecContext *avctx, AACEncContext *s, const char *name) argument
491 aac_encode_frame(AVCodecContext *avctx, uint8_t *frame, int buf_size, void *data) argument
656 aac_encode_end(AVCodecContext *avctx) argument
[all...]
H A Dratecontrol.c46 snprintf(s->avctx->stats_out, 256, "in:%d out:%d type:%d q:%d itex:%d ptex:%d mv:%d misc:%d fcode:%d bcode:%d mc-var:%d var:%d icount:%d skipcount:%d hbits:%d;\n",
109 res = av_expr_parse(&rcc->rc_eq_eval, s->avctx->rc_eq ? s->avctx->rc_eq : "tex^qComp", const_names, func1_names, func1, NULL, NULL, 0, s->avctx);
111 av_log(s->avctx, AV_LOG_ERROR, "Error parsing rc_eq \"%s\"\n", s->avctx->rc_eq);
127 rcc->buffer_index= s->avctx->rc_initial_buffer_occupancy;
134 p= s->avctx->stats_in;
154 p= s->avctx->stats_in;
176 av_log(s->avctx, AV_LOG_ERRO
[all...]
H A D4xm.c130 AVCodecContext *avctx; member in struct:FourXContext
326 uint16_t *end= start + stride*(f->avctx->height-h+1) - (1<<log2w);
333 av_log(f->avctx, AV_LOG_ERROR, "mv out of pic\n");
347 av_log(f->avctx, AV_LOG_ERROR, "mv out of pic\n");
354 av_log(f->avctx, AV_LOG_ERROR, "mv out of pic\n");
360 av_log(f->avctx, AV_LOG_ERROR, "mv out of pic\n");
377 const int width= f->avctx->width;
378 const int height= f->avctx->height;
401 av_log(f->avctx, AV_LOG_ERROR, "lengths %d %d %d %d\n", bitstream_size, bytestream_size, wordstream_size,
441 av_log(f->avctx, AV_LOG_ERRO
726 decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) argument
850 common_init(AVCodecContext *avctx) argument
858 decode_init(AVCodecContext *avctx) argument
877 decode_end(AVCodecContext *avctx) argument
[all...]
H A Dalac.c60 AVCodecContext *avctx; member in struct:__anon1857
165 av_log(alac->avctx, AV_LOG_ERROR, "invalid zero block size of %d %d %d\n", block_size, output_size, output_count);
350 static int alac_decode_frame(AVCodecContext *avctx, void *data, argument
355 ALACContext *alac = avctx->priv_data;
369 if (channels != avctx->channels) {
370 av_log(avctx, AV_LOG_ERROR, "frame header channel count mismatch\n");
393 av_log(avctx, AV_LOG_ERROR, "outputsamples %d > %d\n", outputsamples, alac->setinfo_max_samples_per_frame);
401 av_log(avctx, AV_LOG_ERROR, "unsupported block size: %u\n", outputsamples);
405 if ((ret = avctx->get_buffer(avctx,
537 alac_decode_close(AVCodecContext *avctx) argument
601 alac_decode_init(AVCodecContext * avctx) argument
[all...]

Completed in 353 milliseconds

<<11121314151617181920>>