Searched refs:frame_size (Results 26 - 50 of 384) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dtranscode_aac.c346 * The number of audio samples to be allocated is specified in frame_size.
350 int frame_size)
371 frame_size,
386 * by frame_size.
389 uint8_t **converted_data, const int frame_size,
396 converted_data, frame_size,
397 input_data , frame_size)) < 0) {
409 const int frame_size)
417 if ((error = av_audio_fifo_realloc(fifo, av_audio_fifo_size(fifo) + frame_size)) < 0) {
424 frame_size) < frame_siz
348 init_converted_samples(uint8_t ***converted_input_samples, AVCodecContext *output_codec_context, int frame_size) argument
388 convert_samples(const uint8_t **input_data, uint8_t **converted_data, const int frame_size, SwrContext *resample_context) argument
407 add_samples_to_fifo(AVAudioFifo *fifo, uint8_t **converted_input_samples, const int frame_size) argument
502 init_output_frame(AVFrame **frame, AVCodecContext *output_codec_context, int frame_size) argument
593 const int frame_size = FFMIN(av_audio_fifo_size(fifo), local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibcelt_dec.c64 if (!c->channels || !c->frame_size ||
65 c->frame_size > INT_MAX / sizeof(int16_t) / c->channels)
67 celt->mode = celt_mode_create(c->sample_rate, c->frame_size, &err);
77 if (celt->discard < 0 || celt->discard >= c->frame_size) {
113 frame->nb_samples = c->frame_size;
117 err = celt_decode(celt->dec, pkt->data, pkt->size, pcm, c->frame_size);
H A Daac_ac3_parser.h42 int frame_size; member in struct:AACAC3ParseContext
H A Ddnxhddata.h33 unsigned int frame_size; member in struct:CIDEntry
H A Dcngdec.c61 avctx->frame_size = 640;
65 p->filter_out = av_mallocz_array(avctx->frame_size + p->order,
67 p->excitation = av_mallocz_array(avctx->frame_size, sizeof(*p->excitation));
137 for (i = 0; i < avctx->frame_size; i++) {
142 p->excitation, avctx->frame_size, p->order);
144 frame->nb_samples = avctx->frame_size;
148 for (i = 0; i < avctx->frame_size; i++)
150 memcpy(p->filter_out, p->filter_out + avctx->frame_size,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dlmlm4.c84 unsigned int frame_type, packet_size, padding, frame_size; local
90 frame_size = packet_size - 8;
101 if ((ret = av_get_packet(pb, pkt, frame_size)) <= 0)
H A Dvc1test.c90 int frame_size; local
97 frame_size = avio_rl24(pb);
101 if(av_get_packet(pb, pkt, frame_size) < 0)
H A Dact.c89 st->codec->frame_size=80;
100 st->duration = av_rescale(1000*(min*60+sec)+msec, st->codec->sample_rate, 1000 * st->codec->frame_size);
116 int frame_size=s->streams[0]->codec->sample_rate==8000?10:22; local
129 ret = avio_read(pb, ctx->audio_buffer, frame_size);
133 if(ret!=frame_size)
168 ret = avio_read(pb, ctx->audio_buffer, frame_size);
172 if(ret!=frame_size)
187 ctx->bytes_left_in_chunk -= frame_size;
189 if(ctx->bytes_left_in_chunk < frame_size)
H A Dimg2.h53 int frame_size; member in struct:__anon3510
H A Dyop.c34 int frame_size; member in struct:yop_dec_context
91 yop->frame_size = avio_r8(pb) * 2048;
104 video_dec->bit_rate = 8 * (yop->frame_size - yop->audio_block_length) * frame_rate;
108 yop->audio_block_length + yop->palette_size >= yop->frame_size) {
126 int actual_video_data_size = yop->frame_size -
147 yop->frame_size - yop->audio_block_length);
203 pos_max = avio_size(s->pb) - yop->frame_size;
204 frame_count = (pos_max - pos_min) / yop->frame_size;
208 frame_pos = timestamp * yop->frame_size + pos_min;
H A Dg723_1.c32 static const uint8_t frame_size[4] = { 24, 20, 4, 1 }; variable
60 size = frame_size[byte & 3];
H A Dpsxstr.c100 int frame_size = AV_RL32(&sector[0x24]); local
102 if(!( frame_size>=0
104 && sector_count*VIDEO_DATA_CHUNK_SIZE >=frame_size)){
190 int frame_size = AV_RL32(&sector[0x24]); local
192 if(!( frame_size>=0
194 && sector_count*VIDEO_DATA_CHUNK_SIZE >=frame_size)){
195 av_log(s, AV_LOG_ERROR, "Invalid parameters %d %d %d\n", current_sector, sector_count, frame_size);
236 pkt->size= frame_size;
H A Dtta.c33 int frame_size; member in struct:__anon3644
90 c->frame_size = samplerate * 256 / 245;
91 c->last_frame_size = nb_samples % c->frame_size;
93 c->last_frame_size = c->frame_size;
94 c->totalframes = nb_samples / c->frame_size + (c->last_frame_size < c->frame_size);
121 av_add_index_entry(st, framepos, i * c->frame_size, size, 0,
161 c->frame_size;
H A Dxmv.c90 uint32_t frame_size; ///< Number of bytes to put into an audio frame. member in struct:XMVAudioPacket
211 packet->frame_size = 0;
352 packet->frame_size = packet->data_size / xmv->video.frame_count;
353 packet->frame_size -= packet->frame_size % packet->block_align;
443 /* Not the last frame, get at most frame_size bytes. */
444 data_size = FFMIN(audio->frame_size, audio->data_size);
482 uint32_t frame_size, frame_timestamp; local
492 frame_size = (frame_header & 0x1FFFF) * 4 + 4;
495 if ((frame_size
[all...]
H A Drtpdec_amr.c112 int frame_size = frame_sizes[(toc >> 3) & 0x0f]; local
114 if (speech_data + frame_size > buf + len) {
127 memcpy(ptr, speech_data, frame_size);
128 speech_data += frame_size;
129 ptr += frame_size;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dlmlm4.c84 unsigned int frame_type, packet_size, padding, frame_size; local
90 frame_size = packet_size - 8;
101 if ((ret = av_get_packet(pb, pkt, frame_size)) <= 0)
H A Dvc1test.c92 int frame_size; local
99 frame_size = avio_rl24(pb);
103 if(av_get_packet(pb, pkt, frame_size) < 0)
H A Daiffdec.c121 codec->frame_size = 64;
125 codec->frame_size = 6;
129 codec->frame_size = 6;
133 codec->frame_size = 160;
137 codec->frame_size= 160;
154 codec->bit_rate = (codec->frame_size ? codec->sample_rate/codec->frame_size :
276 st->duration = st->codec->frame_size ?
277 st->nb_frames * st->codec->frame_size : st->nb_frames;
H A Dyop.c33 int frame_size; member in struct:yop_dec_context
87 yop->frame_size = avio_r8(pb) * 2048;
102 yop->audio_block_length + yop->palette_size >= yop->frame_size) {
120 int actual_video_data_size = yop->frame_size -
135 yop->frame_size - yop->audio_block_length);
193 pos_max = avio_size(s->pb) - yop->frame_size;
194 frame_count = (pos_max - pos_min) / yop->frame_size;
198 frame_pos = timestamp * yop->frame_size + pos_min;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dalsa-audio.h51 int frame_size; ///< bytes per sample * channels member in struct:AlsaData
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Daac_ac3_parser.h42 int frame_size; member in struct:AACAC3ParseContext
H A Droqaudioenc.c57 avctx->frame_size = ROQ_FIRST_FRAME_SIZE;
128 bytestream_put_le32(&out, avctx->frame_size*avctx->channels);
137 samples = avctx->frame_size;
143 avctx->frame_size = ROQ_FRAME_SIZE;
H A Dac3_parser.c101 hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2;
113 hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
114 if(hdr->frame_size < AC3_HEADER_SIZE)
133 hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate /
176 return hdr.frame_size;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dalsa-audio.h48 int frame_size; ///< preferred size for reads and writes member in struct:__anon2052
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/usb/usx2y/
H A Dusb_stream.h34 unsigned frame_size; member in struct:usb_stream_config
106 unsigned period_frames, unsigned frame_size);

Completed in 287 milliseconds

1234567891011>>