Searched refs:decoder (Results 26 - 50 of 110) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_xmms/
H A Dplugin.c90 static FLAC__bool safe_decoder_init_(const char *filename, FLAC__StreamDecoder *decoder);
91 static void safe_decoder_finish_(FLAC__StreamDecoder *decoder);
92 static void safe_decoder_delete_(FLAC__StreamDecoder *decoder);
94 static FLAC__StreamDecoderReadStatus http_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
95 static FLAC__StreamDecoderWriteStatus write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
96 static void metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
97 static void error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
542 FLAC__bool safe_decoder_init_(const char *filename, FLAC__StreamDecoder *decoder) argument
544 if(decoder == 0)
547 safe_decoder_finish_(decoder);
569 safe_decoder_finish_(FLAC__StreamDecoder *decoder) argument
577 safe_decoder_delete_(FLAC__StreamDecoder *decoder) argument
585 http_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data) argument
593 write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data) argument
653 metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data) argument
678 error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dogg_decoder_aspect.h75 typedef FLAC__OggDecoderAspectReadStatus (*FLAC__OggDecoderAspectReadCallbackProxy)(const void *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
77 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibvpxdec.c23 * VP8 decoder support via libvpx
37 struct vpx_codec_ctx decoder; member in struct:VP8DecoderContext
52 if (vpx_codec_dec_init(&ctx->decoder, iface, &deccfg, 0) != VPX_CODEC_OK) {
53 const char *error = vpx_codec_error(&ctx->decoder);
54 av_log(avctx, AV_LOG_ERROR, "Failed to initialize decoder: %s\n",
72 if (vpx_codec_decode(&ctx->decoder, avpkt->data, avpkt->size, NULL, 0) !=
74 const char *error = vpx_codec_error(&ctx->decoder);
75 const char *detail = vpx_codec_error_detail(&ctx->decoder);
84 if ((img = vpx_codec_get_frame(&ctx->decoder, &iter))) {
110 vpx_codec_destroy(&ctx->decoder);
[all...]
H A Ddxva2.c63 hr = IDirectXVideoDecoder_GetBuffer(ctx->decoder, type,
84 hr = IDirectXVideoDecoder_ReleaseBuffer(ctx->decoder, type);
109 hr = IDirectXVideoDecoder_BeginFrame(ctx->decoder,
160 hr = IDirectXVideoDecoder_Execute(ctx->decoder, &exec);
167 hr = IDirectXVideoDecoder_EndFrame(ctx->decoder, NULL);
H A Dlibilbc.c2 * iLBC decoder/encoder stub
44 iLBC_Dec_Inst_t decoder; member in struct:ILBCDecContext
70 WebRtcIlbcfix_InitDecode(&s->decoder, mode, s->enhance);
89 if (s->decoder.no_of_bytes > buf_size) {
91 buf_size, s->decoder.no_of_bytes);
95 frame->nb_samples = s->decoder.blockl;
99 WebRtcIlbcfix_DecodeImpl((int16_t *) frame->data[0], (const uint16_t *) buf, &s->decoder, 1);
103 return s->decoder.no_of_bytes;
H A Dvdpau.h92 * VDPAU decoder handle
96 VdpDecoder decoder; member in struct:AVVDPAUContext
99 * VDPAU decoder render callback
160 * Get a decoder profile that should be used for initializing a VDPAU decoder.
184 * decoder (vd_) and presentation (vo_) module.
187 * between the FFmpeg decoder and its clients.
H A Dvda_h264.c81 status = VDADecoderDecode(vda_ctx->decoder, 0, coded_frame, NULL);
84 status = VDADecoderFlush(vda_ctx->decoder, flush_flags);
99 if (!vda_ctx->decoder)
115 if (!vda_ctx->decoder)
151 if (!vda_ctx->decoder || !vda->bitstream)
194 /* Each VCL NAL in the bitstream sent to the decoder
250 &vda_ctx->decoder);
268 if (vda_ctx->decoder)
269 status = VDADecoderDestroy(vda_ctx->decoder);
376 status = VDADecoderDecode(vda_ctx->decoder,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddxva2.c54 if (FAILED(IDirectXVideoDecoder_GetBuffer(ctx->decoder, type,
72 if (FAILED(IDirectXVideoDecoder_ReleaseBuffer(ctx->decoder, type))) {
92 if (FAILED(IDirectXVideoDecoder_BeginFrame(ctx->decoder,
139 if (FAILED(IDirectXVideoDecoder_Execute(ctx->decoder, &exec))) {
145 if (FAILED(IDirectXVideoDecoder_EndFrame(ctx->decoder, NULL))) {
H A Dvda_h264.c42 if (!vda_ctx->decoder)
60 if (!vda_ctx->decoder)
85 if (!vda_ctx->decoder || !pic_ctx->bitstream)
H A Dvda.h74 * VDA decoder object.
79 VDADecoder decoder; member in struct:vda_context
130 /** Create the video decoder. */
135 /** Destroy the video decoder. */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/examples/cpp/decode/file/
H A Dmain.cpp1 /* example_cpp_decode_file - Simple FLAC file decoder using libFLAC
33 #include "FLAC++/decoder.h"
89 OurDecoder decoder(fout);
91 if(!decoder) {
92 fprintf(stderr, "ERROR: allocating decoder\n");
97 (void)decoder.set_md5_checking(true);
99 FLAC__StreamDecoderInitStatus init_status = decoder.init(argv[1]);
101 fprintf(stderr, "ERROR: initializing decoder: %s\n", FLAC__StreamDecoderInitStatusString[init_status]);
106 ok = decoder.process_until_end_of_stream();
108 fprintf(stderr, " state: %s\n", decoder
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dsaa717x.c2 * saa717x - Philips SAA717xHL video decoder driver
44 MODULE_DESCRIPTION("Philips SAA717x audio/video decoder driver");
782 struct saa717x_state *decoder)
789 saa717x_write(sd, 0x0594, decoder->audio_input);
791 decoder->audio_input);
794 work_l = (min(65536 - decoder->audio_main_balance, 32768) * decoder->audio_main_volume) / 32768;
795 work_r = (min(decoder->audio_main_balance, (u16)32768) * decoder->audio_main_volume) / 32768;
796 decoder
781 set_audio_regs(struct v4l2_subdev *sd, struct saa717x_state *decoder) argument
928 struct saa717x_state *decoder = to_state(sd); local
1070 struct saa717x_state *decoder = to_state(sd); local
1078 struct saa717x_state *decoder = to_state(sd); local
1091 struct saa717x_state *decoder = to_state(sd); local
1106 struct saa717x_state *decoder = to_state(sd); local
1118 struct saa717x_state *decoder = to_state(sd); local
1152 struct saa717x_state *decoder = to_state(sd); local
1255 struct saa717x_state *decoder; local
[all...]
H A Dpms.c68 int decoder; member in struct:pms
216 switch (dev->decoder) {
233 switch (dev->decoder) {
248 switch (dev->decoder) {
261 switch (dev->decoder) {
273 switch (dev->decoder) {
292 if (dev->decoder == PHILIPS1)
294 else if (dev->decoder == PHILIPS2)
329 switch (dev->decoder) {
347 if (dev->decoder
[all...]
H A Dsaa7191.c2 * saa7191.c - Philips SAA7191 video decoder driver
32 MODULE_DESCRIPTION("Philips SAA7191 video decoder driver");
142 struct saa7191 *decoder = to_saa7191(sd); local
147 decoder->reg[data[0] + i] = data[i + 1];
165 struct saa7191 *decoder = to_saa7191(sd); local
193 decoder->input = input;
200 struct saa7191 *decoder = to_saa7191(sd); local
233 decoder->norm = norm;
267 struct saa7191 *decoder = to_saa7191(sd); local
271 v4l2_std_id old_norm = decoder
603 struct saa7191 *decoder; local
[all...]
H A Dtvp5150.c2 * tvp5150 - Texas Instruments TVP5150A/AM1 video decoder driver
19 MODULE_DESCRIPTION("Texas Instruments TVP5150A video decoder driver");
281 struct tvp5150 *decoder = to_tvp5150(sd); local
285 if ((decoder->output & TVP5150_BLACK_SCREEN) || !decoder->enable)
288 switch (decoder->input) {
304 decoder->input, decoder->output,
314 if (decoder->input == TVP5150_SVIDEO)
607 struct tvp5150 *decoder local
654 struct tvp5150 *decoder = to_tvp5150(sd); local
685 struct tvp5150 *decoder = to_tvp5150(sd); local
717 struct tvp5150 *decoder = to_tvp5150(sd); local
727 struct tvp5150 *decoder = to_tvp5150(sd); local
833 struct tvp5150 *decoder = to_tvp5150(sd); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/fileview/
H A DPrint.cpp318 #define ADD_DECODER_FLAG(decoder, FLAG) decoder.AddFlag(FLAG, #FLAG)
353 CFlagDecoder decoder; local
354 decoder.AddFlag(0x01, "CryptSupported");
355 decoder.AddFlag(0x02, "CryptRequested");
356 decoder.AddFlag(0x04, "CryptRequired");
357 decoder.AddFlag(0x08, "SupportsDirectCallback");
358 out << " (" << decoder.DecodeFlags(enc) << ')';
425 CFlagDecoder decoder; local
426 ADD_DECODER_FLAG(decoder, SRV_UDPFLG_EXT_GETSOURCE
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/cx25821/
H A Dcx25821-medusa-video.c491 int decoder = 0; local
509 decoder = decoder_select;
512 decoder = 0;
543 for (; decoder < decoder_count; decoder++) {
544 /* write scaling values for each decoder */
547 HSCALE_CTRL + (0x200 * decoder), hscale);
550 VSCALE_CTRL + (0x200 * decoder), vscale);
556 static void medusa_set_decoderduration(struct cx25821_dev *dev, int decoder, argument
567 if (decoder < VDEC_
649 medusa_set_brightness(struct cx25821_dev *dev, int brightness, int decoder) argument
677 medusa_set_contrast(struct cx25821_dev *dev, int contrast, int decoder) argument
706 medusa_set_hue(struct cx25821_dev *dev, int hue, int decoder) argument
737 medusa_set_saturation(struct cx25821_dev *dev, int saturation, int decoder) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dimagxpm.cpp96 wxXPMDecoder decoder; local
98 wxImage img = decoder.ReadFile(stream);
218 wxXPMDecoder decoder; local
219 return decoder.CanRead(stream);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A Dreplaygain.c280 static FLAC__StreamDecoderWriteStatus write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data) argument
288 (void)decoder;
309 static void metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data) argument
313 (void)decoder;
332 static void error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) argument
336 (void)decoder, (void)status;
344 FLAC__StreamDecoder *decoder = FLAC__stream_decoder_new(); local
346 if(0 == decoder)
352 FLAC__stream_decoder_set_md5_checking(decoder, false);
353 FLAC__stream_decoder_set_metadata_ignore_all(decoder);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/em28xx/
H A Dem28xx-cards.c279 .decoder = EM28XX_SAA711X,
313 .decoder = EM28XX_SAA711X,
328 .decoder = EM28XX_SAA711X,
348 .decoder = EM28XX_SAA711X,
368 .decoder = EM28XX_SAA711X,
389 .decoder = EM28XX_TVP5150,
408 .decoder = EM28XX_SAA711X,
428 .decoder = EM28XX_SAA711X,
448 .decoder = EM28XX_SAA711X,
468 .decoder
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffmpeg_dxva2.c101 IDirectXVideoDecoder *decoder; member in struct:DXVA2Context
117 IDirectXVideoDecoder *decoder; member in struct:DXVA2SurfaceWrapper
137 if (ctx->decoder) {
138 IDirectXVideoDecoder_Release(ctx->decoder);
139 ctx->decoder = NULL;
152 if (ctx->decoder)
195 IDirectXVideoDecoder_Release(w->decoder);
237 w->decoder = ctx->decoder;
238 IDirectXVideoDecoder_AddRef(w->decoder);
[all...]
H A Dffmpeg_vdpau.c39 VdpDecoder decoder; member in struct:VDPAUContext
70 ctx->decoder_destroy(ctx->decoder);
313 av_log(NULL, loglevel, "No known VDPAU decoder profile for this stream.\n");
317 if (ctx->decoder)
318 ctx->decoder_destroy(ctx->decoder);
322 16, &ctx->decoder);
324 av_log(NULL, loglevel, "Error creating the VDPAU decoder: %s\n",
329 vdpau_ctx->decoder = ctx->decoder;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/test/
H A DMakefile.am25 EXTRA_DIST=seq-decoder.c seq-sender.c midifile.h midifile.c midifile.3
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Ddecode.c1 /* flac - Command-line FLAC encoder/decoder
97 FLAC__StreamDecoder *decoder; member in struct:__anon3770
128 static FLAC__StreamDecoderWriteStatus write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
129 static void metadata_callback(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
130 static void error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
321 d->decoder = 0;
374 decoder_session->decoder = FLAC__stream_decoder_new();
376 if(0 == decoder_session->decoder) {
377 flac__utils_printf(stderr, 1, "%s: ERROR creating the decoder instance\n", decoder_session->inbasefilename);
381 FLAC__stream_decoder_set_md5_checking(decoder_session->decoder, tru
909 write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data) argument
1201 metadata_callback(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data) argument
1302 error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/zoran/
H A Dzoran_device.h91 v4l2_subdev_call(zr->decoder, o, f, ##args)

Completed in 131 milliseconds

12345