Lines Matching defs:opt
39 #include <libavutil/opt.h>
251 AVDictionary *opt = NULL;
256 av_dict_copy(&opt, opt_arg, 0);
257 ret = avcodec_open2(c, codec, &opt);
258 av_dict_free(&opt);
414 AVDictionary *opt = NULL;
416 av_dict_copy(&opt, opt_arg, 0);
419 ret = avcodec_open2(c, codec, &opt);
420 av_dict_free(&opt);
549 AVDictionary *opt = NULL;
566 av_dict_set(&opt, argv[i]+1, argv[i+1], 0);
596 open_video(oc, video_codec, &video_st, opt);
599 open_audio(oc, audio_codec, &audio_st, opt);
614 ret = avformat_write_header(oc, &opt);