Searched refs:audio_st (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmxg.c44 AVStream *video_st, *audio_st; local
55 audio_st = avformat_new_stream(s, NULL);
56 if (!audio_st)
58 audio_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
59 audio_st->codec->codec_id = AV_CODEC_ID_PCM_ALAW;
60 audio_st->codec->channels = 1;
61 audio_st->codec->channel_layout = AV_CH_LAYOUT_MONO;
62 audio_st->codec->sample_rate = 8000;
63 audio_st->codec->bits_per_coded_sample = 8;
64 audio_st
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dmxg.c42 AVStream *video_st, *audio_st; local
53 audio_st = avformat_new_stream(s, NULL);
54 if (!audio_st)
56 audio_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
57 audio_st->codec->codec_id = CODEC_ID_PCM_ALAW;
58 audio_st->codec->channels = 1;
59 audio_st->codec->sample_rate = 8000;
60 audio_st->codec->bits_per_coded_sample = 8;
61 audio_st->codec->block_align = 1;
62 avpriv_set_pts_info(audio_st, 6
[all...]
H A Doutput-example.c435 AVStream *audio_st, *video_st; local
477 audio_st = NULL;
482 audio_st = add_audio_stream(oc, fmt->audio_codec);
498 if (audio_st)
499 open_audio(oc, audio_st);
514 if (audio_st)
515 audio_pts = (double)audio_st->pts.val * audio_st->time_base.num / audio_st->time_base.den;
524 if ((!audio_st || audio_pt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dmuxing.c533 OutputStream video_st = { 0 }, audio_st = { 0 }; local
577 add_stream(&audio_st, oc, &audio_codec, fmt->audio_codec);
588 open_audio(oc, audio_codec, &audio_st);
614 audio_st.next_pts, audio_st.st->codec->time_base) <= 0)) {
617 encode_audio = !write_audio_frame(oc, &audio_st);
631 close_stream(oc, &audio_st);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Davplay.c153 AVStream *audio_st; member in struct:VideoState
749 channels = s->audio_st->codec->channels;
761 delay -= (time_diff * s->audio_st->codec->sample_rate) / 1000000;
932 if (is->audio_st && is->show_audio)
949 usleep(is->audio_st && is->show_audio ? rdftspeed * 1000 : 5000); // FIXME ideally we should wait the correct time but SDLs event passing is so slow it would be silly
962 if (is->audio_st) {
963 bytes_per_sec = is->audio_st->codec->sample_rate *
964 2 * is->audio_st->codec->channels;
1000 if (is->audio_st)
1051 if (((is->av_sync_type == AV_SYNC_AUDIO_MASTER && is->audio_st) ||
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffplay.c203 AVStream *audio_st; member in struct:VideoState
1136 if (is->audio_st && is->show_mode != SHOW_MODE_VIDEO)
1197 if (is->audio_st)
1368 if (!display_disable && is->show_mode != SHOW_MODE_VIDEO && is->audio_st) {
1491 if (is->audio_st)
1498 if (is->audio_st && is->video_st)
1502 else if (is->audio_st)
1507 (is->audio_st && is->video_st) ? "A-V" : (is->video_st ? "M-V" : (is->audio_st ? "M-A" : " ")),
2198 AVCodecContext *dec = is->audio_st
[all...]

Completed in 80 milliseconds