Searched refs:oformat (Results 1 - 25 of 65) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tools/
H A Denum_options.c92 AVOutputFormat *oformat = NULL; local
104 while ((oformat = av_oformat_next(oformat))) {
105 if (!oformat->priv_class)
107 printf("@subsection %s AVOptions\n", oformat->priv_class->class_name);
108 show_opts(oformat->priv_class);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Davdevice.c126 if (!s->oformat || !s->oformat->control_message)
128 return s->oformat->control_message(s, type, data, data_size);
144 av_assert0(s->iformat || s->oformat);
145 if ((s->oformat && !s->oformat->create_device_capabilities) ||
158 if ((ret = s->oformat->create_device_capabilities(s, *caps)) < 0)
172 av_assert0(s->iformat || s->oformat);
177 if (s->oformat->free_device_capabilities)
178 s->oformat
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dsegment.c62 if (!oc->priv_data && oc->oformat->priv_data_size > 0) {
63 oc->priv_data = av_mallocz(oc->oformat->priv_data_size);
68 if (oc->oformat->priv_class) {
69 *(const AVClass**)oc->priv_data = oc->oformat->priv_class;
74 if ((err = oc->oformat->write_header(oc)) < 0) {
91 if (oc->oformat->write_trailer)
92 ret = oc->oformat->write_trailer(oc);
95 if (oc->oformat->priv_class)
133 oc->oformat = av_guess_format(seg->format, s->filename, NULL);
135 if (!oc->oformat) {
[all...]
H A Doptions.c33 else if(fc->oformat) return fc->oformat->name;
42 s->oformat && s->oformat->priv_class))
H A Drtpenc_chain.c45 rtpctx->oformat = rtp_format;
H A Doutput-example.c85 if(oc->oformat->flags & AVFMT_GLOBALHEADER)
237 if(oc->oformat->flags & AVFMT_GLOBALHEADER)
284 if (!(oc->oformat->flags & AVFMT_RAWPICTURE)) {
374 if (oc->oformat->flags & AVFMT_RAWPICTURE) {
471 oc->oformat = fmt;
H A Drtp.c96 AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
H A Dutils.c2877 if (s->oformat->priv_data_size > 0) {
2878 s->priv_data = av_mallocz(s->oformat->priv_data_size);
2881 if (s->oformat->priv_class) {
2882 *(const AVClass**)s->priv_data= s->oformat->priv_class;
2888 if (s->oformat->set_parameters) {
2889 ret = s->oformat->set_parameters(s, ap);
2910 for (n = 0; s->oformat->codec_tag[n]; n++) {
2911 avctag = s->oformat->codec_tag[n];
2949 if (s->nb_streams == 0 && !(s->oformat->flags & AVFMT_NOSTREAMS)) {
2975 if((st->codec->width<=0 || st->codec->height<=0) && !(s->oformat
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Doptions.c36 else if(fc->oformat) return fc->oformat->name;
45 s->oformat && s->oformat->priv_class))
H A Dmux.c121 int avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputFormat *oformat, argument
131 if (!oformat) {
133 oformat = av_guess_format(format, NULL, NULL);
134 if (!oformat) {
140 oformat = av_guess_format(NULL, filename, NULL);
141 if (!oformat) {
150 s->oformat = oformat;
151 if (s->oformat->priv_data_size > 0) {
152 s->priv_data = av_mallocz(s->oformat
175 avformat_alloc_output_context(const char *format, AVOutputFormat *oformat, const char *filename) argument
[all...]
H A Drtp.c94 AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
107 if (codec->codec_id == AV_CODEC_ID_H263 && (!fmt || !fmt->oformat ||
108 !fmt->oformat->priv_class || !fmt->priv_data ||
H A Dhlsenc.c45 AVOutputFormat *oformat; member in struct:HLSContext
73 oc->oformat = hls->oformat;
187 if (oc->oformat->priv_class && oc->priv_data)
214 hls->oformat = av_guess_format("mpegts", NULL, NULL);
216 if (!hls->oformat) {
H A Drtpenc_chain.c50 rtpctx->oformat = rtp_format;
H A Dsegment.c72 AVOutputFormat *oformat; member in struct:__anon3629
141 oc->oformat = seg->oformat;
154 if (!oc->oformat->codec_tag ||
155 av_codec_get_id (oc->oformat->codec_tag, icodec->codec_tag) == ocodec->codec_id ||
156 av_codec_get_tag(oc->oformat->codec_tag, icodec->codec_id) <= 0) {
223 if (oc->oformat->priv_class && oc->priv_data)
615 seg->oformat = av_guess_format(seg->format, s->filename, NULL);
617 if (!seg->oformat) {
621 if (seg->oformat
[all...]
H A Dsdp.c405 if (fmt && fmt->oformat && fmt->oformat->priv_class &&
423 if (!fmt || !fmt->oformat->priv_class ||
441 if (fmt && fmt->oformat && fmt->oformat->priv_class &&
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/boot/romimage/
H A DMakefile15 LDFLAGS_vmlinux := --oformat $(ld-bfd) -Ttext $(load-y) -e romstart \
27 LDFLAGS_piggy.o := -r --format binary --oformat $(ld-bfd) -T
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/boot/compressed/
H A DMakefile19 LDFLAGS_piggy.o := -r --format binary --oformat elf32-am33lin -T
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/score/
H A DMakefile25 LDFLAGS += --oformat elf32-littlescore
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/boot/compressed/
H A DMakefile39 LDFLAGS_piggy.o := -r --format binary --oformat elf32-m32r-linux -T
41 LDFLAGS_piggy.o := -r --format binary --oformat elf32-m32r -T
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/boot/compressed/
H A DMakefile22 LDFLAGS_vmlinux := --oformat $(LD_BFD) -e startup -T
61 LDFLAGS_piggy.o := -r --format binary --oformat $(LD_BFD) -T
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/boot/compressed/
H A DMakefile35 LDFLAGS_vmlinux := --oformat $(ld-bfd) -Ttext $(IMAGE_OFFSET) -e startup \
58 LDFLAGS_piggy.o := -r --format binary --oformat $(ld-bfd) -T
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/h8300/boot/compressed/
H A DMakefile33 LDFLAGS_piggy.o := -r --format binary --oformat elf32-h8300 -T
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dremuxing.c86 ofmt = ofmt_ctx->oformat;
103 if (ofmt_ctx->oformat->flags & AVFMT_GLOBALHEADER)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wan/
H A DMakefile61 $(LD68K) --oformat binary -Ttext 0x1000 $(obj)/wanxlfw.o -o $(obj)/wanxlfw.bin; \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffmpeg.c461 if (s && s->oformat && !(s->oformat->flags & AVFMT_NOFILE) && s->pb)
639 if (!(s->oformat->flags & AVFMT_NOTIMESTAMPS)) {
644 int64_t max = ost->last_mux_dts + !(s->oformat->flags & AVFMT_TS_NONSTRICT);
879 if(!strcmp(s->oformat->name, "avi")) {
882 format_video_sync = (s->oformat->flags & AVFMT_VARIABLE_FPS) ? ((s->oformat->flags & AVFMT_NOTIMESTAMPS) ? VSYNC_PASSTHROUGH : VSYNC_VFR) : VSYNC_CFR;
954 if (s->oformat->flags & AVFMT_RAWPICTURE &&
1517 if (enc->codec_type == AVMEDIA_TYPE_VIDEO && (os->oformat->flags & AVFMT_RAWPICTURE) && enc->codec->id == AV_CODEC_ID_RAWVIDEO)
1686 if (ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (of->ctx->oformat
[all...]

Completed in 379 milliseconds

123