12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #include "internal.h"
- #include "libavutil/mem.h"
- #include "libavutil/opt.h"
- #include "libavformat/avformat.h"
- #include "libavformat/demux.h"
- int ff_alloc_input_device_context(AVFormatContext **avctx, const AVInputFormat *iformat, const char *format)
- {
- AVFormatContext *s;
- int ret = 0;
- *avctx = NULL;
- if (!iformat && !format)
- return AVERROR(EINVAL);
- if (!(s = avformat_alloc_context()))
- return AVERROR(ENOMEM);
- if (!iformat)
- iformat = av_find_input_format(format);
- if (!iformat || !iformat->priv_class || !AV_IS_INPUT_DEVICE(iformat->priv_class->category)) {
- ret = AVERROR(EINVAL);
- goto error;
- }
- s->iformat = iformat;
- if (ffifmt(s->iformat)->priv_data_size > 0) {
- s->priv_data = av_mallocz(ffifmt(s->iformat)->priv_data_size);
- if (!s->priv_data) {
- ret = AVERROR(ENOMEM);
- goto error;
- }
- if (s->iformat->priv_class) {
- *(const AVClass**)s->priv_data= s->iformat->priv_class;
- av_opt_set_defaults(s->priv_data);
- }
- } else
- s->priv_data = NULL;
- *avctx = s;
- return 0;
- error:
- avformat_free_context(s);
- return ret;
- }
|