NULL               80 compat/getopt.c         optarg = NULL;
NULL               87 compat/os2threads.h     thread->result = NULL;
NULL               89 compat/os2threads.h     thread->tid = _beginthread(thread_entry, NULL, 1024 * 1024, thread);
NULL              136 compat/os2threads.h     DosCreateEventSem(NULL, &cond->event_sem, DCE_POSTONE, FALSE);
NULL              137 compat/os2threads.h     DosCreateEventSem(NULL, &cond->ack_sem, DCE_POSTONE, FALSE);
NULL               40 compat/w32dlfcn.h         HMODULE module = NULL;
NULL               41 compat/w32dlfcn.h         wchar_t *path = NULL, *name_w = NULL;
NULL               47 compat/w32dlfcn.h         pathlen = GetModuleFileNameW(NULL, path, MAX_PATH);
NULL               53 compat/w32dlfcn.h         module = LoadLibraryExW(path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
NULL               54 compat/w32dlfcn.h         if (module == NULL) {
NULL               61 compat/w32dlfcn.h             module = LoadLibraryExW(path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
NULL               76 compat/w32dlfcn.h     wchar_t *name_w = NULL;
NULL               79 compat/w32dlfcn.h         return NULL;
NULL               84 compat/w32dlfcn.h     return LoadLibraryExA(name, NULL, LOAD_LIBRARY_SEARCH_APPLICATION_DIR | LOAD_LIBRARY_SEARCH_SYSTEM32);
NULL               82 compat/w32pthreads.h     thread->handle = (void*)CreateThread(NULL, 0, win32thread_worker, thread,
NULL               83 compat/w32pthreads.h                                            0, NULL);
NULL               85 compat/w32pthreads.h     thread->handle = (void*)_beginthreadex(NULL, 0, win32thread_worker, thread,
NULL               86 compat/w32pthreads.h                                            0, NULL);
NULL              133 compat/w32pthreads.h     InitOnceBeginInitialize(once_control, 0, &pending, NULL);
NULL              136 compat/w32pthreads.h     InitOnceComplete(once_control, 0, NULL);
NULL               59 doc/examples/avio_list_dir.c     AVIODirEntry *entry = NULL;
NULL               60 doc/examples/avio_list_dir.c     AVIODirContext *ctx = NULL;
NULL               64 doc/examples/avio_list_dir.c     if ((ret = avio_open_dir(&ctx, input_dir, NULL)) < 0) {
NULL               65 doc/examples/avio_list_dir.c         av_log(NULL, AV_LOG_ERROR, "Cannot open directory: %s.\n", av_err2str(ret));
NULL               72 doc/examples/avio_list_dir.c             av_log(NULL, AV_LOG_ERROR, "Cannot list directory: %s.\n", av_err2str(ret));
NULL               84 doc/examples/avio_list_dir.c             av_log(NULL, AV_LOG_INFO, "%-9s %12s %30s %10s %s %16s %16s %16s\n",
NULL               87 doc/examples/avio_list_dir.c         av_log(NULL, AV_LOG_INFO, "%-9s %12"PRId64" %30s %10s %s %16"PRId64" %16"PRId64" %16"PRId64"\n",
NULL               61 doc/examples/avio_reading.c     AVFormatContext *fmt_ctx = NULL;
NULL               62 doc/examples/avio_reading.c     AVIOContext *avio_ctx = NULL;
NULL               63 doc/examples/avio_reading.c     uint8_t *buffer = NULL, *avio_ctx_buffer = NULL;
NULL               65 doc/examples/avio_reading.c     char *input_filename = NULL;
NULL               78 doc/examples/avio_reading.c     ret = av_file_map(input_filename, &buffer, &buffer_size, 0, NULL);
NULL               97 doc/examples/avio_reading.c                                   0, &bd, &read_packet, NULL, NULL);
NULL              104 doc/examples/avio_reading.c     ret = avformat_open_input(&fmt_ctx, NULL, NULL, NULL);
NULL              110 doc/examples/avio_reading.c     ret = avformat_find_stream_info(fmt_ctx, NULL);
NULL               55 doc/examples/decode_audio.c     *fmt = NULL;
NULL              109 doc/examples/decode_audio.c     AVCodecContext *c= NULL;
NULL              110 doc/examples/decode_audio.c     AVCodecParserContext *parser = NULL;
NULL              117 doc/examples/decode_audio.c     AVFrame *decoded_frame = NULL;
NULL              151 doc/examples/decode_audio.c     if (avcodec_open2(c, codec, NULL) < 0) {
NULL              203 doc/examples/decode_audio.c     pkt->data = NULL;
NULL               88 doc/examples/decode_video.c     AVCodecContext *c= NULL;
NULL              136 doc/examples/decode_video.c     if (avcodec_open2(c, codec, NULL) < 0) {
NULL              177 doc/examples/decode_video.c     decode(c, frame, NULL, outfilename);
NULL               37 doc/examples/demuxing_decoding.c static AVFormatContext *fmt_ctx = NULL;
NULL               38 doc/examples/demuxing_decoding.c static AVCodecContext *video_dec_ctx = NULL, *audio_dec_ctx;
NULL               41 doc/examples/demuxing_decoding.c static AVStream *video_stream = NULL, *audio_stream = NULL;
NULL               42 doc/examples/demuxing_decoding.c static const char *src_filename = NULL;
NULL               43 doc/examples/demuxing_decoding.c static const char *video_dst_filename = NULL;
NULL               44 doc/examples/demuxing_decoding.c static const char *audio_dst_filename = NULL;
NULL               45 doc/examples/demuxing_decoding.c static FILE *video_dst_file = NULL;
NULL               46 doc/examples/demuxing_decoding.c static FILE *audio_dst_file = NULL;
NULL               48 doc/examples/demuxing_decoding.c static uint8_t *video_dst_data[4] = {NULL};
NULL               53 doc/examples/demuxing_decoding.c static AVFrame *frame = NULL;
NULL              152 doc/examples/demuxing_decoding.c     AVCodec *dec = NULL;
NULL              153 doc/examples/demuxing_decoding.c     AVDictionary *opts = NULL;
NULL              155 doc/examples/demuxing_decoding.c     ret = av_find_best_stream(fmt_ctx, type, -1, -1, NULL, 0);
NULL              212 doc/examples/demuxing_decoding.c     *fmt = NULL;
NULL              246 doc/examples/demuxing_decoding.c     if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
NULL              252 doc/examples/demuxing_decoding.c     if (avformat_find_stream_info(fmt_ctx, NULL) < 0) {
NULL              308 doc/examples/demuxing_decoding.c     pkt.data = NULL;
NULL              331 doc/examples/demuxing_decoding.c         decode_packet(video_dec_ctx, NULL);
NULL              333 doc/examples/demuxing_decoding.c         decode_packet(audio_dec_ctx, NULL);
NULL              127 doc/examples/encode_audio.c     AVCodecContext *c= NULL;
NULL              171 doc/examples/encode_audio.c     if (avcodec_open2(c, codec, NULL) < 0) {
NULL              229 doc/examples/encode_audio.c     encode(c, NULL, pkt, f);
NULL               73 doc/examples/encode_video.c     AVCodecContext *c= NULL;
NULL              127 doc/examples/encode_video.c     ret = avcodec_open2(c, codec, NULL);
NULL              186 doc/examples/encode_video.c     encode(c, NULL, pkt, f);
NULL               27 doc/examples/extract_mvs.c static AVFormatContext *fmt_ctx = NULL;
NULL               28 doc/examples/extract_mvs.c static AVCodecContext *video_dec_ctx = NULL;
NULL               29 doc/examples/extract_mvs.c static AVStream *video_stream = NULL;
NULL               30 doc/examples/extract_mvs.c static const char *src_filename = NULL;
NULL               33 doc/examples/extract_mvs.c static AVFrame *frame = NULL;
NULL               80 doc/examples/extract_mvs.c     AVCodecContext *dec_ctx = NULL;
NULL               81 doc/examples/extract_mvs.c     AVCodec *dec = NULL;
NULL               82 doc/examples/extract_mvs.c     AVDictionary *opts = NULL;
NULL              132 doc/examples/extract_mvs.c     if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
NULL              137 doc/examples/extract_mvs.c     if (avformat_find_stream_info(fmt_ctx, NULL) < 0) {
NULL              171 doc/examples/extract_mvs.c     decode_packet(NULL);
NULL               75 doc/examples/filter_audio.c     AVDictionary *options_dict = NULL;
NULL              111 doc/examples/filter_audio.c     err = avfilter_init_str(abuffer_ctx, NULL);
NULL              162 doc/examples/filter_audio.c         av_log(NULL, AV_LOG_ERROR, "Could not initialize the aformat filter.\n");
NULL              181 doc/examples/filter_audio.c     err = avfilter_init_str(abuffersink_ctx, NULL);
NULL              200 doc/examples/filter_audio.c     err = avfilter_graph_config(filter_graph, NULL);
NULL              202 doc/examples/filter_audio.c         av_log(NULL, AV_LOG_ERROR, "Error configuring the filter graph\n");
NULL               54 doc/examples/filtering_audio.c     if ((ret = avformat_open_input(&fmt_ctx, filename, NULL, NULL)) < 0) {
NULL               55 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot open input file\n");
NULL               59 doc/examples/filtering_audio.c     if ((ret = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
NULL               60 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
NULL               67 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot find an audio stream in the input file\n");
NULL               79 doc/examples/filtering_audio.c     if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {
NULL               80 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot open audio decoder\n");
NULL              115 doc/examples/filtering_audio.c                                        args, NULL, filter_graph);
NULL              117 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer source\n");
NULL              123 doc/examples/filtering_audio.c                                        NULL, NULL, filter_graph);
NULL              125 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer sink\n");
NULL              132 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot set output sample format\n");
NULL              139 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot set output channel layout\n");
NULL              146 doc/examples/filtering_audio.c         av_log(NULL, AV_LOG_ERROR, "Cannot set output sample rate\n");
NULL              164 doc/examples/filtering_audio.c     outputs->next       = NULL;
NULL              175 doc/examples/filtering_audio.c     inputs->next       = NULL;
NULL              178 doc/examples/filtering_audio.c                                         &inputs, &outputs, NULL)) < 0)
NULL              181 doc/examples/filtering_audio.c     if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0)
NULL              188 doc/examples/filtering_audio.c     av_log(NULL, AV_LOG_INFO, "Output: srate:%dHz fmt:%s chlayout:%s\n",
NULL              243 doc/examples/filtering_audio.c                 av_log(NULL, AV_LOG_ERROR, "Error while sending a packet to the decoder\n");
NULL              252 doc/examples/filtering_audio.c                     av_log(NULL, AV_LOG_ERROR, "Error while receiving a frame from the decoder\n");
NULL              259 doc/examples/filtering_audio.c                         av_log(NULL, AV_LOG_ERROR, "Error while feeding the audio filtergraph\n");
NULL               59 doc/examples/filtering_video.c     if ((ret = avformat_open_input(&fmt_ctx, filename, NULL, NULL)) < 0) {
NULL               60 doc/examples/filtering_video.c         av_log(NULL, AV_LOG_ERROR, "Cannot open input file\n");
NULL               64 doc/examples/filtering_video.c     if ((ret = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
NULL               65 doc/examples/filtering_video.c         av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
NULL               72 doc/examples/filtering_video.c         av_log(NULL, AV_LOG_ERROR, "Cannot find a video stream in the input file\n");
NULL               84 doc/examples/filtering_video.c     if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {
NULL               85 doc/examples/filtering_video.c         av_log(NULL, AV_LOG_ERROR, "Cannot open video decoder\n");
NULL              117 doc/examples/filtering_video.c                                        args, NULL, filter_graph);
NULL              119 doc/examples/filtering_video.c         av_log(NULL, AV_LOG_ERROR, "Cannot create buffer source\n");
NULL              125 doc/examples/filtering_video.c                                        NULL, NULL, filter_graph);
NULL              127 doc/examples/filtering_video.c         av_log(NULL, AV_LOG_ERROR, "Cannot create buffer sink\n");
NULL              134 doc/examples/filtering_video.c         av_log(NULL, AV_LOG_ERROR, "Cannot set output pixel format\n");
NULL              152 doc/examples/filtering_video.c     outputs->next       = NULL;
NULL              163 doc/examples/filtering_video.c     inputs->next       = NULL;
NULL              166 doc/examples/filtering_video.c                                     &inputs, &outputs, NULL)) < 0)
NULL              169 doc/examples/filtering_video.c     if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0)
NULL              242 doc/examples/filtering_video.c                 av_log(NULL, AV_LOG_ERROR, "Error while sending a packet to the decoder\n");
NULL              251 doc/examples/filtering_video.c                     av_log(NULL, AV_LOG_ERROR, "Error while receiving a frame from the decoder\n");
NULL              259 doc/examples/filtering_video.c                     av_log(NULL, AV_LOG_ERROR, "Error while feeding the filtergraph\n");
NULL               38 doc/examples/http_multiclient.c     AVIOContext *input = NULL;
NULL               41 doc/examples/http_multiclient.c     uint8_t *resource = NULL;
NULL               73 doc/examples/http_multiclient.c     if ((ret = avio_open2(&input, in_uri, AVIO_FLAG_READ, NULL, NULL)) < 0) {
NULL              102 doc/examples/http_multiclient.c     AVDictionary *options = NULL;
NULL              103 doc/examples/http_multiclient.c     AVIOContext *client = NULL, *server = NULL;
NULL              123 doc/examples/http_multiclient.c     if ((ret = avio_open2(&server, out_uri, AVIO_FLAG_WRITE, NULL, &options)) < 0) {
NULL               45 doc/examples/hw_decode.c static AVBufferRef *hw_device_ctx = NULL;
NULL               47 doc/examples/hw_decode.c static FILE *output_file = NULL;
NULL               54 doc/examples/hw_decode.c                                       NULL, NULL, 0)) < 0) {
NULL               79 doc/examples/hw_decode.c     AVFrame *frame = NULL, *sw_frame = NULL;
NULL               80 doc/examples/hw_decode.c     AVFrame *tmp_frame = NULL;
NULL               81 doc/examples/hw_decode.c     uint8_t *buffer = NULL;
NULL              151 doc/examples/hw_decode.c     AVFormatContext *input_ctx = NULL;
NULL              153 doc/examples/hw_decode.c     AVStream *video = NULL;
NULL              154 doc/examples/hw_decode.c     AVCodecContext *decoder_ctx = NULL;
NULL              155 doc/examples/hw_decode.c     AVCodec *decoder = NULL;
NULL              176 doc/examples/hw_decode.c     if (avformat_open_input(&input_ctx, argv[2], NULL, NULL) != 0) {
NULL              181 doc/examples/hw_decode.c     if (avformat_find_stream_info(input_ctx, NULL) < 0) {
NULL              220 doc/examples/hw_decode.c     if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) < 0) {
NULL              240 doc/examples/hw_decode.c     packet.data = NULL;
NULL               36 doc/examples/metadata.c     AVFormatContext *fmt_ctx = NULL;
NULL               37 doc/examples/metadata.c     AVDictionaryEntry *tag = NULL;
NULL               47 doc/examples/metadata.c     if ((ret = avformat_open_input(&fmt_ctx, argv[1], NULL, NULL)))
NULL               50 doc/examples/metadata.c     if ((ret = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
NULL               51 doc/examples/metadata.c         av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
NULL              138 doc/examples/muxing.c     ost->st = avformat_new_stream(oc, NULL);
NULL              250 doc/examples/muxing.c     AVDictionary *opt = NULL;
NULL              319 doc/examples/muxing.c         return NULL;
NULL              392 doc/examples/muxing.c         return NULL;
NULL              412 doc/examples/muxing.c     AVDictionary *opt = NULL;
NULL              434 doc/examples/muxing.c     ost->tmp_frame = NULL;
NULL              480 doc/examples/muxing.c         return NULL;
NULL              495 doc/examples/muxing.c                                           SCALE_FLAGS, NULL, NULL, NULL);
NULL              547 doc/examples/muxing.c     AVDictionary *opt = NULL;
NULL              568 doc/examples/muxing.c     avformat_alloc_output_context2(&oc, NULL, NULL, filename);
NULL              571 doc/examples/muxing.c         avformat_alloc_output_context2(&oc, NULL, "mpeg", filename);
NULL              139 doc/examples/qsvdec.c     AVFormatContext *input_ctx = NULL;
NULL              140 doc/examples/qsvdec.c     AVStream *video_st = NULL;
NULL              141 doc/examples/qsvdec.c     AVCodecContext *decoder_ctx = NULL;
NULL              145 doc/examples/qsvdec.c     AVFrame *frame = NULL, *sw_frame = NULL;
NULL              147 doc/examples/qsvdec.c     DecodeContext decode = { NULL };
NULL              149 doc/examples/qsvdec.c     AVIOContext *output_ctx = NULL;
NULL              159 doc/examples/qsvdec.c     ret = avformat_open_input(&input_ctx, argv[1], NULL, NULL);
NULL              181 doc/examples/qsvdec.c                                  "auto", NULL, 0);
NULL              215 doc/examples/qsvdec.c     ret = avcodec_open2(decoder_ctx, NULL, NULL);
NULL              248 doc/examples/qsvdec.c     pkt.data = NULL;
NULL               48 doc/examples/remuxing.c     AVOutputFormat *ofmt = NULL;
NULL               49 doc/examples/remuxing.c     AVFormatContext *ifmt_ctx = NULL, *ofmt_ctx = NULL;
NULL               54 doc/examples/remuxing.c     int *stream_mapping = NULL;
NULL               80 doc/examples/remuxing.c     avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, out_filename);
NULL              110 doc/examples/remuxing.c         out_stream = avformat_new_stream(ofmt_ctx, NULL);
NULL              134 doc/examples/remuxing.c     ret = avformat_write_header(ofmt_ctx, NULL);
NULL               46 doc/examples/resampling_audio.c     *fmt = NULL;
NULL               85 doc/examples/resampling_audio.c     uint8_t **src_data = NULL, **dst_data = NULL;
NULL               90 doc/examples/resampling_audio.c     const char *dst_filename = NULL;
NULL               58 doc/examples/scaling_video.c     const char *dst_size = NULL;
NULL               59 doc/examples/scaling_video.c     const char *dst_filename = NULL;
NULL               92 doc/examples/scaling_video.c                              SWS_BILINEAR, NULL, NULL, NULL);
NULL               67 doc/examples/transcode_aac.c     if ((error = avformat_open_input(input_format_context, filename, NULL,
NULL               68 doc/examples/transcode_aac.c                                      NULL)) < 0) {
NULL               71 doc/examples/transcode_aac.c         *input_format_context = NULL;
NULL               76 doc/examples/transcode_aac.c     if ((error = avformat_find_stream_info(*input_format_context, NULL)) < 0) {
NULL              115 doc/examples/transcode_aac.c     if ((error = avcodec_open2(avctx, input_codec, NULL)) < 0) {
NULL              144 doc/examples/transcode_aac.c     AVCodecContext *avctx          = NULL;
NULL              145 doc/examples/transcode_aac.c     AVIOContext *output_io_context = NULL;
NULL              146 doc/examples/transcode_aac.c     AVStream *stream               = NULL;
NULL              147 doc/examples/transcode_aac.c     AVCodec *output_codec          = NULL;
NULL              168 doc/examples/transcode_aac.c     if (!((*output_format_context)->oformat = av_guess_format(NULL, filename,
NULL              169 doc/examples/transcode_aac.c                                                               NULL))) {
NULL              187 doc/examples/transcode_aac.c     if (!(stream = avformat_new_stream(*output_format_context, NULL))) {
NULL              221 doc/examples/transcode_aac.c     if ((error = avcodec_open2(avctx, output_codec, NULL)) < 0) {
NULL              242 doc/examples/transcode_aac.c     *output_format_context = NULL;
NULL              254 doc/examples/transcode_aac.c     packet->data = NULL;
NULL              294 doc/examples/transcode_aac.c         *resample_context = swr_alloc_set_opts(NULL,
NULL              301 doc/examples/transcode_aac.c                                               0, NULL);
NULL              347 doc/examples/transcode_aac.c     if ((error = avformat_write_header(output_format_context, NULL)) < 0) {
NULL              455 doc/examples/transcode_aac.c     if ((error = av_samples_alloc(*converted_input_samples, NULL,
NULL              553 doc/examples/transcode_aac.c     AVFrame *input_frame = NULL;
NULL              555 doc/examples/transcode_aac.c     uint8_t **converted_input_samples = NULL;
NULL              781 doc/examples/transcode_aac.c     AVFormatContext *input_format_context = NULL, *output_format_context = NULL;
NULL              782 doc/examples/transcode_aac.c     AVCodecContext *input_codec_context = NULL, *output_codec_context = NULL;
NULL              783 doc/examples/transcode_aac.c     SwrContext *resample_context = NULL;
NULL              784 doc/examples/transcode_aac.c     AVAudioFifo *fifo = NULL;
NULL              856 doc/examples/transcode_aac.c                 if (encode_audio_frame(NULL, output_format_context,
NULL               58 doc/examples/transcoding.c     ifmt_ctx = NULL;
NULL               59 doc/examples/transcoding.c     if ((ret = avformat_open_input(&ifmt_ctx, filename, NULL, NULL)) < 0) {
NULL               60 doc/examples/transcoding.c         av_log(NULL, AV_LOG_ERROR, "Cannot open input file\n");
NULL               64 doc/examples/transcoding.c     if ((ret = avformat_find_stream_info(ifmt_ctx, NULL)) < 0) {
NULL               65 doc/examples/transcoding.c         av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
NULL               78 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Failed to find decoder for stream #%u\n", i);
NULL               83 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Failed to allocate the decoder context for stream #%u\n", i);
NULL               88 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Failed to copy decoder parameters to input decoder context "
NULL               96 doc/examples/transcoding.c                 codec_ctx->framerate = av_guess_frame_rate(ifmt_ctx, stream, NULL);
NULL               98 doc/examples/transcoding.c             ret = avcodec_open2(codec_ctx, dec, NULL);
NULL              100 doc/examples/transcoding.c                 av_log(NULL, AV_LOG_ERROR, "Failed to open decoder for stream #%u\n", i);
NULL              120 doc/examples/transcoding.c     ofmt_ctx = NULL;
NULL              121 doc/examples/transcoding.c     avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, filename);
NULL              123 doc/examples/transcoding.c         av_log(NULL, AV_LOG_ERROR, "Could not create output context\n");
NULL              129 doc/examples/transcoding.c         out_stream = avformat_new_stream(ofmt_ctx, NULL);
NULL              131 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Failed allocating output stream\n");
NULL              143 doc/examples/transcoding.c                 av_log(NULL, AV_LOG_FATAL, "Necessary encoder not found\n");
NULL              148 doc/examples/transcoding.c                 av_log(NULL, AV_LOG_FATAL, "Failed to allocate the encoder context\n");
NULL              179 doc/examples/transcoding.c             ret = avcodec_open2(enc_ctx, encoder, NULL);
NULL              181 doc/examples/transcoding.c                 av_log(NULL, AV_LOG_ERROR, "Cannot open video encoder for stream #%u\n", i);
NULL              186 doc/examples/transcoding.c                 av_log(NULL, AV_LOG_ERROR, "Failed to copy encoder parameters to output stream #%u\n", i);
NULL              193 doc/examples/transcoding.c             av_log(NULL, AV_LOG_FATAL, "Elementary stream #%d is of unknown type, cannot proceed\n", i);
NULL              199 doc/examples/transcoding.c                 av_log(NULL, AV_LOG_ERROR, "Copying parameters for stream #%u failed\n", i);
NULL              211 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Could not open output file '%s'", filename);
NULL              217 doc/examples/transcoding.c     ret = avformat_write_header(ofmt_ctx, NULL);
NULL              219 doc/examples/transcoding.c         av_log(NULL, AV_LOG_ERROR, "Error occurred when opening output file\n");
NULL              231 doc/examples/transcoding.c     const AVFilter *buffersrc = NULL;
NULL              232 doc/examples/transcoding.c     const AVFilter *buffersink = NULL;
NULL              233 doc/examples/transcoding.c     AVFilterContext *buffersrc_ctx = NULL;
NULL              234 doc/examples/transcoding.c     AVFilterContext *buffersink_ctx = NULL;
NULL              248 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "filtering source or sink element not found\n");
NULL              261 doc/examples/transcoding.c                 args, NULL, filter_graph);
NULL              263 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot create buffer source\n");
NULL              268 doc/examples/transcoding.c                 NULL, NULL, filter_graph);
NULL              270 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot create buffer sink\n");
NULL              278 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot set output pixel format\n");
NULL              285 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "filtering source or sink element not found\n");
NULL              299 doc/examples/transcoding.c                 args, NULL, filter_graph);
NULL              301 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer source\n");
NULL              306 doc/examples/transcoding.c                 NULL, NULL, filter_graph);
NULL              308 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer sink\n");
NULL              316 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot set output sample format\n");
NULL              324 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot set output channel layout\n");
NULL              332 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Cannot set output sample rate\n");
NULL              344 doc/examples/transcoding.c     outputs->next       = NULL;
NULL              349 doc/examples/transcoding.c     inputs->next       = NULL;
NULL              357 doc/examples/transcoding.c                     &inputs, &outputs, NULL)) < 0)
NULL              360 doc/examples/transcoding.c     if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0)
NULL              385 doc/examples/transcoding.c         filter_ctx[i].buffersrc_ctx  = NULL;
NULL              386 doc/examples/transcoding.c         filter_ctx[i].buffersink_ctx = NULL;
NULL              387 doc/examples/transcoding.c         filter_ctx[i].filter_graph   = NULL;
NULL              416 doc/examples/transcoding.c     av_log(NULL, AV_LOG_INFO, "Encoding frame\n");
NULL              418 doc/examples/transcoding.c     enc_pkt.data = NULL;
NULL              435 doc/examples/transcoding.c     av_log(NULL, AV_LOG_DEBUG, "Muxing frame\n");
NULL              446 doc/examples/transcoding.c     av_log(NULL, AV_LOG_INFO, "Pushing decoded frame to filters\n");
NULL              451 doc/examples/transcoding.c         av_log(NULL, AV_LOG_ERROR, "Error while feeding the filtergraph\n");
NULL              462 doc/examples/transcoding.c         av_log(NULL, AV_LOG_INFO, "Pulling filtered frame from filters\n");
NULL              477 doc/examples/transcoding.c         ret = encode_write_frame(filt_frame, stream_index, NULL);
NULL              495 doc/examples/transcoding.c         av_log(NULL, AV_LOG_INFO, "Flushing stream #%u encoder\n", stream_index);
NULL              496 doc/examples/transcoding.c         ret = encode_write_frame(NULL, stream_index, &got_frame);
NULL              508 doc/examples/transcoding.c     AVPacket packet = { .data = NULL, .size = 0 };
NULL              509 doc/examples/transcoding.c     AVFrame *frame = NULL;
NULL              517 doc/examples/transcoding.c         av_log(NULL, AV_LOG_ERROR, "Usage: %s <input file> <output file>\n", argv[0]);
NULL              534 doc/examples/transcoding.c         av_log(NULL, AV_LOG_DEBUG, "Demuxer gave frame of stream_index %u\n",
NULL              538 doc/examples/transcoding.c             av_log(NULL, AV_LOG_DEBUG, "Going to reencode&filter the frame\n");
NULL              553 doc/examples/transcoding.c                 av_log(NULL, AV_LOG_ERROR, "Decoding failed\n");
NULL              584 doc/examples/transcoding.c         ret = filter_encode_write_frame(NULL, i);
NULL              586 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Flushing filter failed\n");
NULL              593 doc/examples/transcoding.c             av_log(NULL, AV_LOG_ERROR, "Flushing encoder failed\n");
NULL              617 doc/examples/transcoding.c         av_log(NULL, AV_LOG_ERROR, "Error occurred: %s\n", av_err2str(ret));
NULL               42 doc/examples/vaapi_encode.c static AVBufferRef *hw_device_ctx = NULL;
NULL               47 doc/examples/vaapi_encode.c     AVHWFramesContext *frames_ctx = NULL;
NULL               80 doc/examples/vaapi_encode.c     enc_pkt.data = NULL;
NULL              105 doc/examples/vaapi_encode.c     FILE *fin = NULL, *fout = NULL;
NULL              106 doc/examples/vaapi_encode.c     AVFrame *sw_frame = NULL, *hw_frame = NULL;
NULL              107 doc/examples/vaapi_encode.c     AVCodecContext *avctx = NULL;
NULL              108 doc/examples/vaapi_encode.c     AVCodec *codec = NULL;
NULL              131 doc/examples/vaapi_encode.c                                  NULL, NULL, 0);
NULL              161 doc/examples/vaapi_encode.c     if ((err = avcodec_open2(avctx, codec, NULL)) < 0) {
NULL              209 doc/examples/vaapi_encode.c     err = encode_write(avctx, NULL, fout);
NULL               41 doc/examples/vaapi_transcode.c static AVFormatContext *ifmt_ctx = NULL, *ofmt_ctx = NULL;
NULL               42 doc/examples/vaapi_transcode.c static AVBufferRef *hw_device_ctx = NULL;
NULL               43 doc/examples/vaapi_transcode.c static AVCodecContext *decoder_ctx = NULL, *encoder_ctx = NULL;
NULL               65 doc/examples/vaapi_transcode.c     AVCodec *decoder = NULL;
NULL               66 doc/examples/vaapi_transcode.c     AVStream *video = NULL;
NULL               68 doc/examples/vaapi_transcode.c     if ((ret = avformat_open_input(&ifmt_ctx, filename, NULL, NULL)) < 0) {
NULL               74 doc/examples/vaapi_transcode.c     if ((ret = avformat_find_stream_info(ifmt_ctx, NULL)) < 0) {
NULL              105 doc/examples/vaapi_transcode.c     if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) < 0)
NULL              118 doc/examples/vaapi_transcode.c     enc_pkt.data = NULL;
NULL              189 doc/examples/vaapi_transcode.c             if ((ret = avcodec_open2(encoder_ctx, enc_codec, NULL)) < 0) {
NULL              210 doc/examples/vaapi_transcode.c             if ((ret = avformat_write_header(ofmt_ctx, NULL)) < 0) {
NULL              243 doc/examples/vaapi_transcode.c     ret = av_hwdevice_ctx_create(&hw_device_ctx, AV_HWDEVICE_TYPE_VAAPI, NULL, NULL, 0);
NULL              258 doc/examples/vaapi_transcode.c     if ((ret = (avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, argv[3]))) < 0) {
NULL              288 doc/examples/vaapi_transcode.c     dec_pkt.data = NULL;
NULL              294 doc/examples/vaapi_transcode.c     ret = encode_write(NULL);
NULL              157 fftools/cmdutils.c     av_log(NULL, AV_LOG_FATAL, error, context, numstr, min, max);
NULL              167 fftools/cmdutils.c         av_log(NULL, AV_LOG_FATAL, "Invalid %s specification for %s: %s\n",
NULL              205 fftools/cmdutils.c     const AVClass *child = NULL;
NULL              207 fftools/cmdutils.c         av_opt_show2(&class, NULL, flags, 0);
NULL              234 fftools/cmdutils.c static char** win32_argv_utf8 = NULL;
NULL              264 fftools/cmdutils.c                                         NULL, 0, NULL, NULL);
NULL              277 fftools/cmdutils.c                                       buffsize - offset, NULL, NULL);
NULL              279 fftools/cmdutils.c     win32_argv_utf8[i] = NULL;
NULL              335 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR,
NULL              365 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'\n", opt);
NULL              369 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Missing argument for option '%s'\n", opt);
NULL              415 fftools/cmdutils.c     av_log(NULL, AV_LOG_DEBUG, "Parsing a group of options: %s %s.\n",
NULL              423 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR, "Option %s (%s) cannot be applied to "
NULL              431 fftools/cmdutils.c         av_log(NULL, AV_LOG_DEBUG, "Applying option %s (%s) with argument %s.\n",
NULL              439 fftools/cmdutils.c     av_log(NULL, AV_LOG_DEBUG, "Successfully parsed a group of options.\n");
NULL              513 fftools/cmdutils.c         opt_loglevel(NULL, "loglevel", argv[idx + 1]);
NULL              537 fftools/cmdutils.c         return NULL;
NULL              566 fftools/cmdutils.c     if ((o = opt_find(&cc, opt_stripped, NULL, 0,
NULL              569 fftools/cmdutils.c          (o = opt_find(&cc, opt + 1, NULL, 0, AV_OPT_SEARCH_FAKE_OBJ)))) {
NULL              573 fftools/cmdutils.c     if ((o = opt_find(&fc, opt, NULL, 0,
NULL              577 fftools/cmdutils.c             av_log(NULL, AV_LOG_VERBOSE, "Routing option %s to both codec and muxer layer\n", opt);
NULL              581 fftools/cmdutils.c     if (!consumed && (o = opt_find(&sc, opt, NULL, 0,
NULL              589 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR, "Directly using swscale dimensions/format options is not supported, please use the -s or -pix_fmt options\n");
NULL              593 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR, "Error setting option %s.\n", opt);
NULL              603 fftools/cmdutils.c         av_log(NULL, AV_LOG_WARNING, "Ignoring %s %s, due to disabled swscale\n", opt, arg);
NULL              608 fftools/cmdutils.c     if (!consumed && (o=opt_find(&swr_class, opt, NULL, 0,
NULL              614 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR, "Error setting option %s.\n", opt);
NULL              622 fftools/cmdutils.c     if ((o=opt_find(&rc, opt, NULL, 0,
NULL              677 fftools/cmdutils.c     codec_opts  = NULL;
NULL              678 fftools/cmdutils.c     format_opts = NULL;
NULL              679 fftools/cmdutils.c     resample_opts = NULL;
NULL              680 fftools/cmdutils.c     sws_dict    = NULL;
NULL              681 fftools/cmdutils.c     swr_opts    = NULL;
NULL              761 fftools/cmdutils.c     av_log(NULL, AV_LOG_DEBUG, "Splitting the commandline.\n");
NULL              768 fftools/cmdutils.c         av_log(NULL, AV_LOG_DEBUG, "Reading option '%s' ...", opt);
NULL              777 fftools/cmdutils.c             av_log(NULL, AV_LOG_DEBUG, " matched as %s.\n", groups[0].name);
NULL              786 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Missing argument for option '%s'.\n", opt);\
NULL              795 fftools/cmdutils.c             av_log(NULL, AV_LOG_DEBUG, " matched as %s with argument '%s'.\n",
NULL              813 fftools/cmdutils.c             av_log(NULL, AV_LOG_DEBUG, " matched as option '%s' (%s) with "
NULL              820 fftools/cmdutils.c             ret = opt_default(NULL, opt, argv[optindex]);
NULL              822 fftools/cmdutils.c                 av_log(NULL, AV_LOG_DEBUG, " matched as AVOption '%s' with "
NULL              827 fftools/cmdutils.c                 av_log(NULL, AV_LOG_ERROR, "Error parsing option '%s' "
NULL              838 fftools/cmdutils.c             av_log(NULL, AV_LOG_DEBUG, " matched as option '%s' (%s) with "
NULL              843 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'.\n", opt);
NULL              848 fftools/cmdutils.c         av_log(NULL, AV_LOG_WARNING, "Trailing option(s) found in the "
NULL              851 fftools/cmdutils.c     av_log(NULL, AV_LOG_DEBUG, "Finished splitting the commandline.\n");
NULL              934 fftools/cmdutils.c         av_log(NULL, AV_LOG_FATAL, "Invalid loglevel \"%s\". "
NULL              937 fftools/cmdutils.c             av_log(NULL, AV_LOG_FATAL, "\"%s\"\n", log_levels[i].name);
NULL              977 fftools/cmdutils.c     char *filename_template = NULL;
NULL              993 fftools/cmdutils.c                 av_log(NULL, AV_LOG_ERROR,
NULL             1004 fftools/cmdutils.c             val = NULL;
NULL             1009 fftools/cmdutils.c                 av_log(NULL, AV_LOG_FATAL, "Invalid report file level\n");
NULL             1014 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR, "Unknown key '%s' in FFREPORT\n", key);
NULL             1025 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Out of memory building report file name\n");
NULL             1036 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Failed to open report \"%s\": %s\n",
NULL             1041 fftools/cmdutils.c     av_log(NULL, AV_LOG_INFO,
NULL             1049 fftools/cmdutils.c     av_bprint_finalize(&filename, NULL);
NULL             1055 fftools/cmdutils.c     return init_report(NULL);
NULL             1065 fftools/cmdutils.c         av_log(NULL, AV_LOG_FATAL, "Invalid max_alloc \"%s\".\n", arg);
NULL             1080 fftools/cmdutils.c     av_log(NULL, AV_LOG_WARNING, "-%s not implemented on this OS\n", opt);
NULL             1092 fftools/cmdutils.c     av_log(NULL, AV_LOG_ERROR, "%s: %s\n", filename, errbuf_ptr);
NULL             1107 fftools/cmdutils.c             av_log(NULL, level,                                         \
NULL             1120 fftools/cmdutils.c                     av_log(NULL, level,                                 \
NULL             1125 fftools/cmdutils.c                 av_log(NULL, level, "%s%-11s configuration: %s\n",      \
NULL             1148 fftools/cmdutils.c     av_log(NULL, level, "%s version " FFMPEG_VERSION, program_name);
NULL             1150 fftools/cmdutils.c         av_log(NULL, level, " Copyright (c) %d-%d the FFmpeg developers",
NULL             1152 fftools/cmdutils.c     av_log(NULL, level, "\n");
NULL             1153 fftools/cmdutils.c     av_log(NULL, level, "%sbuilt with %s\n", indent, CC_IDENT);
NULL             1155 fftools/cmdutils.c     av_log(NULL, level, "%sconfiguration: " FFMPEG_CONFIGURATION "\n", indent);
NULL             1166 fftools/cmdutils.c     while ((conflist = strstr(str, " --")) != NULL) {
NULL             1172 fftools/cmdutils.c     while ((remove_tilde = strstr(str, "pkg-config~")) != NULL) {
NULL             1177 fftools/cmdutils.c     av_log(NULL, level, "\n%sconfiguration:\n", indent);
NULL             1178 fftools/cmdutils.c     while (splitconf != NULL) {
NULL             1179 fftools/cmdutils.c         av_log(NULL, level, "%s%s%s\n", indent, indent, splitconf);
NULL             1180 fftools/cmdutils.c         splitconf = strtok(NULL, "~");
NULL             1295 fftools/cmdutils.c     void *ifmt_opaque = NULL;
NULL             1296 fftools/cmdutils.c     const AVInputFormat *ifmt  = NULL;
NULL             1297 fftools/cmdutils.c     void *ofmt_opaque = NULL;
NULL             1298 fftools/cmdutils.c     const AVOutputFormat *ofmt = NULL;
NULL             1310 fftools/cmdutils.c         const char *name      = NULL;
NULL             1311 fftools/cmdutils.c         const char *long_name = NULL;
NULL             1314 fftools/cmdutils.c             ofmt_opaque = NULL;
NULL             1328 fftools/cmdutils.c             ifmt_opaque = NULL;
NULL             1505 fftools/cmdutils.c     return NULL;
NULL             1519 fftools/cmdutils.c     const AVCodecDescriptor *desc = NULL;
NULL             1526 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Out of memory\n");
NULL             1529 fftools/cmdutils.c     desc = NULL;
NULL             1540 fftools/cmdutils.c     void *iter = NULL;
NULL             1569 fftools/cmdutils.c         void *iter = NULL;
NULL             1593 fftools/cmdutils.c         iter = NULL;
NULL             1626 fftools/cmdutils.c         void *iter = NULL;
NULL             1660 fftools/cmdutils.c     const AVBitStreamFilter *bsf = NULL;
NULL             1661 fftools/cmdutils.c     void *opaque = NULL;
NULL             1672 fftools/cmdutils.c     void *opaque = NULL;
NULL             1688 fftools/cmdutils.c     const AVFilter *filter = NULL;
NULL             1690 fftools/cmdutils.c     void *opaque = NULL;
NULL             1748 fftools/cmdutils.c     const AVPixFmtDescriptor *pix_desc = NULL;
NULL             1823 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "No codec name specified.\n");
NULL             1833 fftools/cmdutils.c         void *iter = NULL;
NULL             1842 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR, "Codec '%s' is known to FFmpeg, "
NULL             1848 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Codec '%s' is not recognized by FFmpeg.\n",
NULL             1858 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Unknown format '%s'.\n", name);
NULL             1876 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "No protocol name specified.\n");
NULL             1882 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Unknown protocol '%s'.\n", name);
NULL             1892 fftools/cmdutils.c     const AVOutputFormat *fmt = av_guess_format(name, NULL, NULL);
NULL             1895 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Unknown format '%s'.\n", name);
NULL             1930 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "No filter name specified.\n");
NULL             1933 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Unknown filter '%s'.\n", name);
NULL             1972 fftools/cmdutils.c     av_log(NULL, AV_LOG_ERROR, "Build without libavfilter; "
NULL             1983 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "No bitstream filter name specified.\n");
NULL             1986 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Unknown bit stream filter '%s'.\n", name);
NULL             2050 fftools/cmdutils.c     FILE *f = NULL;
NULL             2062 fftools/cmdutils.c         base[2] = NULL;
NULL             2064 fftools/cmdutils.c         if (GetModuleFileNameA(GetModuleHandleA(NULL), datadir, sizeof(datadir) - 1))
NULL             2107 fftools/cmdutils.c     AVDictionary    *ret = NULL;
NULL             2108 fftools/cmdutils.c     AVDictionaryEntry *t = NULL;
NULL             2144 fftools/cmdutils.c         if (av_opt_find(&cc, t->key, NULL, flags, AV_OPT_SEARCH_FAKE_OBJ) ||
NULL             2147 fftools/cmdutils.c              av_opt_find(&codec->priv_class, t->key, NULL, flags,
NULL             2151 fftools/cmdutils.c                  av_opt_find(&cc, t->key + 1, NULL, flags,
NULL             2168 fftools/cmdutils.c         return NULL;
NULL             2171 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR,
NULL             2173 fftools/cmdutils.c         return NULL;
NULL             2177 fftools/cmdutils.c                                     s, s->streams[i], NULL);
NULL             2184 fftools/cmdutils.c         av_log(NULL, AV_LOG_ERROR, "Array too big.\n");
NULL             2190 fftools/cmdutils.c             av_log(NULL, AV_LOG_ERROR, "Could not alloc buffer.\n");
NULL             2203 fftools/cmdutils.c                                                      AV_PKT_DATA_DISPLAYMATRIX, NULL);
NULL             2211 fftools/cmdutils.c         av_log(NULL, AV_LOG_WARNING, "Odd rotation angle.\n"
NULL             2223 fftools/cmdutils.c     AVDeviceInfoList *device_list = NULL;
NULL             2235 fftools/cmdutils.c     if ((ret = avdevice_list_input_sources(fmt, NULL, opts, &device_list)) < 0) {
NULL             2253 fftools/cmdutils.c     AVDeviceInfoList *device_list = NULL;
NULL             2265 fftools/cmdutils.c     if ((ret = avdevice_list_output_sinks(fmt, NULL, opts, &device_list)) < 0) {
NULL             2284 fftools/cmdutils.c         char *opts_str = NULL;
NULL             2304 fftools/cmdutils.c     AVInputFormat *fmt = NULL;
NULL             2305 fftools/cmdutils.c     char *dev = NULL;
NULL             2306 fftools/cmdutils.c     AVDictionary *opts = NULL;
NULL             2342 fftools/cmdutils.c     AVOutputFormat *fmt = NULL;
NULL             2343 fftools/cmdutils.c     char *dev = NULL;
NULL             2344 fftools/cmdutils.c     AVDictionary *opts = NULL;
NULL              120 fftools/ffmpeg.c     NULL
NULL              143 fftools/ffmpeg.c AVIOContext *progress_avio = NULL;
NULL              147 fftools/ffmpeg.c InputStream **input_streams = NULL;
NULL              149 fftools/ffmpeg.c InputFile   **input_files   = NULL;
NULL              152 fftools/ffmpeg.c OutputStream **output_streams = NULL;
NULL              154 fftools/ffmpeg.c OutputFile   **output_files   = NULL;
NULL              199 fftools/ffmpeg.c         av_log(NULL, AV_LOG_WARNING, "sub2video: non-bitmap subtitle\n");
NULL              203 fftools/ffmpeg.c         av_log(NULL, AV_LOG_WARNING, "sub2video: rectangle (%d %d %d %d) overflowing %d %d\n",
NULL              235 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "Error while add the frame to buffer source(%s).\n",
NULL              304 fftools/ffmpeg.c             sub2video_update(ist2, pts2 + 1, NULL);
NULL              318 fftools/ffmpeg.c         sub2video_update(ist, INT64_MAX, NULL);
NULL              320 fftools/ffmpeg.c         ret = av_buffersrc_add_frame(ist->filters[i]->filter, NULL);
NULL              322 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "Flush the frame error.\n");
NULL              338 fftools/ffmpeg.c     av_log(NULL, AV_LOG_QUIET, "%s", "");
NULL              366 fftools/ffmpeg.c     av_log(NULL, AV_LOG_DEBUG, "\nReceived windows signal %ld\n", fdwCtrlType);
NULL              389 fftools/ffmpeg.c         av_log(NULL, AV_LOG_ERROR, "Received unknown windows signal %ld\n", fdwCtrlType);
NULL              445 fftools/ffmpeg.c     n = select(1, &rfds, NULL, NULL, &tv);
NULL              465 fftools/ffmpeg.c         if (!PeekNamedPipe(input_handle, NULL, 0, NULL, &nchars, NULL)) {
NULL              489 fftools/ffmpeg.c const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
NULL              497 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "bench: maxrss=%ikB\n", maxrss);
NULL              510 fftools/ffmpeg.c                                      sizeof(frame), NULL);
NULL              518 fftools/ffmpeg.c                                          &sub, sizeof(sub), NULL);
NULL              589 fftools/ffmpeg.c                 av_fifo_generic_read(ost->muxing_queue, &pkt, sizeof(pkt), NULL);
NULL              623 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR,
NULL              639 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "Exiting normally, received signal %d.\n",
NULL              642 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "Conversion failed!\n");
NULL              650 fftools/ffmpeg.c     AVDictionaryEntry *t = NULL;
NULL              653 fftools/ffmpeg.c         av_dict_set(a, t->key, NULL, AV_DICT_MATCH_CASE);
NULL              660 fftools/ffmpeg.c     if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
NULL              661 fftools/ffmpeg.c         av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key);
NULL              682 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO,
NULL              730 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_ERROR,
NULL              743 fftools/ffmpeg.c         av_fifo_generic_write(ost->muxing_queue, &tmp_pkt, sizeof(tmp_pkt), NULL);
NULL              754 fftools/ffmpeg.c                                               NULL);
NULL              767 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_WARNING, "Overriding packet duration by frame rate, this should not happen\n");
NULL              800 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_FATAL, "aborting.\n");
NULL              820 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "muxer <- type:%s "
NULL              867 fftools/ffmpeg.c         ret = av_bsf_send_packet(ost->bsf_ctx, eof ? NULL : pkt);
NULL              879 fftools/ffmpeg.c         av_log(NULL, AV_LOG_ERROR, "Error applying bitstream filters to an output "
NULL              907 fftools/ffmpeg.c     pkt.data = NULL;
NULL              920 fftools/ffmpeg.c     update_benchmark(NULL);
NULL              922 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "encoder <- type:audio "
NULL              944 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, "encoder -> type:audio "
NULL              955 fftools/ffmpeg.c     av_log(NULL, AV_LOG_FATAL, "Audio encoding failed\n");
NULL              970 fftools/ffmpeg.c         av_log(NULL, AV_LOG_ERROR, "Subtitle packets must have a pts\n");
NULL              981 fftools/ffmpeg.c             av_log(NULL, AV_LOG_FATAL, "Failed to allocate subtitle_out\n");
NULL             1020 fftools/ffmpeg.c             av_log(NULL, AV_LOG_FATAL, "Subtitle encoding failed\n");
NULL             1056 fftools/ffmpeg.c     InputStream *ist = NULL;
NULL             1114 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_VERBOSE, "Past duration %f too large\n", -delta0);
NULL             1116 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_DEBUG, "Clipping frame in rate conversion by %f\n", -delta0);
NULL             1125 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_DEBUG, "Not duplicating %d initial frames\n", (int)lrintf(delta0));
NULL             1167 fftools/ffmpeg.c         av_log(NULL, AV_LOG_VERBOSE,
NULL             1173 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
NULL             1178 fftools/ffmpeg.c         av_log(NULL, AV_LOG_VERBOSE, "*** %d dup!\n", nb_frames - 1);
NULL             1180 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "More than %d frames duplicated\n", dup_warning);
NULL             1192 fftools/ffmpeg.c         pkt.data = NULL;
NULL             1237 fftools/ffmpeg.c                                ost->forced_keyframes_expr_const_values, NULL);
NULL             1238 fftools/ffmpeg.c             ff_dlog(NULL, "force_key_frame: n:%f n_forced:%f prev_forced_n:%f t:%f prev_forced_t:%f -> res:%f\n",
NULL             1264 fftools/ffmpeg.c             av_log(NULL, AV_LOG_DEBUG, "Forced keyframe at time %f\n", pts_time);
NULL             1267 fftools/ffmpeg.c         update_benchmark(NULL);
NULL             1269 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, "encoder <- type:video "
NULL             1292 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
NULL             1304 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_INFO, "encoder -> type:video "
NULL             1340 fftools/ffmpeg.c     av_log(NULL, AV_LOG_FATAL, "Video encoding failed\n");
NULL             1415 fftools/ffmpeg.c     AVFrame *filtered_frame = NULL;
NULL             1434 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
NULL             1451 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_WARNING,
NULL             1455 fftools/ffmpeg.c                         do_video_out(of, ost, NULL, AV_NOPTS_VALUE);
NULL             1488 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_INFO, "filter -> pts:%s pts_time:%s exact:%f time_base:%d/%d\n",
NULL             1499 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_ERROR,
NULL             1544 fftools/ffmpeg.c     av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB subtitle:%1.0fkB other streams:%1.0fkB global headers:%1.0fkB muxing overhead: ",
NULL             1551 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "%f%%", percent);
NULL             1553 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "unknown");
NULL             1554 fftools/ffmpeg.c     av_log(NULL, AV_LOG_INFO, "\n");
NULL             1561 fftools/ffmpeg.c         av_log(NULL, AV_LOG_VERBOSE, "Input file #%d (%s):\n",
NULL             1571 fftools/ffmpeg.c             av_log(NULL, AV_LOG_VERBOSE, "  Input stream #%d:%d (%s): ",
NULL             1573 fftools/ffmpeg.c             av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets read (%"PRIu64" bytes); ",
NULL             1577 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames decoded",
NULL             1580 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ist->samples_decoded);
NULL             1581 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_VERBOSE, "; ");
NULL             1584 fftools/ffmpeg.c             av_log(NULL, AV_LOG_VERBOSE, "\n");
NULL             1587 fftools/ffmpeg.c         av_log(NULL, AV_LOG_VERBOSE, "  Total: %"PRIu64" packets (%"PRIu64" bytes) demuxed\n",
NULL             1595 fftools/ffmpeg.c         av_log(NULL, AV_LOG_VERBOSE, "Output file #%d (%s):\n",
NULL             1605 fftools/ffmpeg.c             av_log(NULL, AV_LOG_VERBOSE, "  Output stream #%d:%d (%s): ",
NULL             1608 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" frames encoded",
NULL             1611 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ost->samples_encoded);
NULL             1612 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_VERBOSE, "; ");
NULL             1615 fftools/ffmpeg.c             av_log(NULL, AV_LOG_VERBOSE, "%"PRIu64" packets muxed (%"PRIu64" bytes); ",
NULL             1618 fftools/ffmpeg.c             av_log(NULL, AV_LOG_VERBOSE, "\n");
NULL             1621 fftools/ffmpeg.c         av_log(NULL, AV_LOG_VERBOSE, "  Total: %"PRIu64" packets (%"PRIu64" bytes) muxed\n",
NULL             1625 fftools/ffmpeg.c         av_log(NULL, AV_LOG_WARNING, "Output file is empty, nothing was encoded ");
NULL             1627 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "\n");
NULL             1629 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "(check -ss / -t / -frames parameters if used)\n");
NULL             1809 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, "%s    %c", buf.str, end);
NULL             1813 fftools/ffmpeg.c     av_bprint_finalize(&buf, NULL);
NULL             1821 fftools/ffmpeg.c         av_bprint_finalize(&buf_script, NULL);
NULL             1824 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_ERROR,
NULL             1864 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING,
NULL             1881 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_ERROR, "Error configuring filter graph\n");
NULL             1890 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
NULL             1900 fftools/ffmpeg.c             const char *desc = NULL;
NULL             1916 fftools/ffmpeg.c             pkt.data = NULL;
NULL             1919 fftools/ffmpeg.c             update_benchmark(NULL);
NULL             1922 fftools/ffmpeg.c                 ret = avcodec_send_frame(enc, NULL);
NULL             1924 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_FATAL, "%s encoding failed: %s\n",
NULL             1933 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_FATAL, "%s encoding failed: %s\n",
NULL             1990 fftools/ffmpeg.c         opkt.data = NULL;
NULL             2070 fftools/ffmpeg.c         av_log(NULL, AV_LOG_WARNING, "Guessed Channel Layout for Input Stream "
NULL             2086 fftools/ffmpeg.c             av_log(NULL, exit_on_error ? AV_LOG_FATAL : AV_LOG_WARNING,
NULL             2155 fftools/ffmpeg.c                 av_fifo_generic_write(ifilter->frame_queue, &tmp, sizeof(tmp), NULL);
NULL             2162 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret));
NULL             2168 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "Error reinitializing filters!\n");
NULL             2176 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret));
NULL             2198 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "Cannot determine format of input stream %d:%d after EOF\n", ifilter->ist->file_index, ifilter->ist->st->index);
NULL             2251 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR,
NULL             2273 fftools/ffmpeg.c     update_benchmark(NULL);
NULL             2358 fftools/ffmpeg.c     update_benchmark(NULL);
NULL             2359 fftools/ffmpeg.c     ret = decode(ist->dec_ctx, decoded_frame, got_output, pkt ? &avpkt : NULL);
NULL             2386 fftools/ffmpeg.c             av_log(NULL, AV_LOG_DEBUG, "Frame parameters mismatch context %d,%d,%d != %d,%d,%d\n",
NULL             2433 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "decoder -> ist_index:%d type:video "
NULL             2462 fftools/ffmpeg.c     check_decode_result(NULL, got_output, ret);
NULL             2506 fftools/ffmpeg.c         av_fifo_generic_write(ist->sub2video.sub_queue, &subtitle, sizeof(subtitle), NULL);
NULL             2572 fftools/ffmpeg.c         avpkt.data = NULL;
NULL             2596 fftools/ffmpeg.c             ret = decode_audio    (ist, repeating ? NULL : &avpkt, &got_output,
NULL             2600 fftools/ffmpeg.c             ret = decode_video    (ist, repeating ? NULL : &avpkt, &got_output, &duration_pts, !pkt,
NULL             2644 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
NULL             2647 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_FATAL, "Error while processing the decoded "
NULL             2680 fftools/ffmpeg.c             av_log(NULL, AV_LOG_FATAL, "Error marking filters as finished\n");
NULL             2761 fftools/ffmpeg.c         if (avio_open2(&sdp_pb, sdp_filename, AVIO_FLAG_WRITE, &int_cb, NULL) < 0) {
NULL             2762 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "Failed to open sdp file '%s'\n", sdp_filename);
NULL             2782 fftools/ffmpeg.c         const AVCodecHWConfig  *config = NULL;
NULL             2810 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_FATAL,
NULL             2820 fftools/ffmpeg.c             const HWAccel *hwaccel = NULL;
NULL             2839 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_FATAL,
NULL             2893 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_WARNING, "Warning using DVB subtitles for filtering and output at the same time is not fully supported, also see -compute_edt [0|1]\n");
NULL             2902 fftools/ffmpeg.c         if (!av_dict_get(ist->decoder_opts, "threads", NULL, 0))
NULL             2939 fftools/ffmpeg.c     return NULL;
NULL             2962 fftools/ffmpeg.c         av_log(NULL, AV_LOG_ERROR,
NULL             2986 fftools/ffmpeg.c             av_fifo_generic_read(ost->muxing_queue, &pkt, sizeof(pkt), NULL);
NULL             3010 fftools/ffmpeg.c         av_log(NULL, AV_LOG_ERROR, "Error initializing bitstream filter: %s\n",
NULL             3039 fftools/ffmpeg.c         av_log(NULL, AV_LOG_FATAL,
NULL             3046 fftools/ffmpeg.c         av_log(NULL, AV_LOG_FATAL,
NULL             3106 fftools/ffmpeg.c             av_log(NULL, AV_LOG_FATAL, "-acodec copy and -vol are incompatible (frames are not decoded)\n");
NULL             3119 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "Overriding aspect ratio "
NULL             3146 fftools/ffmpeg.c     if (av_dict_get(ost->st->metadata, "encoder",  NULL, 0))
NULL             3149 fftools/ffmpeg.c     e = av_dict_get(of->opts, "fflags", NULL, 0);
NULL             3151 fftools/ffmpeg.c         const AVOption *o = av_opt_find(of->ctx, "fflags", NULL, 0, 0);
NULL             3156 fftools/ffmpeg.c     e = av_dict_get(ost->encoder_opts, "flags", NULL, 0);
NULL             3158 fftools/ffmpeg.c         const AVOption *o = av_opt_find(ost->enc_ctx, "flags", NULL, 0, 0);
NULL             3191 fftools/ffmpeg.c         av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
NULL             3210 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_FATAL,
NULL             3269 fftools/ffmpeg.c     AVCodecContext *dec_ctx = NULL;
NULL             3278 fftools/ffmpeg.c     av_dict_set(&ost->st->metadata, "rotate", NULL, 0);
NULL             3307 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING,
NULL             3382 fftools/ffmpeg.c                                     forced_keyframes_const_names, NULL, NULL, NULL, NULL, 0, NULL);
NULL             3384 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_ERROR,
NULL             3425 fftools/ffmpeg.c         AVCodecContext *dec = NULL;
NULL             3442 fftools/ffmpeg.c         if (!av_dict_get(ost->encoder_opts, "threads", NULL, 0))
NULL             3446 fftools/ffmpeg.c             !av_dict_get(ost->encoder_opts, "b", NULL, 0) &&
NULL             3447 fftools/ffmpeg.c             !av_dict_get(ost->encoder_opts, "ab", NULL, 0))
NULL             3492 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "The bitrate parameter is set too low."
NULL             3497 fftools/ffmpeg.c             av_log(NULL, AV_LOG_FATAL,
NULL             3562 fftools/ffmpeg.c             { "disposition"         , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
NULL             3563 fftools/ffmpeg.c             { "default"             , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DEFAULT           },    .unit = "flags" },
NULL             3564 fftools/ffmpeg.c             { "dub"                 , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DUB               },    .unit = "flags" },
NULL             3565 fftools/ffmpeg.c             { "original"            , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_ORIGINAL          },    .unit = "flags" },
NULL             3566 fftools/ffmpeg.c             { "comment"             , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_COMMENT           },    .unit = "flags" },
NULL             3567 fftools/ffmpeg.c             { "lyrics"              , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_LYRICS            },    .unit = "flags" },
NULL             3568 fftools/ffmpeg.c             { "karaoke"             , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_KARAOKE           },    .unit = "flags" },
NULL             3569 fftools/ffmpeg.c             { "forced"              , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_FORCED            },    .unit = "flags" },
NULL             3570 fftools/ffmpeg.c             { "hearing_impaired"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_HEARING_IMPAIRED  },    .unit = "flags" },
NULL             3571 fftools/ffmpeg.c             { "visual_impaired"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_VISUAL_IMPAIRED   },    .unit = "flags" },
NULL             3572 fftools/ffmpeg.c             { "clean_effects"       , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CLEAN_EFFECTS     },    .unit = "flags" },
NULL             3573 fftools/ffmpeg.c             { "attached_pic"        , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_ATTACHED_PIC      },    .unit = "flags" },
NULL             3574 fftools/ffmpeg.c             { "captions"            , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_CAPTIONS          },    .unit = "flags" },
NULL             3575 fftools/ffmpeg.c             { "descriptions"        , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DESCRIPTIONS      },    .unit = "flags" },
NULL             3576 fftools/ffmpeg.c             { "dependent"           , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_DEPENDENT         },    .unit = "flags" },
NULL             3577 fftools/ffmpeg.c             { "metadata"            , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_DISPOSITION_METADATA          },    .unit = "flags" },
NULL             3578 fftools/ffmpeg.c             { NULL },
NULL             3704 fftools/ffmpeg.c     av_log(NULL, AV_LOG_INFO, "Stream mapping:\n");
NULL             3710 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d (%s) -> %s",
NULL             3714 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
NULL             3715 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_INFO, "\n");
NULL             3725 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, "  File %s -> Stream #%d:%d\n",
NULL             3732 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, "  %s", ost->filter->name);
NULL             3734 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
NULL             3736 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, " -> Stream #%d:%d (%s)\n", ost->file_index,
NULL             3741 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d -> #%d:%d",
NULL             3747 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, " [sync #%d:%d]",
NULL             3751 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, " (copy)");
NULL             3779 fftools/ffmpeg.c             av_log(NULL, AV_LOG_INFO, " (%s (%s) -> %s (%s))",
NULL             3783 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "\n");
NULL             3787 fftools/ffmpeg.c         av_log(NULL, AV_LOG_ERROR, "%s\n", error);
NULL             3831 fftools/ffmpeg.c     OutputStream *ost_min = NULL;
NULL             3839 fftools/ffmpeg.c             av_log(NULL, AV_LOG_DEBUG,
NULL             3848 fftools/ffmpeg.c             ost_min  = ost->unavailable ? NULL : ost;
NULL             3907 fftools/ffmpeg.c             av_log(NULL, AV_LOG_DEBUG, "Processing command target:%s time:%f command:%s arg:%s",
NULL             3927 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR,
NULL             4022 fftools/ffmpeg.c     return NULL;
NULL             4036 fftools/ffmpeg.c     pthread_join(f->thread, NULL);
NULL             4065 fftools/ffmpeg.c     if ((ret = pthread_create(&f->thread, NULL, input_thread, f))) {
NULL             4066 fftools/ffmpeg.c         av_log(NULL, AV_LOG_ERROR, "pthread_create failed: %s. Try to increase `ulimit -v` or decrease `ulimit -s`.\n", strerror(ret));
NULL             4242 fftools/ffmpeg.c                 ret = process_input_packet(ist, NULL, 1);
NULL             4258 fftools/ffmpeg.c             av_log(NULL, AV_LOG_WARNING, "Seek to start failed.\n");
NULL             4276 fftools/ffmpeg.c                 ret = process_input_packet(ist, NULL, 0);
NULL             4298 fftools/ffmpeg.c         av_pkt_dump_log2(NULL, AV_LOG_INFO, &pkt, do_hex_dump,
NULL             4317 fftools/ffmpeg.c         av_log(NULL, exit_on_error ? AV_LOG_FATAL : AV_LOG_WARNING,
NULL             4324 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d type:%s "
NULL             4379 fftools/ffmpeg.c             if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
NULL             4409 fftools/ffmpeg.c             av_log(NULL, AV_LOG_DEBUG,
NULL             4449 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_DEBUG,
NULL             4462 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_WARNING, "DTS %"PRId64", next:%"PRId64" st:%d invalid dropping\n", pkt.dts, ist->next_dts, pkt.stream_index);
NULL             4470 fftools/ffmpeg.c                     av_log(NULL, AV_LOG_WARNING, "PTS %"PRId64", next:%"PRId64" invalid dropping st:%d\n", pkt.pts, ist->next_dts, pkt.stream_index);
NULL             4481 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "demuxer+ffmpeg -> ist_index:%d type:%s pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s off:%s off_time:%s\n",
NULL             4513 fftools/ffmpeg.c     *best_ist = NULL;
NULL             4555 fftools/ffmpeg.c     InputStream  *ist = NULL;
NULL             4565 fftools/ffmpeg.c         av_log(NULL, AV_LOG_VERBOSE, "No more inputs to read from, finishing.\n");
NULL             4573 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_ERROR, "Error reinitializing filters!\n");
NULL             4584 fftools/ffmpeg.c                 av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
NULL             4641 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");
NULL             4661 fftools/ffmpeg.c             av_log(NULL, AV_LOG_VERBOSE, "No more output streams to write to, finishing.\n");
NULL             4667 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret));
NULL             4682 fftools/ffmpeg.c             process_input_packet(ist, NULL, 0);
NULL             4693 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR,
NULL             4700 fftools/ffmpeg.c             av_log(NULL, AV_LOG_ERROR, "Error writing trailer of %s: %s\n", os->url, av_err2str(ret));
NULL             4717 fftools/ffmpeg.c             av_log(NULL, AV_LOG_FATAL, "Empty output on stream %d.\n", i);
NULL             4723 fftools/ffmpeg.c         av_log(NULL, AV_LOG_FATAL, "Empty output\n");
NULL             4753 fftools/ffmpeg.c                         av_log(NULL, AV_LOG_ERROR,
NULL             4756 fftools/ffmpeg.c                     ost->logfile = NULL;
NULL             4828 fftools/ffmpeg.c     setvbuf(stderr,NULL,_IONBF,0); /* win32 runtime needs this */
NULL             4854 fftools/ffmpeg.c         av_log(NULL, AV_LOG_WARNING, "Use -h to get full help or, even better, run 'man %s'\n", program_name);
NULL             4860 fftools/ffmpeg.c         av_log(NULL, AV_LOG_FATAL, "At least one output file must be specified\n");
NULL             4878 fftools/ffmpeg.c         av_log(NULL, AV_LOG_INFO,
NULL             4882 fftools/ffmpeg.c     av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
NULL               76 fftools/ffmpeg_filter.c             best= avcodec_find_best_pix_fmt_of_2(best, *p, target, has_alpha, NULL);
NULL               82 fftools/ffmpeg_filter.c                 av_log(NULL, AV_LOG_WARNING,
NULL              104 fftools/ffmpeg_filter.c                 av_log(NULL, AV_LOG_ERROR, "Conversion will not be lossless.\n");
NULL              106 fftools/ffmpeg_filter.c             av_log(NULL, AV_LOG_WARNING,
NULL              119 fftools/ffmpeg_filter.c     AVDictionaryEntry *strict_dict = av_dict_get(ost->encoder_opts, "strict", NULL, 0);
NULL              128 fftools/ffmpeg_filter.c             return NULL;
NULL              135 fftools/ffmpeg_filter.c         AVIOContext *s = NULL;
NULL              155 fftools/ffmpeg_filter.c         return NULL;
NULL              168 fftools/ffmpeg_filter.c         AVIOContext *s = NULL;                                                 \
NULL              183 fftools/ffmpeg_filter.c         return NULL;                                                           \
NULL              241 fftools/ffmpeg_filter.c     uint8_t *res = NULL;
NULL              256 fftools/ffmpeg_filter.c     InputStream *ist = NULL;
NULL              262 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_FATAL, "Only video and audio filters supported "
NULL              269 fftools/ffmpeg_filter.c         AVStream       *st = NULL;
NULL              274 fftools/ffmpeg_filter.c             av_log(NULL, AV_LOG_FATAL, "Invalid file index %d in filtergraph description %s.\n",
NULL              292 fftools/ffmpeg_filter.c             av_log(NULL, AV_LOG_FATAL, "Stream specifier '%s' in filtergraph description %s "
NULL              298 fftools/ffmpeg_filter.c             av_log(NULL, AV_LOG_FATAL, "Stream specifier '%s' in filtergraph description %s "
NULL              312 fftools/ffmpeg_filter.c             av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for "
NULL              373 fftools/ffmpeg_filter.c         fg->outputs[fg->nb_outputs - 1]->out_tmp->next = NULL;
NULL              398 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_ERROR, "%s filter not present, cannot limit "
NULL              420 fftools/ffmpeg_filter.c     ret = avfilter_init_str(ctx, NULL);
NULL              442 fftools/ffmpeg_filter.c                                        filter_name, args, NULL, graph);
NULL              468 fftools/ffmpeg_filter.c                                        name, NULL, NULL, fg->graph);
NULL              476 fftools/ffmpeg_filter.c         AVDictionaryEntry *e = NULL;
NULL              489 fftools/ffmpeg_filter.c                                                 name, args, NULL, fg->graph)) < 0)
NULL              504 fftools/ffmpeg_filter.c                                            "format", pix_fmts, NULL, fg->graph);
NULL              524 fftools/ffmpeg_filter.c                                            name, args, NULL, fg->graph);
NULL              563 fftools/ffmpeg_filter.c                                        name, NULL, NULL, fg->graph);
NULL              572 fftools/ffmpeg_filter.c     av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi "            \
NULL              577 fftools/ffmpeg_filter.c                                        filter_name, arg, NULL, fg->graph);  \
NULL              599 fftools/ffmpeg_filter.c         av_bprint_finalize(&pan_buf, NULL);
NULL              631 fftools/ffmpeg_filter.c                                            name, args, NULL, fg->graph);
NULL              680 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_FATAL, "Filter %s has an unconnected output\n", ofilter->name);
NULL              699 fftools/ffmpeg_filter.c                 av_log(NULL, AV_LOG_FATAL, "Filter %s has an unconnected output\n", output->name);
NULL              776 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_ERROR, "Cannot connect video filter to audio input\n");
NULL              782 fftools/ffmpeg_filter.c         fr = av_guess_frame_rate(input_files[ist->file_index]->ctx, ist->st, NULL);
NULL              806 fftools/ffmpeg_filter.c                                             args.str, NULL, fg->graph)) < 0)
NULL              821 fftools/ffmpeg_filter.c             ret = insert_filter(&last_filter, &pad_idx, "hflip", NULL);
NULL              824 fftools/ffmpeg_filter.c             ret = insert_filter(&last_filter, &pad_idx, "vflip", NULL);
NULL              843 fftools/ffmpeg_filter.c                                                 name, "", NULL,
NULL              888 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_ERROR, "Cannot connect audio filter to non audio input\n");
NULL              906 fftools/ffmpeg_filter.c                                             name, args.str, NULL,
NULL              914 fftools/ffmpeg_filter.c     av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi "            \
NULL              921 fftools/ffmpeg_filter.c                                        name, arg, NULL, fg->graph);         \
NULL              959 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_WARNING, "-vol has been deprecated. Use the volume "
NULL              989 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_ERROR,
NULL             1005 fftools/ffmpeg_filter.c         fg->outputs[i]->filter = (AVFilterContext *)NULL;
NULL             1007 fftools/ffmpeg_filter.c         fg->inputs[i]->filter = (AVFilterContext *)NULL;
NULL             1025 fftools/ffmpeg_filter.c         AVDictionaryEntry *e = NULL;
NULL             1055 fftools/ffmpeg_filter.c         e = av_dict_get(ost->encoder_opts, "threads", NULL, 0);
NULL             1086 fftools/ffmpeg_filter.c         av_log(NULL, AV_LOG_ERROR, "Simple filtergraph '%s' was expected "
NULL             1107 fftools/ffmpeg_filter.c     if ((ret = avfilter_graph_config(fg->graph, NULL)) < 0)
NULL             1132 fftools/ffmpeg_filter.c             av_log(NULL, AV_LOG_ERROR, "Encoder (codec %s) not found for output stream #%d:%d\n",
NULL             1146 fftools/ffmpeg_filter.c             av_fifo_generic_read(fg->inputs[i]->frame_queue, &tmp, sizeof(tmp), NULL);
NULL             1157 fftools/ffmpeg_filter.c             ret = av_buffersrc_add_frame(fg->inputs[i]->filter, NULL);
NULL             1169 fftools/ffmpeg_filter.c                 av_fifo_generic_read(ist->sub2video.sub_queue, &tmp, sizeof(tmp), NULL);
NULL               32 fftools/ffmpeg_hw.c     HWDevice *found = NULL;
NULL               37 fftools/ffmpeg_hw.c                 return NULL;
NULL               51 fftools/ffmpeg_hw.c     return NULL;
NULL               61 fftools/ffmpeg_hw.c         return NULL;
NULL               65 fftools/ffmpeg_hw.c         return NULL;
NULL               81 fftools/ffmpeg_hw.c         return NULL;
NULL               89 fftools/ffmpeg_hw.c         return NULL;
NULL              103 fftools/ffmpeg_hw.c     AVDictionary *options = NULL;
NULL              104 fftools/ffmpeg_hw.c     const char *type_name = NULL, *name = NULL, *device = NULL;
NULL              107 fftools/ffmpeg_hw.c     AVBufferRef *device_ref = NULL;
NULL              151 fftools/ffmpeg_hw.c                                      NULL, NULL, 0);
NULL              175 fftools/ffmpeg_hw.c                                      q ? device : p[0] ? p : NULL,
NULL              211 fftools/ffmpeg_hw.c     name = NULL;
NULL              220 fftools/ffmpeg_hw.c     av_log(NULL, AV_LOG_ERROR,
NULL              225 fftools/ffmpeg_hw.c     av_log(NULL, AV_LOG_ERROR,
NULL              235 fftools/ffmpeg_hw.c     AVBufferRef *device_ref = NULL;
NULL              246 fftools/ffmpeg_hw.c     err = av_hwdevice_ctx_create(&device_ref, type, device, NULL, 0);
NULL              248 fftools/ffmpeg_hw.c         av_log(NULL, AV_LOG_ERROR,
NULL              294 fftools/ffmpeg_hw.c             return NULL;
NULL              307 fftools/ffmpeg_hw.c     HWDevice *dev = NULL;
NULL              343 fftools/ffmpeg_hw.c                 err = hw_device_init_from_type(type, NULL, &dev);
NULL              422 fftools/ffmpeg_hw.c     HWDevice *dev = NULL;
NULL              423 fftools/ffmpeg_hw.c     AVBufferRef *frames_ref = NULL;
NULL              433 fftools/ffmpeg_hw.c             frames_ref = NULL;
NULL              477 fftools/ffmpeg_hw.c     AVFrame *output = NULL;
NULL              539 fftools/ffmpeg_hw.c         dev = NULL;
NULL               54 fftools/ffmpeg_opt.c static const char *opt_name_codec_names[]               = {"c", "codec", "acodec", "vcodec", "scodec", "dcodec", NULL};
NULL               55 fftools/ffmpeg_opt.c static const char *opt_name_audio_channels[]            = {"ac", NULL};
NULL               56 fftools/ffmpeg_opt.c static const char *opt_name_audio_sample_rate[]         = {"ar", NULL};
NULL               57 fftools/ffmpeg_opt.c static const char *opt_name_frame_rates[]               = {"r", NULL};
NULL               58 fftools/ffmpeg_opt.c static const char *opt_name_frame_sizes[]               = {"s", NULL};
NULL               59 fftools/ffmpeg_opt.c static const char *opt_name_frame_pix_fmts[]            = {"pix_fmt", NULL};
NULL               60 fftools/ffmpeg_opt.c static const char *opt_name_ts_scale[]                  = {"itsscale", NULL};
NULL               61 fftools/ffmpeg_opt.c static const char *opt_name_hwaccels[]                  = {"hwaccel", NULL};
NULL               62 fftools/ffmpeg_opt.c static const char *opt_name_hwaccel_devices[]           = {"hwaccel_device", NULL};
NULL               63 fftools/ffmpeg_opt.c static const char *opt_name_hwaccel_output_formats[]    = {"hwaccel_output_format", NULL};
NULL               64 fftools/ffmpeg_opt.c static const char *opt_name_autorotate[]                = {"autorotate", NULL};
NULL               65 fftools/ffmpeg_opt.c static const char *opt_name_max_frames[]                = {"frames", "aframes", "vframes", "dframes", NULL};
NULL               66 fftools/ffmpeg_opt.c static const char *opt_name_bitstream_filters[]         = {"bsf", "absf", "vbsf", NULL};
NULL               67 fftools/ffmpeg_opt.c static const char *opt_name_codec_tags[]                = {"tag", "atag", "vtag", "stag", NULL};
NULL               68 fftools/ffmpeg_opt.c static const char *opt_name_sample_fmts[]               = {"sample_fmt", NULL};
NULL               69 fftools/ffmpeg_opt.c static const char *opt_name_qscale[]                    = {"q", "qscale", NULL};
NULL               70 fftools/ffmpeg_opt.c static const char *opt_name_forced_key_frames[]         = {"forced_key_frames", NULL};
NULL               71 fftools/ffmpeg_opt.c static const char *opt_name_force_fps[]                 = {"force_fps", NULL};
NULL               72 fftools/ffmpeg_opt.c static const char *opt_name_frame_aspect_ratios[]       = {"aspect", NULL};
NULL               73 fftools/ffmpeg_opt.c static const char *opt_name_rc_overrides[]              = {"rc_override", NULL};
NULL               74 fftools/ffmpeg_opt.c static const char *opt_name_intra_matrices[]            = {"intra_matrix", NULL};
NULL               75 fftools/ffmpeg_opt.c static const char *opt_name_inter_matrices[]            = {"inter_matrix", NULL};
NULL               76 fftools/ffmpeg_opt.c static const char *opt_name_chroma_intra_matrices[]     = {"chroma_intra_matrix", NULL};
NULL               77 fftools/ffmpeg_opt.c static const char *opt_name_top_field_first[]           = {"top", NULL};
NULL               78 fftools/ffmpeg_opt.c static const char *opt_name_presets[]                   = {"pre", "apre", "vpre", "spre", NULL};
NULL               79 fftools/ffmpeg_opt.c static const char *opt_name_copy_initial_nonkeyframes[] = {"copyinkfr", NULL};
NULL               80 fftools/ffmpeg_opt.c static const char *opt_name_copy_prior_start[]          = {"copypriorss", NULL};
NULL               81 fftools/ffmpeg_opt.c static const char *opt_name_filters[]                   = {"filter", "af", "vf", NULL};
NULL               82 fftools/ffmpeg_opt.c static const char *opt_name_filter_scripts[]            = {"filter_script", NULL};
NULL               83 fftools/ffmpeg_opt.c static const char *opt_name_reinit_filters[]            = {"reinit_filter", NULL};
NULL               84 fftools/ffmpeg_opt.c static const char *opt_name_fix_sub_duration[]          = {"fix_sub_duration", NULL};
NULL               85 fftools/ffmpeg_opt.c static const char *opt_name_canvas_sizes[]              = {"canvas_size", NULL};
NULL               86 fftools/ffmpeg_opt.c static const char *opt_name_pass[]                      = {"pass", NULL};
NULL               87 fftools/ffmpeg_opt.c static const char *opt_name_passlogfiles[]              = {"passlogfile", NULL};
NULL               88 fftools/ffmpeg_opt.c static const char *opt_name_max_muxing_queue_size[]     = {"max_muxing_queue_size", NULL};
NULL               89 fftools/ffmpeg_opt.c static const char *opt_name_guess_layout_max[]          = {"guess_layout_max", NULL};
NULL               90 fftools/ffmpeg_opt.c static const char *opt_name_apad[]                      = {"apad", NULL};
NULL               91 fftools/ffmpeg_opt.c static const char *opt_name_discard[]                   = {"discard", NULL};
NULL               92 fftools/ffmpeg_opt.c static const char *opt_name_disposition[]               = {"disposition", NULL};
NULL               93 fftools/ffmpeg_opt.c static const char *opt_name_time_bases[]                = {"time_base", NULL};
NULL               94 fftools/ffmpeg_opt.c static const char *opt_name_enc_time_bases[]            = {"enc_time_base", NULL};
NULL              102 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_WARNING, "Multiple %s options specified for stream %d, only the last option '-%s%s%s "SPECIFIER_OPT_FMT_##type"' will be used.\n",\
NULL              247 fftools/ffmpeg_opt.c     AVDictionaryEntry *e = NULL;
NULL              248 fftools/ffmpeg_opt.c     AVDictionary    *ret = NULL;
NULL              265 fftools/ffmpeg_opt.c         { "abort_on"           , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX,           .unit = "flags" },
NULL              266 fftools/ffmpeg_opt.c         { "empty_output"       , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = ABORT_ON_FLAG_EMPTY_OUTPUT        }, .unit = "flags" },
NULL              267 fftools/ffmpeg_opt.c         { "empty_output_stream", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = ABORT_ON_FLAG_EMPTY_OUTPUT_STREAM }, .unit = "flags" },
NULL              268 fftools/ffmpeg_opt.c         { NULL },
NULL              283 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_ERROR, "Option '%s' was removed. "
NULL              292 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_WARNING, "This option is deprecated, use -channel.\n");
NULL              298 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_WARNING, "This option is deprecated, use -standard.\n");
NULL              329 fftools/ffmpeg_opt.c     StreamMap *m = NULL;
NULL              349 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid sync file index: %d.\n", sync_file_idx);
NULL              361 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Sync stream specification in map %s does not "
NULL              366 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Sync stream specification in map %s matches a disabled input "
NULL              380 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Invalid output link label: %s.\n", map);
NULL              388 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid input file index: %d.\n", file_idx);
NULL              428 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_VERBOSE, "Stream map '%s' matches no streams; ignoring.\n", arg);
NULL              430 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Stream map '%s' matches disabled streams.\n"
NULL              434 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Stream map '%s' matches no streams.\n"
NULL              483 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Syntax error, mapchan usage: "
NULL              493 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "mapchan: invalid input file index: %d\n",
NULL              499 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "mapchan: invalid input file stream index #%d.%d\n",
NULL              505 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "mapchan: stream #%d.%d is not an audio stream.\n",
NULL              515 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_VERBOSE, "mapchan: invalid audio channel #%d.%d.%d\n",
NULL              518 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL,  "mapchan: invalid audio channel #%d.%d.%d\n"
NULL              545 fftools/ffmpeg_opt.c     err = hw_device_init_from_string(tmp, NULL);
NULL              562 fftools/ffmpeg_opt.c         return hw_device_init_from_string(arg, NULL);
NULL              569 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Only one filter device can be used.\n");
NULL              574 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Invalid filter device %s.\n", arg);
NULL              596 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Invalid metadata specifier %s.\n", arg);
NULL              604 fftools/ffmpeg_opt.c                 *index = strtol(++arg, NULL, 0);
NULL              607 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid metadata type %c.\n", *arg);
NULL              616 fftools/ffmpeg_opt.c     AVDictionary **meta_in = NULL;
NULL              617 fftools/ffmpeg_opt.c     AVDictionary **meta_out = NULL;
NULL              620 fftools/ffmpeg_opt.c     const char *istream_spec = NULL, *ostream_spec = NULL;
NULL              649 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Invalid %s index %d while processing metadata maps.\n",\
NULL              685 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Stream specifier %s does not match  any streams.\n", istream_spec);
NULL              714 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_WARNING, "%s is deprecated, set the 'creation_time' metadata "
NULL              733 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_VERBOSE, "Matched %s '%s' for codec '%s'.\n",
NULL              738 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Unknown %s '%s'\n", codec_string, name);
NULL              742 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Invalid %s type '%s'\n", codec_string, name);
NULL              750 fftools/ffmpeg_opt.c     char *codec_name = NULL;
NULL              771 fftools/ffmpeg_opt.c         char *framerate = NULL, *hwaccel_device = NULL;
NULL              772 fftools/ffmpeg_opt.c         const char *hwaccel = NULL;
NULL              773 fftools/ffmpeg_opt.c         char *hwaccel_output_format = NULL;
NULL              774 fftools/ffmpeg_opt.c         char *codec_tag = NULL;
NULL              776 fftools/ffmpeg_opt.c         char *discard_str = NULL;
NULL              778 fftools/ffmpeg_opt.c         const AVOption *discard_opt = av_opt_find(&cc, "skip_frame", NULL, 0, 0);
NULL              824 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Error parsing discard %s.\n",
NULL              833 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Error allocating the decoder context.\n");
NULL              839 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Error initializing the decoder context.\n");
NULL              866 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_ERROR, "Error parsing framerate %s.\n",
NULL              879 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_WARNING,
NULL              887 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Unrecognised hwaccel output "
NULL              922 fftools/ffmpeg_opt.c                         av_log(NULL, AV_LOG_FATAL, "Unrecognized hwaccel: %s.\n",
NULL              924 fftools/ffmpeg_opt.c                         av_log(NULL, AV_LOG_FATAL, "Supported hwaccels: ");
NULL              928 fftools/ffmpeg_opt.c                             av_log(NULL, AV_LOG_FATAL, "%s ",
NULL              930 fftools/ffmpeg_opt.c                         av_log(NULL, AV_LOG_FATAL, "\n");
NULL              953 fftools/ffmpeg_opt.c             char *canvas_size = NULL;
NULL              960 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Invalid canvas size: %s.\n", canvas_size);
NULL              974 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Error initializing the decoder context.\n");
NULL              997 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Not overwriting - exiting\n");
NULL             1003 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "File '%s' already exists. Exiting.\n", filename);
NULL             1015 fftools/ffmpeg_opt.c                  av_log(NULL, AV_LOG_FATAL, "Output %s same as Input #%d - exiting\n", filename, i);
NULL             1016 fftools/ffmpeg_opt.c                  av_log(NULL, AV_LOG_WARNING, "FFmpeg cannot edit existing files in-place.\n");
NULL             1026 fftools/ffmpeg_opt.c     AVIOContext *out = NULL;
NULL             1030 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "No extradata to dump in stream #%d:%d.\n",
NULL             1034 fftools/ffmpeg_opt.c     if (!*filename && (e = av_dict_get(st->metadata, "filename", NULL, 0)))
NULL             1037 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "No filename specified and no 'filename' tag"
NULL             1044 fftools/ffmpeg_opt.c     if ((ret = avio_open2(&out, filename, AVIO_FLAG_WRITE, &int_cb, NULL)) < 0) {
NULL             1045 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Could not open file %s for writing.\n",
NULL             1059 fftools/ffmpeg_opt.c     AVInputFormat *file_iformat = NULL;
NULL             1062 fftools/ffmpeg_opt.c     AVDictionary *unused_opts = NULL;
NULL             1063 fftools/ffmpeg_opt.c     AVDictionaryEntry *e = NULL;
NULL             1064 fftools/ffmpeg_opt.c     char *   video_codec_name = NULL;
NULL             1065 fftools/ffmpeg_opt.c     char *   audio_codec_name = NULL;
NULL             1066 fftools/ffmpeg_opt.c     char *subtitle_codec_name = NULL;
NULL             1067 fftools/ffmpeg_opt.c     char *    data_codec_name = NULL;
NULL             1072 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "-t and -to cannot be used together; using -t.\n");
NULL             1078 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "-to value smaller than -ss; aborting.\n");
NULL             1087 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Unknown input format: '%s'\n", o->format);
NULL             1112 fftools/ffmpeg_opt.c             av_opt_find(&file_iformat->priv_class, "channels", NULL, 0,
NULL             1121 fftools/ffmpeg_opt.c             av_opt_find(&file_iformat->priv_class, "framerate", NULL, 0,
NULL             1157 fftools/ffmpeg_opt.c     if (!av_dict_get(o->g->format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE)) {
NULL             1166 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Did you mean file:%s?\n", filename);
NULL             1170 fftools/ffmpeg_opt.c         av_dict_set(&o->g->format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE);
NULL             1191 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "%s: could not find codec parameters\n", filename);
NULL             1200 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "Cannot use -ss and -sseof both, using -ss for %s\n", filename);
NULL             1206 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "-sseof value must be negative; aborting\n");
NULL             1212 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_WARNING, "-sseof value seeks to before start of file %s; ignored\n", filename);
NULL             1216 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_WARNING, "Cannot use -sseof, duration of %s not known\n", filename);
NULL             1242 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_WARNING, "%s: could not seek to position %0.3f\n",
NULL             1278 fftools/ffmpeg_opt.c         e = NULL;
NULL             1281 fftools/ffmpeg_opt.c             av_dict_set(&unused_opts, e->key, NULL, 0);
NULL             1284 fftools/ffmpeg_opt.c     e = NULL;
NULL             1287 fftools/ffmpeg_opt.c         const AVOption *option = av_opt_find(&class, e->key, NULL, 0,
NULL             1290 fftools/ffmpeg_opt.c         const AVOption *foption = av_opt_find(&fclass, e->key, NULL, 0,
NULL             1297 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Codec AVOption %s (%s) specified for "
NULL             1304 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "Codec AVOption %s (%s) specified for "
NULL             1336 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Could not alloc buffer for reading preset.\n");
NULL             1363 fftools/ffmpeg_opt.c             ret = avio_open2(s, filename, AVIO_FLAG_READ, &int_cb, NULL);
NULL             1368 fftools/ffmpeg_opt.c             ret = avio_open2(s, filename, AVIO_FLAG_READ, &int_cb, NULL);
NULL             1377 fftools/ffmpeg_opt.c     char *codec_name = NULL;
NULL             1382 fftools/ffmpeg_opt.c             ost->st->codecpar->codec_id = av_guess_codec(s->oformat, NULL, s->url,
NULL             1383 fftools/ffmpeg_opt.c                                                          NULL, ost->st->codecpar->codec_type);
NULL             1386 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Automatic encoder selection failed for "
NULL             1412 fftools/ffmpeg_opt.c     AVStream *st = avformat_new_stream(oc, NULL);
NULL             1414 fftools/ffmpeg_opt.c     const char *bsfs = NULL, *time_base = NULL;
NULL             1415 fftools/ffmpeg_opt.c     char *next, *codec_tag = NULL;
NULL             1420 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Could not alloc stream.\n");
NULL             1440 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Error selecting an encoder for stream "
NULL             1447 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Error allocating the encoding context.\n");
NULL             1454 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Error allocating the encoding parameters.\n");
NULL             1459 fftools/ffmpeg_opt.c         AVIOContext *s = NULL;
NULL             1460 fftools/ffmpeg_opt.c         char *buf = NULL, *arg = NULL, *preset = NULL;
NULL             1473 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Invalid line found in the preset file.\n");
NULL             1483 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL,
NULL             1489 fftools/ffmpeg_opt.c         ost->encoder_opts = filter_codec_opts(o->g->codec_opts, AV_CODEC_ID_NONE, oc, st, NULL);
NULL             1499 fftools/ffmpeg_opt.c         if (av_parse_ratio(&q, time_base, INT_MAX, 0, NULL) < 0 ||
NULL             1501 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid time base: %s\n", time_base);
NULL             1510 fftools/ffmpeg_opt.c         if (av_parse_ratio(&q, time_base, INT_MAX, 0, NULL) < 0 ||
NULL             1512 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid time base: %s\n", time_base);
NULL             1523 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_WARNING, "Applying unspecific -frames to non video streams, maybe you meant -vframes ?\n");
NULL             1535 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Error parsing bitstream filter sequence '%s': %s\n", bsfs, av_err2str(ret));
NULL             1598 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Syntax error in matrix \"%s\" at coeff %d\n", str, i);
NULL             1608 fftools/ffmpeg_opt.c     AVIOContext *pb      = NULL;
NULL             1609 fftools/ffmpeg_opt.c     AVIOContext *dyn_buf = NULL;
NULL             1614 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Error opening file %s.\n", filename);
NULL             1615 fftools/ffmpeg_opt.c         return NULL;
NULL             1621 fftools/ffmpeg_opt.c         return NULL;
NULL             1630 fftools/ffmpeg_opt.c         return NULL;
NULL             1640 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Both -filter and -filter_script set for "
NULL             1658 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR,
NULL             1673 fftools/ffmpeg_opt.c     char *frame_rate = NULL, *frame_aspect_ratio = NULL;
NULL             1681 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Invalid framerate value: %s\n", frame_rate);
NULL             1685 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Using -vsync 0 and -r can produce invalid output files\n");
NULL             1690 fftools/ffmpeg_opt.c         if (av_parse_ratio(&q, frame_aspect_ratio, 255, 0, NULL) < 0 ||
NULL             1692 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid aspect ratio: %s\n", frame_aspect_ratio);
NULL             1702 fftools/ffmpeg_opt.c         const char *p = NULL;
NULL             1703 fftools/ffmpeg_opt.c         char *frame_size = NULL;
NULL             1704 fftools/ffmpeg_opt.c         char *frame_pix_fmt = NULL;
NULL             1705 fftools/ffmpeg_opt.c         char *intra_matrix = NULL, *inter_matrix = NULL;
NULL             1706 fftools/ffmpeg_opt.c         char *chroma_intra_matrix = NULL;
NULL             1712 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid frame size: %s.\n", frame_size);
NULL             1721 fftools/ffmpeg_opt.c                 frame_pix_fmt = NULL;
NULL             1724 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Unknown pixel format requested: %s.\n", frame_pix_fmt);
NULL             1734 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Could not allocate memory for intra matrix.\n");
NULL             1743 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Could not allocate memory for intra matrix.\n");
NULL             1752 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Could not allocate memory for inter matrix.\n");
NULL             1763 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "error parsing rc_override\n");
NULL             1770 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Could not (re)allocate memory for rc_override.\n");
NULL             1824 fftools/ffmpeg_opt.c                         av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
NULL             1833 fftools/ffmpeg_opt.c                         av_log(NULL, AV_LOG_FATAL,
NULL             1883 fftools/ffmpeg_opt.c         char *sample_fmt = NULL;
NULL             1890 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid sample format '%s'\n", sample_fmt);
NULL             1911 fftools/ffmpeg_opt.c                     ist = NULL;
NULL             1913 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Cannot determine input stream for channel mapping %d.%d\n",
NULL             1945 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Data stream encoding not supported yet (only streamcopy)\n");
NULL             1958 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Unknown stream encoding not supported yet (only streamcopy)\n");
NULL             1988 fftools/ffmpeg_opt.c         char *frame_size = NULL;
NULL             1992 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid frame size: %s.\n", frame_size);
NULL             2011 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL,
NULL             2075 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Only video and audio filters are supported "
NULL             2087 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Streamcopy requested for output stream %d:%d, "
NULL             2095 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR,
NULL             2127 fftools/ffmpeg_opt.c     AVDictionary *unused_opts = NULL;
NULL             2128 fftools/ffmpeg_opt.c     AVDictionaryEntry *e = NULL;
NULL             2133 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "-t and -to cannot be used together; using -t.\n");
NULL             2139 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "-to value smaller than -ss; aborting.\n");
NULL             2162 fftools/ffmpeg_opt.c     err = avformat_alloc_output_context2(&oc, NULL, o->format, filename);
NULL             2174 fftools/ffmpeg_opt.c     e = av_dict_get(o->g->format_opts, "fflags", NULL, 0);
NULL             2176 fftools/ffmpeg_opt.c         const AVOption *o = av_opt_find(oc, "fflags", NULL, 0, 0);
NULL             2203 fftools/ffmpeg_opt.c         char *subtitle_codec_name = NULL;
NULL             2207 fftools/ffmpeg_opt.c         if (!o->video_disable && av_guess_codec(oc->oformat, NULL, filename, NULL, AVMEDIA_TYPE_VIDEO) != AV_CODEC_ID_NONE) {
NULL             2232 fftools/ffmpeg_opt.c         if (!o->audio_disable && av_guess_codec(oc->oformat, NULL, filename, NULL, AVMEDIA_TYPE_AUDIO) != AV_CODEC_ID_NONE) {
NULL             2258 fftools/ffmpeg_opt.c                     AVCodecDescriptor const *output_descriptor = NULL;
NULL             2283 fftools/ffmpeg_opt.c             enum AVCodecID codec_id = av_guess_codec(oc->oformat, NULL, filename, NULL, AVMEDIA_TYPE_DATA);
NULL             2301 fftools/ffmpeg_opt.c                 OutputFilter *ofilter = NULL;
NULL             2316 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Output with label '%s' does not exist "
NULL             2326 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Stream #%d:%d is disabled and cannot be mapped.\n",
NULL             2339 fftools/ffmpeg_opt.c                 ost = NULL;
NULL             2352 fftools/ffmpeg_opt.c                     av_log(NULL, ignore_unknown_streams ? AV_LOG_WARNING : AV_LOG_FATAL,
NULL             2356 fftools/ffmpeg_opt.c                         av_log(NULL, AV_LOG_FATAL,
NULL             2377 fftools/ffmpeg_opt.c         if ((err = avio_open2(&pb, o->attachments[i], AVIO_FLAG_READ, &int_cb, NULL)) < 0) {
NULL             2378 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Could not open attachment file %s.\n",
NULL             2383 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Could not get size of the attachment %s.\n",
NULL             2389 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Attachment %s too large.\n",
NULL             2413 fftools/ffmpeg_opt.c             && (e = av_dict_get(o->g->codec_opts, "flags", NULL, AV_DICT_IGNORE_SUFFIX))
NULL             2422 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Output file #%d does not contain any stream\n", nb_output_files - 1);
NULL             2429 fftools/ffmpeg_opt.c         e = NULL;
NULL             2432 fftools/ffmpeg_opt.c             av_dict_set(&unused_opts, e->key, NULL, 0);
NULL             2435 fftools/ffmpeg_opt.c     e = NULL;
NULL             2438 fftools/ffmpeg_opt.c         const AVOption *option = av_opt_find(&class, e->key, NULL, 0,
NULL             2441 fftools/ffmpeg_opt.c         const AVOption *foption = av_opt_find(&fclass, e->key, NULL, 0,
NULL             2448 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Codec AVOption %s (%s) specified for "
NULL             2459 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "Codec AVOption %s (%s) specified for "
NULL             2480 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_ERROR,
NULL             2560 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR,
NULL             2590 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid input file index %d while processing metadata maps\n", in_file_index);
NULL             2595 fftools/ffmpeg_opt.c                       input_files[in_file_index]->ctx : NULL, o);
NULL             2609 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Invalid input file index %d in chapter mapping.\n",
NULL             2623 fftools/ffmpeg_opt.c             av_dict_set(&oc->metadata, "duration", NULL, 0);
NULL             2624 fftools/ffmpeg_opt.c         av_dict_set(&oc->metadata, "creation_time", NULL, 0);
NULL             2634 fftools/ffmpeg_opt.c                 av_dict_set(&output_streams[i]->st->metadata, "encoder", NULL, 0);
NULL             2662 fftools/ffmpeg_opt.c                 progid = strtol(p2, NULL, 0);
NULL             2680 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL,
NULL             2693 fftools/ffmpeg_opt.c                 int st_num = strtol(p2, NULL, 0);
NULL             2696 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Unknown program key %s.\n", key);
NULL             2713 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "No '=' character in metadata string %s.\n",
NULL             2732 fftools/ffmpeg_opt.c                         av_dict_set(&oc->streams[j]->metadata, o->metadata[i].u.str, *val ? val : NULL, 0);
NULL             2745 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Invalid chapter index %d in metadata specifier.\n", index);
NULL             2752 fftools/ffmpeg_opt.c                     av_log(NULL, AV_LOG_FATAL, "Invalid program index %d in metadata specifier.\n", index);
NULL             2758 fftools/ffmpeg_opt.c                 av_log(NULL, AV_LOG_FATAL, "Invalid metadata specifier %s.\n", o->metadata[i].specifier);
NULL             2761 fftools/ffmpeg_opt.c             av_dict_set(m, o->metadata[i].u.str, *val ? val : NULL, 0);
NULL             2807 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_INFO, "Assuming %s for target.\n", norm == PAL ? "PAL" : "NTSC");
NULL             2811 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Could not determine norm (PAL/NTSC/NTSC-Film) for target.\n");
NULL             2812 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Please prefix target with \"pal-\", \"ntsc-\" or \"film-\",\n");
NULL             2813 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "or set a framerate with \"-r xxx\".\n");
NULL             2824 fftools/ffmpeg_opt.c         opt_default(NULL, "g", norm == PAL ? "15" : "18");
NULL             2826 fftools/ffmpeg_opt.c         opt_default(NULL, "b:v", "1150000");
NULL             2827 fftools/ffmpeg_opt.c         opt_default(NULL, "maxrate:v", "1150000");
NULL             2828 fftools/ffmpeg_opt.c         opt_default(NULL, "minrate:v", "1150000");
NULL             2829 fftools/ffmpeg_opt.c         opt_default(NULL, "bufsize:v", "327680"); // 40*1024*8;
NULL             2831 fftools/ffmpeg_opt.c         opt_default(NULL, "b:a", "224000");
NULL             2835 fftools/ffmpeg_opt.c         opt_default(NULL, "packetsize", "2324");
NULL             2836 fftools/ffmpeg_opt.c         opt_default(NULL, "muxrate", "1411200"); // 2352 * 75 * 8;
NULL             2853 fftools/ffmpeg_opt.c         opt_default(NULL, "g", norm == PAL ? "15" : "18");
NULL             2855 fftools/ffmpeg_opt.c         opt_default(NULL, "b:v", "2040000");
NULL             2856 fftools/ffmpeg_opt.c         opt_default(NULL, "maxrate:v", "2516000");
NULL             2857 fftools/ffmpeg_opt.c         opt_default(NULL, "minrate:v", "0"); // 1145000;
NULL             2858 fftools/ffmpeg_opt.c         opt_default(NULL, "bufsize:v", "1835008"); // 224*1024*8;
NULL             2859 fftools/ffmpeg_opt.c         opt_default(NULL, "scan_offset", "1");
NULL             2861 fftools/ffmpeg_opt.c         opt_default(NULL, "b:a", "224000");
NULL             2864 fftools/ffmpeg_opt.c         opt_default(NULL, "packetsize", "2324");
NULL             2875 fftools/ffmpeg_opt.c         opt_default(NULL, "g", norm == PAL ? "15" : "18");
NULL             2877 fftools/ffmpeg_opt.c         opt_default(NULL, "b:v", "6000000");
NULL             2878 fftools/ffmpeg_opt.c         opt_default(NULL, "maxrate:v", "9000000");
NULL             2879 fftools/ffmpeg_opt.c         opt_default(NULL, "minrate:v", "0"); // 1500000;
NULL             2880 fftools/ffmpeg_opt.c         opt_default(NULL, "bufsize:v", "1835008"); // 224*1024*8;
NULL             2882 fftools/ffmpeg_opt.c         opt_default(NULL, "packetsize", "2048");  // from www.mpucoder.com: DVD sectors contain 2048 bytes of data, this is also the size of one pack.
NULL             2883 fftools/ffmpeg_opt.c         opt_default(NULL, "muxrate", "10080000"); // from mplex project: data_rate = 1260000. mux_rate = data_rate * 8
NULL             2885 fftools/ffmpeg_opt.c         opt_default(NULL, "b:a", "448000");
NULL             2901 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Unknown target: %s\n", arg);
NULL             2921 fftools/ffmpeg_opt.c     time_t today2 = time(NULL);
NULL             2925 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Unable to get current time: %s\n", strerror(errno));
NULL             2931 fftools/ffmpeg_opt.c     return opt_vstats_file(NULL, opt, filename);
NULL             2957 fftools/ffmpeg_opt.c     codec_opts = NULL;
NULL             2958 fftools/ffmpeg_opt.c     format_opts = NULL;
NULL             2960 fftools/ffmpeg_opt.c     ret = opt_default(NULL, opt, arg);
NULL             2975 fftools/ffmpeg_opt.c     FILE *f=NULL;
NULL             2977 fftools/ffmpeg_opt.c     const char *codec_name = NULL;
NULL             2981 fftools/ffmpeg_opt.c     MATCH_PER_TYPE_OPT(codec_names, str, codec_name, NULL, tmp_line);
NULL             2985 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "Please use -preset <speed> -qp 0\n");
NULL             2987 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "File for preset '%s' not found\n", arg);
NULL             2999 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "%s: Invalid syntax: '%s'\n", filename, line);
NULL             3002 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_DEBUG, "ffpreset[%s]: set '%s' = '%s'\n", filename, key, value);
NULL             3009 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_FATAL, "%s: Invalid option or argument: '%s', parsed as '%s' = '%s'\n",
NULL             3040 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "Please use -b:a or -b:v, -b is ambiguous\n");
NULL             3054 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "Please use -q:a or -q:v, -qscale is ambiguous\n");
NULL             3069 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_WARNING, "Please use -profile:a or -profile:v, -profile is ambiguous\n");
NULL             3126 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Unknown channel layout: %s\n", arg);
NULL             3201 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Unknown help option '%s'.\n", opt);
NULL             3263 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_INFO, "Hyper fast Audio and Video encoder\n");
NULL             3264 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_INFO, "usage: %s [options] [[infile options] -i infile]... {[outfile options] outfile}...\n", program_name);
NULL             3265 fftools/ffmpeg_opt.c     av_log(NULL, AV_LOG_INFO, "\n");
NULL             3274 fftools/ffmpeg_opt.c     [GROUP_OUTFILE] = { "output url",  NULL, OPT_OUTPUT },
NULL             3292 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Error parsing options for %s file "
NULL             3298 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_DEBUG, "Opening an %s file: %s.\n", inout, g->arg);
NULL             3302 fftools/ffmpeg_opt.c             av_log(NULL, AV_LOG_ERROR, "Error opening %s file %s.\n",
NULL             3306 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_DEBUG, "Successfully opened the file.\n");
NULL             3324 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Error splitting the argument list: ");
NULL             3329 fftools/ffmpeg_opt.c     ret = parse_optgroup(NULL, &octx.global_opts);
NULL             3331 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Error parsing global options: ");
NULL             3341 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Error opening input files: ");
NULL             3348 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Error initializing complex filters.\n");
NULL             3355 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "Error opening output files: ");
NULL             3365 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_FATAL, "%s\n", error);
NULL             3372 fftools/ffmpeg_opt.c     AVIOContext *avio = NULL;
NULL             3377 fftools/ffmpeg_opt.c     ret = avio_open2(&avio, arg, AVIO_FLAG_WRITE, &int_cb, NULL);
NULL             3379 fftools/ffmpeg_opt.c         av_log(NULL, AV_LOG_ERROR, "Failed to open progress URL \"%s\": %s\n",
NULL             3775 fftools/ffmpeg_opt.c     { NULL, },
NULL               32 fftools/ffmpeg_qsv.c char *qsv_device = NULL;
NULL               50 fftools/ffmpeg_qsv.c     AVDictionary *dict = NULL;
NULL               61 fftools/ffmpeg_qsv.c         av_log(NULL, AV_LOG_ERROR, "Error creating a QSV device\n");
NULL              102 fftools/ffmpeg_qsv.c         av_log(NULL, AV_LOG_ERROR, "Error initializing a QSV frame pool\n");
NULL               62 fftools/ffmpeg_videotoolbox.c         av_log(NULL, AV_LOG_ERROR,
NULL               76 fftools/ffmpeg_videotoolbox.c         av_log(NULL, AV_LOG_ERROR, "Error locking the pixel buffer.\n");
NULL              112 fftools/ffmpeg_videotoolbox.c     ist->hwaccel_uninit        = NULL;
NULL              113 fftools/ffmpeg_videotoolbox.c     ist->hwaccel_retrieve_data = NULL;
NULL              161 fftools/ffmpeg_videotoolbox.c         av_log(NULL, loglevel, "Error creating Videotoolbox decoder.\n");
NULL              352 fftools/ffplay.c static const char **vfilters_list = NULL;
NULL              354 fftools/ffplay.c static char *afilters = NULL;
NULL              439 fftools/ffplay.c     pkt1->next = NULL;
NULL              475 fftools/ffplay.c     pkt->data = NULL;
NULL              487 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "SDL_CreateMutex(): %s\n", SDL_GetError());
NULL              492 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "SDL_CreateCond(): %s\n", SDL_GetError());
NULL              509 fftools/ffplay.c     q->last_pkt = NULL;
NULL              510 fftools/ffplay.c     q->first_pkt = NULL;
NULL              561 fftools/ffplay.c                 q->last_pkt = NULL;
NULL              699 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "SDL_CreateMutex(): %s\n", SDL_GetError());
NULL              703 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "SDL_CreateCond(): %s\n", SDL_GetError());
NULL              760 fftools/ffplay.c         return NULL;
NULL              776 fftools/ffplay.c         return NULL;
NULL              826 fftools/ffplay.c     SDL_WaitThread(d->decoder_tid, NULL);
NULL              827 fftools/ffplay.c     d->decoder_tid = NULL;
NULL              856 fftools/ffplay.c             if (SDL_LockTexture(*texture, NULL, &pixels, &pitch) < 0)
NULL              861 fftools/ffplay.c         av_log(NULL, AV_LOG_VERBOSE, "Created %dx%d texture with %s.\n", new_width, new_height, SDL_GetPixelFormatName(new_format));
NULL              923 fftools/ffplay.c                 AV_PIX_FMT_BGRA, sws_flags, NULL, NULL, NULL);
NULL              924 fftools/ffplay.c             if (*img_convert_ctx != NULL) {
NULL              927 fftools/ffplay.c                 if (!SDL_LockTexture(*tex, NULL, (void **)pixels, pitch)) {
NULL              933 fftools/ffplay.c                 av_log(NULL, AV_LOG_FATAL, "Cannot initialize the conversion context\n");
NULL              939 fftools/ffplay.c                 ret = SDL_UpdateYUVTexture(*tex, NULL, frame->data[0], frame->linesize[0],
NULL              943 fftools/ffplay.c                 ret = SDL_UpdateYUVTexture(*tex, NULL, frame->data[0] + frame->linesize[0] * (frame->height                    - 1), -frame->linesize[0],
NULL              947 fftools/ffplay.c                 av_log(NULL, AV_LOG_ERROR, "Mixed negative and positive linesizes are not supported.\n");
NULL              953 fftools/ffplay.c                 ret = SDL_UpdateTexture(*tex, NULL, frame->data[0] + frame->linesize[0] * (frame->height - 1), -frame->linesize[0]);
NULL              955 fftools/ffplay.c                 ret = SDL_UpdateTexture(*tex, NULL, frame->data[0], frame->linesize[0]);
NULL              981 fftools/ffplay.c     Frame *sp = NULL;
NULL             1012 fftools/ffplay.c                             0, NULL, NULL, NULL);
NULL             1014 fftools/ffplay.c                             av_log(NULL, AV_LOG_FATAL, "Cannot initialize the conversion context\n");
NULL             1026 fftools/ffplay.c                 sp = NULL;
NULL             1040 fftools/ffplay.c     SDL_RenderCopyEx(renderer, is->vid_texture, NULL, &rect, 0, NULL, vp->flip_v ? SDL_FLIP_VERTICAL : 0);
NULL             1041 fftools/ffplay.c     set_sdl_yuv_conversion_mode(NULL);
NULL             1044 fftools/ffplay.c         SDL_RenderCopy(renderer, is->sub_texture, NULL, &rect);
NULL             1163 fftools/ffplay.c             av_log(NULL, AV_LOG_ERROR, "Failed to allocate buffers for RDFT, switching to waves display\n");
NULL             1199 fftools/ffplay.c             SDL_RenderCopy(renderer, s->vis_texture, NULL, NULL);
NULL             1225 fftools/ffplay.c         is->audio_buf = NULL;
NULL             1230 fftools/ffplay.c             is->rdft = NULL;
NULL             1249 fftools/ffplay.c         is->audio_st = NULL;
NULL             1253 fftools/ffplay.c         is->video_st = NULL;
NULL             1257 fftools/ffplay.c         is->subtitle_st = NULL;
NULL             1269 fftools/ffplay.c     SDL_WaitThread(is->read_tid, NULL);
NULL             1319 fftools/ffplay.c     av_log(NULL, AV_LOG_QUIET, "%s", "");
NULL             1553 fftools/ffplay.c     av_log(NULL, AV_LOG_TRACE, "video: delay=%0.3f A-V=%f\n",
NULL             1656 fftools/ffplay.c                             sp2 = NULL;
NULL             1737 fftools/ffplay.c                 av_log(NULL, AV_LOG_INFO, "%s", buf.str);
NULL             1740 fftools/ffplay.c             av_bprint_finalize(&buf, NULL);
NULL             1782 fftools/ffplay.c     if ((got_picture = decoder_decode_frame(&is->viddec, frame, NULL)) < 0)
NULL             1817 fftools/ffplay.c     AVFilterInOut *outputs = NULL, *inputs = NULL;
NULL             1830 fftools/ffplay.c         outputs->next       = NULL;
NULL             1835 fftools/ffplay.c         inputs->next        = NULL;
NULL             1837 fftools/ffplay.c         if ((ret = avfilter_graph_parse_ptr(graph, filtergraph, &inputs, &outputs, NULL)) < 0)
NULL             1848 fftools/ffplay.c     ret = avfilter_graph_config(graph, NULL);
NULL             1861 fftools/ffplay.c     AVFilterContext *filt_src = NULL, *filt_out = NULL, *last_filter = NULL;
NULL             1863 fftools/ffplay.c     AVRational fr = av_guess_frame_rate(is->ic, is->video_st, NULL);
NULL             1864 fftools/ffplay.c     AVDictionaryEntry *e = NULL;
NULL             1899 fftools/ffplay.c                                             "ffplay_buffer", buffersrc_args, NULL,
NULL             1905 fftools/ffplay.c                                        "ffplay_buffersink", NULL, NULL, graph);
NULL             1921 fftools/ffplay.c                                        "ffplay_" name, arg, NULL, graph);    \
NULL             1938 fftools/ffplay.c             INSERT_FILT("hflip", NULL);
NULL             1939 fftools/ffplay.c             INSERT_FILT("vflip", NULL);
NULL             1965 fftools/ffplay.c     AVFilterContext *filt_asrc = NULL, *filt_asink = NULL;
NULL             1967 fftools/ffplay.c     AVDictionaryEntry *e = NULL;
NULL             1993 fftools/ffplay.c                                        asrc_args, NULL, is->agraph);
NULL             2000 fftools/ffplay.c                                        NULL, NULL, is->agraph);
NULL             2055 fftools/ffplay.c         if ((got_frame = decoder_decode_frame(&is->auddec, frame, NULL)) < 0)
NULL             2075 fftools/ffplay.c                     av_log(NULL, AV_LOG_DEBUG,
NULL             2129 fftools/ffplay.c         av_log(NULL, AV_LOG_ERROR, "SDL_CreateThread(): %s\n", SDL_GetError());
NULL             2143 fftools/ffplay.c     AVRational frame_rate = av_guess_frame_rate(is->ic, is->video_st, NULL);
NULL             2146 fftools/ffplay.c     AVFilterGraph *graph = NULL;
NULL             2147 fftools/ffplay.c     AVFilterContext *filt_out = NULL, *filt_in = NULL;
NULL             2171 fftools/ffplay.c             av_log(NULL, AV_LOG_DEBUG,
NULL             2184 fftools/ffplay.c             if ((ret = configure_video_filters(graph, is, vfilters_list ? vfilters_list[is->vfilter_idx] : NULL, frame)) < 0) {
NULL             2253 fftools/ffplay.c         if ((got_subtitle = decoder_decode_frame(&is->subdec, NULL, &sp->sub)) < 0)
NULL             2323 fftools/ffplay.c                 av_log(NULL, AV_LOG_TRACE, "diff=%f adiff=%f sample_diff=%d apts=%0.3f %f\n",
NULL             2369 fftools/ffplay.c     data_size = av_samples_get_buffer_size(NULL, af->frame->channels,
NULL             2383 fftools/ffplay.c         is->swr_ctx = swr_alloc_set_opts(NULL,
NULL             2386 fftools/ffplay.c                                          0, NULL);
NULL             2388 fftools/ffplay.c             av_log(NULL, AV_LOG_ERROR,
NULL             2405 fftools/ffplay.c         int out_size  = av_samples_get_buffer_size(NULL, is->audio_tgt.channels, out_count, is->audio_tgt.fmt, 0);
NULL             2408 fftools/ffplay.c             av_log(NULL, AV_LOG_ERROR, "av_samples_get_buffer_size() failed\n");
NULL             2414 fftools/ffplay.c                 av_log(NULL, AV_LOG_ERROR, "swr_set_compensation() failed\n");
NULL             2423 fftools/ffplay.c             av_log(NULL, AV_LOG_ERROR, "swr_convert() failed\n");
NULL             2427 fftools/ffplay.c             av_log(NULL, AV_LOG_WARNING, "audio buffer is probably too small\n");
NULL             2470 fftools/ffplay.c                is->audio_buf = NULL;
NULL             2522 fftools/ffplay.c         av_log(NULL, AV_LOG_ERROR, "Invalid sample rate or channel count!\n");
NULL             2532 fftools/ffplay.c     while (!(audio_dev = SDL_OpenAudioDevice(NULL, 0, &wanted_spec, &spec, SDL_AUDIO_ALLOW_FREQUENCY_CHANGE | SDL_AUDIO_ALLOW_CHANNELS_CHANGE))) {
NULL             2533 fftools/ffplay.c         av_log(NULL, AV_LOG_WARNING, "SDL_OpenAudio (%d channels, %d Hz): %s\n",
NULL             2540 fftools/ffplay.c                 av_log(NULL, AV_LOG_ERROR,
NULL             2548 fftools/ffplay.c         av_log(NULL, AV_LOG_ERROR,
NULL             2555 fftools/ffplay.c             av_log(NULL, AV_LOG_ERROR,
NULL             2565 fftools/ffplay.c     audio_hw_params->frame_size = av_samples_get_buffer_size(NULL, audio_hw_params->channels, 1, audio_hw_params->fmt, 1);
NULL             2566 fftools/ffplay.c     audio_hw_params->bytes_per_sec = av_samples_get_buffer_size(NULL, audio_hw_params->channels, audio_hw_params->freq, audio_hw_params->fmt, 1);
NULL             2568 fftools/ffplay.c         av_log(NULL, AV_LOG_ERROR, "av_samples_get_buffer_size failed\n");
NULL             2580 fftools/ffplay.c     const char *forced_codec_name = NULL;
NULL             2581 fftools/ffplay.c     AVDictionary *opts = NULL;
NULL             2582 fftools/ffplay.c     AVDictionaryEntry *t = NULL;
NULL             2591 fftools/ffplay.c     avctx = avcodec_alloc_context3(NULL);
NULL             2610 fftools/ffplay.c         if (forced_codec_name) av_log(NULL, AV_LOG_WARNING,
NULL             2612 fftools/ffplay.c         else                   av_log(NULL, AV_LOG_WARNING,
NULL             2630 fftools/ffplay.c     if (!av_dict_get(opts, "threads", NULL, 0))
NULL             2639 fftools/ffplay.c     if ((t = av_dict_get(opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
NULL             2640 fftools/ffplay.c         av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
NULL             2760 fftools/ffplay.c     AVFormatContext *ic = NULL;
NULL             2772 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "SDL_CreateMutex(): %s\n", SDL_GetError());
NULL             2782 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "Could not allocate context.\n");
NULL             2788 fftools/ffplay.c     if (!av_dict_get(format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE)) {
NULL             2799 fftools/ffplay.c         av_dict_set(&format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE);
NULL             2801 fftools/ffplay.c     if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
NULL             2802 fftools/ffplay.c         av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
NULL             2824 fftools/ffplay.c             av_log(NULL, AV_LOG_WARNING,
NULL             2839 fftools/ffplay.c     if (!window_title && (t = av_dict_get(ic->metadata, "title", NULL, 0)))
NULL             2852 fftools/ffplay.c             av_log(NULL, AV_LOG_WARNING, "%s: could not seek to position %0.3f\n",
NULL             2872 fftools/ffplay.c             av_log(NULL, AV_LOG_ERROR, "Stream specifier %s does not match any %s stream\n", wanted_stream_spec[i], av_get_media_type_string(i));
NULL             2880 fftools/ffplay.c                                 st_index[AVMEDIA_TYPE_VIDEO], -1, NULL, 0);
NULL             2886 fftools/ffplay.c                                 NULL, 0);
NULL             2894 fftools/ffplay.c                                 NULL, 0);
NULL             2900 fftools/ffplay.c         AVRational sar = av_guess_sample_aspect_ratio(ic, st, NULL);
NULL             2922 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "Failed to open file '%s' or configure filtergraph\n",
NULL             2960 fftools/ffplay.c                 av_log(NULL, AV_LOG_ERROR,
NULL             3082 fftools/ffplay.c         return NULL;
NULL             3107 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "SDL_CreateCond(): %s\n", SDL_GetError());
NULL             3116 fftools/ffplay.c         av_log(NULL, AV_LOG_WARNING, "-volume=%d < 0, setting to 0\n", startup_volume);
NULL             3118 fftools/ffplay.c         av_log(NULL, AV_LOG_WARNING, "-volume=%d > 100, setting to 100\n", startup_volume);
NULL             3126 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "SDL_CreateThread(): %s\n", SDL_GetError());
NULL             3129 fftools/ffplay.c         return NULL;
NULL             3140 fftools/ffplay.c     AVProgram *p = NULL;
NULL             3156 fftools/ffplay.c         p = av_find_program_from_stream(ic, NULL, is->video_stream);
NULL             3203 fftools/ffplay.c     av_log(NULL, AV_LOG_INFO, "Switch %s stream from #%d to #%d\n",
NULL             3270 fftools/ffplay.c     av_log(NULL, AV_LOG_VERBOSE, "Seeking to chapter %d.\n", i);
NULL             3443 fftools/ffplay.c                     av_log(NULL, AV_LOG_INFO,
NULL             3459 fftools/ffplay.c                         cur_stream->vis_texture = NULL;
NULL             3477 fftools/ffplay.c     av_log(NULL, AV_LOG_WARNING, "Option -s is deprecated, use -video_size.\n");
NULL             3478 fftools/ffplay.c     return opt_default(NULL, "video_size", arg);
NULL             3497 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "Unknown input format: %s\n", arg);
NULL             3505 fftools/ffplay.c     av_log(NULL, AV_LOG_WARNING, "Option -pix_fmt is deprecated, use -pixel_format.\n");
NULL             3506 fftools/ffplay.c     return opt_default(NULL, "pixel_format", arg);
NULL             3518 fftools/ffplay.c         av_log(NULL, AV_LOG_ERROR, "Unknown value for %s: %s\n", opt, arg);
NULL             3548 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL,
NULL             3562 fftools/ffplay.c        av_log(NULL, AV_LOG_ERROR,
NULL             3573 fftools/ffplay.c        av_log(NULL, AV_LOG_ERROR,
NULL             3635 fftools/ffplay.c     { NULL, },
NULL             3640 fftools/ffplay.c     av_log(NULL, AV_LOG_INFO, "Simple media player\n");
NULL             3641 fftools/ffplay.c     av_log(NULL, AV_LOG_INFO, "usage: %s [options] input_file\n", program_name);
NULL             3642 fftools/ffplay.c     av_log(NULL, AV_LOG_INFO, "\n");
NULL             3704 fftools/ffplay.c     parse_options(NULL, argc, argv, options, opt_input_file);
NULL             3708 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "An input file must be specified\n");
NULL             3709 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL,
NULL             3729 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "Could not initialize SDL - %s\n", SDL_GetError());
NULL             3730 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "(Did you set the DISPLAY variable?)\n");
NULL             3746 fftools/ffplay.c             av_log(NULL, AV_LOG_WARNING, "Your SDL version doesn't support SDL_WINDOW_ALWAYS_ON_TOP. Feature will be inactive.\n");
NULL             3757 fftools/ffplay.c                 av_log(NULL, AV_LOG_WARNING, "Failed to initialize a hardware accelerated renderer: %s\n", SDL_GetError());
NULL             3762 fftools/ffplay.c                     av_log(NULL, AV_LOG_VERBOSE, "Initialized %s renderer.\n", renderer_info.name);
NULL             3766 fftools/ffplay.c             av_log(NULL, AV_LOG_FATAL, "Failed to create window or renderer: %s", SDL_GetError());
NULL             3767 fftools/ffplay.c             do_exit(NULL);
NULL             3773 fftools/ffplay.c         av_log(NULL, AV_LOG_FATAL, "Failed to initialize VideoState!\n");
NULL             3774 fftools/ffplay.c         do_exit(NULL);
NULL              259 fftools/ffprobe.c static AVInputFormat *iformat = NULL;
NULL              304 fftools/ffprobe.c     AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
NULL              325 fftools/ffprobe.c         log_buffer[log_buffer_size].context_name= avc ? av_strdup(avc->item_name(ptr)) : NULL;
NULL              493 fftools/ffprobe.c     { "ignore",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_IGNORE},  .unit = "sv" },
NULL              494 fftools/ffprobe.c     { "replace", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_REPLACE}, .unit = "sv" },
NULL              495 fftools/ffprobe.c     { "fail",    NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_FAIL},    .unit = "sv" },
NULL              498 fftools/ffprobe.c     { NULL }
NULL              506 fftools/ffprobe.c     return NULL;
NULL              527 fftools/ffprobe.c         av_bprint_finalize(&(*wctx)->section_pbuf[i], NULL);
NULL              575 fftools/ffprobe.c         AVDictionary *opts = NULL;
NULL              576 fftools/ffprobe.c         AVDictionaryEntry *opt = NULL;
NULL              677 fftools/ffprobe.c     if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
NULL              751 fftools/ffprobe.c     if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
NULL              753 fftools/ffprobe.c             char *key1 = NULL, *val1 = NULL;
NULL              837 fftools/ffprobe.c     av_bprint_finalize(&bp, NULL);
NULL              878 fftools/ffprobe.c     av_bprint_finalize(&bp, NULL);
NULL              904 fftools/ffprobe.c     return NULL;
NULL              938 fftools/ffprobe.c     {NULL},
NULL              959 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1096 fftools/ffprobe.c     {NULL},
NULL             1128 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1173 fftools/ffprobe.c     av_bprint_finalize(&buf, NULL);
NULL             1212 fftools/ffprobe.c     {NULL},
NULL             1246 fftools/ffprobe.c     {NULL},
NULL             1304 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1339 fftools/ffprobe.c     av_bprint_finalize(&buf, NULL);
NULL             1366 fftools/ffprobe.c     {NULL},
NULL             1404 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1439 fftools/ffprobe.c     av_bprint_finalize(&buf, NULL);
NULL             1472 fftools/ffprobe.c     { NULL }
NULL             1515 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1543 fftools/ffprobe.c         av_bprint_finalize(&buf, NULL);
NULL             1578 fftools/ffprobe.c     av_bprint_finalize(&buf, NULL);
NULL             1585 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1598 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1608 fftools/ffprobe.c     av_bprint_finalize(&buf, NULL);
NULL             1641 fftools/ffprobe.c     {NULL},
NULL             1699 fftools/ffprobe.c         wctx->section[wctx->level-1] : NULL;
NULL             1773 fftools/ffprobe.c     av_bprint_finalize(&buf, NULL);
NULL             1847 fftools/ffprobe.c     AVDictionaryEntry *tag = NULL;
NULL             2085 fftools/ffprobe.c             AVDictionary *dict = NULL;
NULL             2101 fftools/ffprobe.c     av_bprint_finalize(&pbuf, NULL);
NULL             2124 fftools/ffprobe.c     av_bprint_finalize(&pbuf, NULL);
NULL             2258 fftools/ffprobe.c                 AVDictionaryEntry *tag = av_dict_get(sd->metadata, "name", NULL, AV_DICT_MATCH_CASE);
NULL             2270 fftools/ffprobe.c     av_bprint_finalize(&pbuf, NULL);
NULL             2366 fftools/ffprobe.c     AVFrame *frame = NULL;
NULL             2373 fftools/ffprobe.c     av_log(NULL, AV_LOG_VERBOSE, "Processing read interval ");
NULL             2374 fftools/ffprobe.c     log_read_interval(interval, NULL, AV_LOG_VERBOSE);
NULL             2380 fftools/ffprobe.c                 av_log(NULL, AV_LOG_ERROR,
NULL             2391 fftools/ffprobe.c         av_log(NULL, AV_LOG_VERBOSE, "Seeking to read interval start point %s\n",
NULL             2394 fftools/ffprobe.c             av_log(NULL, AV_LOG_ERROR, "Could not seek to position %"PRId64": %s\n",
NULL             2459 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR, "Could not read packets in interval ");
NULL             2460 fftools/ffprobe.c         log_read_interval(interval, NULL, AV_LOG_ERROR);
NULL             2496 fftools/ffprobe.c     const char *profile = NULL;
NULL             2554 fftools/ffprobe.c         sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, NULL);
NULL             2634 fftools/ffprobe.c         const AVOption *opt = NULL;
NULL             2706 fftools/ffprobe.c     av_bprint_finalize(&pbuf, NULL);
NULL             2856 fftools/ffprobe.c     AVFormatContext *fmt_ctx = NULL;
NULL             2866 fftools/ffprobe.c     if (!av_dict_get(format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE)) {
NULL             2881 fftools/ffprobe.c         av_dict_set(&format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE);
NULL             2882 fftools/ffprobe.c     if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
NULL             2883 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
NULL             2920 fftools/ffprobe.c             av_log(NULL, AV_LOG_WARNING,
NULL             2928 fftools/ffprobe.c             av_log(NULL, AV_LOG_WARNING,
NULL             2961 fftools/ffprobe.c                 av_log(NULL, AV_LOG_WARNING, "Could not open codec for input stream %d\n",
NULL             2966 fftools/ffprobe.c             if ((t = av_dict_get(opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
NULL             2967 fftools/ffprobe.c                 av_log(NULL, AV_LOG_ERROR, "Option %s for input stream %d not found\n",
NULL             3076 fftools/ffprobe.c     av_log(NULL, AV_LOG_INFO, "Simple multimedia streams analyzer\n");
NULL             3077 fftools/ffprobe.c     av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
NULL             3078 fftools/ffprobe.c     av_log(NULL, AV_LOG_INFO, "\n");
NULL             3094 fftools/ffprobe.c     av_bprint_finalize(&pbuf, NULL);
NULL             3133 fftools/ffprobe.c     const AVPixFmtDescriptor *pixdesc = NULL;
NULL             3184 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR, "Unknown input format: %s\n", arg);
NULL             3214 fftools/ffprobe.c             av_log(NULL, AV_LOG_DEBUG,
NULL             3230 fftools/ffprobe.c         AVDictionary *entries = NULL;
NULL             3235 fftools/ffprobe.c             av_log(NULL, AV_LOG_ERROR,
NULL             3246 fftools/ffprobe.c                 av_log(NULL, AV_LOG_VERBOSE,
NULL             3259 fftools/ffprobe.c             av_log(NULL, AV_LOG_ERROR, "No match for section '%s'\n", section_name);
NULL             3282 fftools/ffprobe.c     av_log(NULL, AV_LOG_WARNING,
NULL             3293 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR,
NULL             3340 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR, "Invalid empty interval specification\n");
NULL             3363 fftools/ffprobe.c             av_log(NULL, AV_LOG_ERROR, "Invalid interval start specification '%s'\n", p);
NULL             3390 fftools/ffprobe.c                 av_log(NULL, AV_LOG_ERROR,
NULL             3399 fftools/ffprobe.c                 av_log(NULL, AV_LOG_ERROR, "Invalid interval end/duration specification '%s'\n", p);
NULL             3446 fftools/ffprobe.c             av_log(NULL, AV_LOG_ERROR, "Error parsing read interval #%d '%s'\n",
NULL             3450 fftools/ffprobe.c         av_log(NULL, AV_LOG_VERBOSE, "Parsed log interval ");
NULL             3451 fftools/ffprobe.c         log_read_interval(&read_intervals[i], NULL, AV_LOG_VERBOSE);
NULL             3506 fftools/ffprobe.c     mark_section_show_entries(SECTION_ID_PROGRAM_VERSION, 1, NULL);
NULL             3507 fftools/ffprobe.c     mark_section_show_entries(SECTION_ID_LIBRARY_VERSION, 1, NULL);
NULL             3514 fftools/ffprobe.c         mark_section_show_entries(SECTION_ID_##target_section_id, 1, NULL); \
NULL             3576 fftools/ffprobe.c     { NULL, },
NULL             3601 fftools/ffprobe.c     char *w_name = NULL, *w_args = NULL;
NULL             3607 fftools/ffprobe.c     ret = pthread_mutex_init(&log_mutex, NULL);
NULL             3624 fftools/ffprobe.c     parse_options(NULL, argc, argv, options, opt_input_file);
NULL             3654 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR,
NULL             3671 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR,
NULL             3682 fftools/ffprobe.c                 av_log(NULL, AV_LOG_ERROR,
NULL             3686 fftools/ffprobe.c                     av_log(NULL, AV_LOG_ERROR, " %s", n);
NULL             3687 fftools/ffprobe.c                 av_log(NULL, AV_LOG_ERROR, "\n");
NULL             3695 fftools/ffprobe.c         av_log(NULL, AV_LOG_ERROR, "Unknown output format with name '%s'\n", w_name);
NULL             3718 fftools/ffprobe.c             av_log(NULL, AV_LOG_ERROR, "You have to specify one input file.\n");
NULL             3719 fftools/ffprobe.c             av_log(NULL, AV_LOG_ERROR, "Use -h to get full help or, even better, run 'man %s'.\n", program_name);
NULL              639 libavcodec/4xm.c             return NULL;
NULL              657 libavcodec/4xm.c         return NULL;
NULL              709 libavcodec/4xm.c         return NULL;
NULL              280 libavcodec/a64multienc.c     uint8_t *buf = NULL;
NULL               72 libavcodec/aac_ac3_parser.c         *poutbuf = NULL;
NULL              126 libavcodec/aaccoder.c                                              lambda / band->threshold, INFINITY, NULL, NULL, 0);
NULL              349 libavcodec/aaccoder.c                                                    q + q0, cb, lambda / band->threshold, INFINITY, NULL, NULL, 0);
NULL              494 libavcodec/aaccoder.c                                                           &b, NULL, 0);
NULL              662 libavcodec/aaccoder.c                                             lambda/band->threshold, INFINITY, NULL, NULL, 0);
NULL              846 libavcodec/aaccoder.c                                                     lambda / band0->threshold, INFINITY, &b1, NULL, 0);
NULL              852 libavcodec/aaccoder.c                                                     lambda / band1->threshold, INFINITY, &b2, NULL, 0);
NULL              858 libavcodec/aaccoder.c                                                     lambda / minthr, INFINITY, &b3, NULL, 0);
NULL              864 libavcodec/aaccoder.c                                                     mslambda / (minthr * bmax), INFINITY, &b4, NULL, 0);
NULL              130 libavcodec/aaccoder_trellis.h                                                0, INFINITY, NULL, NULL, 0);
NULL              304 libavcodec/aacdec.c     bits_consumed = decode_audio_specific_config_gb(NULL, avctx, &m4ac,
NULL              578 libavcodec/aacdec_template.c             return NULL;
NULL              581 libavcodec/aacdec_template.c             return NULL;
NULL              597 libavcodec/aacdec_template.c             return NULL;
NULL              600 libavcodec/aacdec_template.c             return NULL;
NULL              674 libavcodec/aacdec_template.c             return NULL;
NULL              682 libavcodec/aacdec_template.c         return NULL;
NULL             3124 libavcodec/aacdec_template.c     ChannelElement *che = NULL, *che_prev = NULL;
NULL             3451 libavcodec/aacdec_template.c     {NULL},
NULL              454 libavcodec/aacenc.c                                                    NULL, sce->ics.swb_sizes[i],
NULL              603 libavcodec/aacenc.c                 la = NULL;
NULL             1136 libavcodec/aacenc.c     {NULL}
NULL             1148 libavcodec/aacenc.c     { NULL }
NULL               71 libavcodec/aacenc_is.c                                     s->lambda / band0->threshold, INFINITY, NULL, NULL, 0);
NULL               76 libavcodec/aacenc_is.c                                     s->lambda / band1->threshold, INFINITY, NULL, NULL, 0);
NULL               79 libavcodec/aacenc_is.c                                     s->lambda / minthr, INFINITY, NULL, NULL, 0);
NULL              197 libavcodec/aacenc_ltp.c                                             s->lambda/band->threshold, INFINITY, &bits_tmp1, NULL, 0);
NULL              201 libavcodec/aacenc_ltp.c                                             s->lambda/band->threshold, INFINITY, &bits_tmp2, NULL, 0);
NULL              274 libavcodec/aacenc_pred.c         dist1 = quantize_and_encode_band_cost(s, NULL, &sce->coeffs[start_coef], NULL,
NULL              276 libavcodec/aacenc_pred.c                                               cb_n, s->lambda / band->threshold, INFINITY, &cost1, NULL, 0);
NULL              287 libavcodec/aacenc_pred.c         quantize_and_encode_band_cost(s, NULL, SENT, QERR, S34, num_coeffs,
NULL              289 libavcodec/aacenc_pred.c                                       &cost2, NULL, 0);
NULL              299 libavcodec/aacenc_pred.c         dist2 = quantize_and_encode_band_cost(s, NULL, &sce->prcoeffs[start_coef], NULL,
NULL              301 libavcodec/aacenc_pred.c                                               cb_p, s->lambda / band->threshold, INFINITY, NULL, NULL, 0);
NULL              255 libavcodec/aacenc_quantization.h     return quantize_and_encode_band_cost(s, NULL, in, NULL, scaled, size, scale_idx,
NULL              265 libavcodec/aacenc_quantization.h     quantize_and_encode_band_cost(s, NULL, in, NULL, scaled, size, scale_idx,
NULL              277 libavcodec/aacenc_quantization.h     quantize_and_encode_band_cost(s, pb, in, out, NULL, size, scale_idx, cb, lambda,
NULL              278 libavcodec/aacenc_quantization.h                                   INFINITY, NULL, NULL, rtz);
NULL              140 libavcodec/aacps.c             read_ipdopd_data(NULL, gb, ps, ps->ipd_par, dt ? huff_ipd_dt : huff_ipd_df, e, dt);
NULL              142 libavcodec/aacps.c             read_ipdopd_data(NULL, gb, ps, ps->opd_par, dt ? huff_opd_dt : huff_opd_df, e, dt);
NULL               94 libavcodec/aacsbr.c                     av_log(NULL, AV_LOG_ERROR, "envelope scalefactor overflow in dequant\n");
NULL              123 libavcodec/aacsbr.c                         av_log(NULL, AV_LOG_ERROR, "envelope scalefactor overflow in dequant\n");
NULL              173 libavcodec/aacsbr_fixed.c                     av_log(NULL, AV_LOG_ERROR, "envelope scalefactor overflow in dequant\n");
NULL              217 libavcodec/aacsbr_fixed.c                         av_log(NULL, AV_LOG_ERROR, "envelope scalefactor overflow in dequant\n");
NULL              580 libavcodec/aacsbr_fixed.c                         av_log(NULL, AV_LOG_ERROR, "Overflow in sbr_hf_assemble, shift=%d,%d\n", shift, shift2);
NULL              597 libavcodec/aacsbr_fixed.c                         av_log(NULL, AV_LOG_ERROR, "Overflow in sbr_hf_assemble, shift=%d\n", shift);
NULL             1190 libavcodec/aacsbr_template.c                 av_log(NULL, AV_LOG_WARNING,
NULL             1195 libavcodec/aacsbr_template.c                 av_log(NULL, AV_LOG_WARNING,
NULL             1353 libavcodec/aactab.c     NULL,               NULL,               NULL,
NULL             1355 libavcodec/aactab.c     swb_offset_512_24,  swb_offset_512_24,  NULL,
NULL             1356 libavcodec/aactab.c     NULL,               NULL,               NULL,
NULL             1357 libavcodec/aactab.c     NULL
NULL             1361 libavcodec/aactab.c     NULL,               NULL,               NULL,
NULL             1363 libavcodec/aactab.c     swb_offset_480_24,  swb_offset_480_24,  NULL,
NULL             1364 libavcodec/aactab.c     NULL,               NULL,               NULL,
NULL             1365 libavcodec/aactab.c     NULL
NULL              161 libavcodec/ac3dec_fixed.c     { NULL},
NULL               46 libavcodec/ac3dec_float.c     { NULL},
NULL              356 libavcodec/ac3dsp.c         c->downmix_fixed = NULL;
NULL              398 libavcodec/ac3dsp.c         c->downmix      = NULL;
NULL              437 libavcodec/ac3dsp.c     c->downmix               = NULL;
NULL              438 libavcodec/ac3dsp.c     c->downmix_fixed         = NULL;
NULL              277 libavcodec/ac3enc.c     uint8_t *flags = NULL;
NULL              384 libavcodec/ac3enc.c             exp_diff = s->mecc.sad[0](NULL, exp, exp - AC3_MAX_COEFS, 16, 16);
NULL              959 libavcodec/ac3enc.c                                            DBA_NONE, 0, NULL, NULL, NULL,
NULL               76 libavcodec/ac3enc_opts_template.c {NULL}
NULL               81 libavcodec/ac3enc_opts_template.c     { NULL }
NULL              198 libavcodec/ac3enc_template.c         AC3Block *block0 = blk ? &s->blocks[blk-1] : NULL;
NULL              329 libavcodec/ac3enc_template.c     AC3Block *block, *block0 = NULL;
NULL               73 libavcodec/acelp_filters.c             av_log(NULL, AV_LOG_WARNING, "overflow that would need clipping in ff_acelp_interpolate()\n");
NULL              413 libavcodec/adpcm.c         av_log(NULL, AV_LOG_WARNING, "idelta overflow\n");
NULL               79 libavcodec/adx_parser.c         *poutbuf      = NULL;
NULL              144 libavcodec/adxenc.c     const int16_t *samples = frame ? (const int16_t *)frame->data[0] : NULL;
NULL              345 libavcodec/alac.c                                alac->nb_samples, bps, NULL, 31, 0);
NULL              494 libavcodec/alac.c         alac->predict_error_buffer[ch]  = NULL;
NULL              495 libavcodec/alac.c         alac->output_samples_buffer[ch] = NULL;
NULL              496 libavcodec/alac.c         alac->extra_bits_buffer[ch]     = NULL;
NULL              608 libavcodec/alac.c     { NULL },
NULL              478 libavcodec/alacenc.c             write_element(s, TYPE_SCE, sce, samples[ch_map[ch]], NULL);
NULL              657 libavcodec/alacenc.c     { "min_prediction_order", NULL, OFFSET(min_prediction_order), AV_OPT_TYPE_INT, { .i64 = DEFAULT_MIN_PRED_ORDER }, MIN_LPC_ORDER, ALAC_MAX_LPC_ORDER, AE },
NULL              658 libavcodec/alacenc.c     { "max_prediction_order", NULL, OFFSET(max_prediction_order), AV_OPT_TYPE_INT, { .i64 = DEFAULT_MAX_PRED_ORDER }, MIN_LPC_ORDER, ALAC_MAX_LPC_ORDER, AE },
NULL              660 libavcodec/alacenc.c     { NULL },
NULL              815 libavcodec/allcodecs.c     NULL,
NULL              816 libavcodec/allcodecs.c     NULL,
NULL              817 libavcodec/allcodecs.c     NULL
NULL              851 libavcodec/allcodecs.c     AVCodec *prev = NULL, *p;
NULL              895 libavcodec/allcodecs.c     const AVCodec *p, *experimental = NULL;
NULL              930 libavcodec/allcodecs.c         return NULL;
NULL              939 libavcodec/allcodecs.c     return NULL;
NULL             1723 libavcodec/alsdec.c                 bd.raw_other   = NULL;
NULL             2090 libavcodec/alsdec.c         ctx->chan_data         = NULL;
NULL             2091 libavcodec/alsdec.c         ctx->chan_data_buffer  = NULL;
NULL             2092 libavcodec/alsdec.c         ctx->reverted_channels = NULL;
NULL              128 libavcodec/amfenc.c     AMF_RETURN_IF_FALSE(ctx, ctx->library != NULL,
NULL              132 libavcodec/amfenc.c     AMF_RETURN_IF_FALSE(ctx, init_fun != NULL, AVERROR_UNKNOWN, "DLL %s failed to find function %s\n", AMF_DLL_NAMEA, AMF_INIT_FUNCTION_NAME);
NULL              135 libavcodec/amfenc.c     AMF_RETURN_IF_FALSE(ctx, version_fun != NULL, AVERROR_UNKNOWN, "DLL %s failed to find function %s\n", AMF_DLL_NAMEA, AMF_QUERY_VERSION_FUNCTION_NAME);
NULL              216 libavcodec/amfenc.c     AMFContext1 *context1 = NULL;
NULL              307 libavcodec/amfenc.c         res = ctx->context->pVtbl->InitDX11(ctx->context, NULL, AMF_DX11_1);
NULL              311 libavcodec/amfenc.c             res = ctx->context->pVtbl->InitDX9(ctx->context, NULL);
NULL              319 libavcodec/amfenc.c                 res = context1->pVtbl->InitVulkan(context1, NULL);
NULL              338 libavcodec/amfenc.c     const wchar_t     *codec_id = NULL;
NULL              352 libavcodec/amfenc.c     AMF_RETURN_IF_FALSE(ctx, codec_id != NULL, AVERROR(EINVAL), "Codec %d is not supported\n", avctx->codec->id);
NULL              375 libavcodec/amfenc.c         ctx->delayed_surface = NULL;
NULL              381 libavcodec/amfenc.c         ctx->encoder = NULL;
NULL              387 libavcodec/amfenc.c         ctx->context = NULL;
NULL              397 libavcodec/amfenc.c         ctx->library = NULL;
NULL              399 libavcodec/amfenc.c     ctx->trace = NULL;
NULL              400 libavcodec/amfenc.c     ctx->debug = NULL;
NULL              401 libavcodec/amfenc.c     ctx->factory = NULL;
NULL              442 libavcodec/amfenc.c     av_fifo_generic_write(ctx->timestamp_list, &timestamp, sizeof(timestamp), NULL);
NULL              483 libavcodec/amfenc.c     av_fifo_generic_read(ctx->timestamp_list, &timestamp, sizeof(timestamp), NULL);
NULL              495 libavcodec/amfenc.c             NULL);
NULL              567 libavcodec/amfenc.c     AMFBuffer *frame_ref_storage_buffer = NULL;
NULL              577 libavcodec/amfenc.c             frame_ref_storage_buffer = NULL;
NULL              603 libavcodec/amfenc.c             if (ctx->delayed_surface != NULL) {
NULL              622 libavcodec/amfenc.c         if (ctx->delayed_surface != NULL) {
NULL              639 libavcodec/amfenc.c                 res = ctx->context->pVtbl->CreateSurfaceFromDX11Native(ctx->context, texture, &surface, NULL); // wrap to AMF surface
NULL              651 libavcodec/amfenc.c                 res = ctx->context->pVtbl->CreateSurfaceFromDX9Native(ctx->context, texture, &surface, NULL); // wrap to AMF surface
NULL              674 libavcodec/amfenc.c             AMF_RETURN_IF_FALSE(ctx, frame_ref_storage_buffer != NULL, AVERROR(ENOMEM), "create_buffer_with_frame_ref() returned NULL\n");
NULL              723 libavcodec/amfenc.c     AMFData        *data = NULL;
NULL              754 libavcodec/amfenc.c             if (ctx->delayed_surface != NULL) { // try to resubmit frame
NULL              759 libavcodec/amfenc.c                     ctx->delayed_surface = NULL;
NULL              779 libavcodec/amfenc.c         } else if (ctx->delayed_surface != NULL || ctx->delayed_drain || (ctx->eof && res_query != AMF_EOF) || (ctx->hwsurfaces_in_queue >= ctx->hwsurfaces_in_queue_max)) {
NULL              787 libavcodec/amfenc.c     } else if (data == NULL) {
NULL               94 libavcodec/amfenc_h264.c     { "preanalysis",    "Pre-Analysis Mode",                    OFFSET(preanalysis),        AV_OPT_TYPE_BOOL,{ .i64 = 0 }, 0, 1, VE, NULL },
NULL              124 libavcodec/amfenc_h264.c     { NULL }
NULL              336 libavcodec/amfenc_h264.c     AMF_RETURN_IF_FALSE(ctx, var.pInterface != NULL, AVERROR_BUG, "GetProperty(AMF_VIDEO_ENCODER_EXTRADATA) returned NULL\n");
NULL              370 libavcodec/amfenc_h264.c     { NULL                },
NULL               91 libavcodec/amfenc_hevc.c     { NULL }
NULL              271 libavcodec/amfenc_hevc.c     AMF_RETURN_IF_FALSE(ctx, var.pInterface != NULL, AVERROR_BUG, "GetProperty(AMF_VIDEO_ENCODER_EXTRADATA) returned NULL\n");
NULL              301 libavcodec/amfenc_hevc.c     { NULL                },
NULL              149 libavcodec/anm.c             if (OP(type ? NULL : &gb, -1, count)) break;
NULL              154 libavcodec/anm.c             if (OP(NULL, pixel, count)) break;
NULL              171 libavcodec/anm.c             if (OP(type == 2 ? &gb : NULL, pixel, count)) break;
NULL             1122 libavcodec/apedec.c     ape_apply_filters(ctx, ctx->decoded[0], NULL, count);
NULL             1221 libavcodec/apedec.c     ape_apply_filters(ctx, ctx->decoded[0], NULL, count);
NULL             1620 libavcodec/apedec.c     { NULL},
NULL              203 libavcodec/arm/hevcdsp_init_neon.c     put_hevc_qpel_uw_neon[my][mx](dst, dststride, src, srcstride, width, height, NULL, 0);
NULL              212 libavcodec/ass_split.c         return NULL;
NULL              238 libavcodec/ass_split.c         return NULL;
NULL              284 libavcodec/ass_split.c                         return NULL;
NULL              303 libavcodec/ass_split.c                 if (!struct_ptr)  return NULL;
NULL              309 libavcodec/ass_split.c                         return NULL;
NULL              378 libavcodec/ass_split.c         return NULL;
NULL              384 libavcodec/ass_split.c         return NULL;
NULL              416 libavcodec/ass_split.c     ASSDialog *dialog = NULL;
NULL              461 libavcodec/ass_split.c         return NULL;
NULL              472 libavcodec/ass_split.c             return NULL;
NULL              497 libavcodec/ass_split.c     const char *text = NULL;
NULL              506 libavcodec/ass_split.c             text = NULL;
NULL              539 libavcodec/ass_split.c                         callbacks->font_name(priv, tmp[0] ? tmp : NULL);
NULL              599 libavcodec/ass_split.c     return NULL;
NULL              171 libavcodec/atrac3.c         avpriv_request_sample(NULL, "Offset of %d", off);
NULL              586 libavcodec/atrac3.c             av_log(NULL,AV_LOG_ERROR,"JS mono Sound Unit id != 3.\n");
NULL              591 libavcodec/atrac3.c             av_log(NULL,AV_LOG_ERROR,"Sound Unit id != 0x28.\n");
NULL               95 libavcodec/atrac3plus.c         atrac3p_wl_huff_xlat1, atrac3p_wl_huff_xlat2, NULL, NULL
NULL              109 libavcodec/atrac3plus.c         NULL, NULL, atrac3p_ct_huff_xlat1, NULL
NULL              125 libavcodec/atrac3plus.c         atrac3p_sf_huff_xlat1, atrac3p_sf_huff_xlat2, NULL, NULL,
NULL              126 libavcodec/atrac3plus.c         atrac3p_sf_huff_xlat4, atrac3p_sf_huff_xlat5, NULL, NULL
NULL              138 libavcodec/atrac3plus.c         NULL, atrac3p_huff_gain_npoints2_xlat, atrac3p_huff_gain_lev1_xlat,
NULL              152 libavcodec/atrac3plus.c         NULL, NULL, atrac3p_huff_numwavs2_xlat, atrac3p_huff_wav_ampsf1_xlat,
NULL             1676 libavcodec/atrac3plus_data.h     { 1, 1, 3, 0, -1, huff_a24_cb, NULL          }, // wordlen = 4
NULL             1718 libavcodec/atrac3plus_data.h     { 1, 2, 1, 0, -1, huff_a71_cb, NULL          }, // wordlen = 1
NULL             1724 libavcodec/atrac3plus_data.h     { 4, 1, 6, 1,  6, NULL,        NULL          }, // wordlen = 7
NULL             1733 libavcodec/atrac3plus_data.h     { 1, 1, 4, 0,  5, NULL,        NULL          }, // wordlen = 6
NULL             1737 libavcodec/atrac3plus_data.h     { 1, 4, 2, 1, 14, NULL,        NULL          }, // wordlen = 1
NULL             1739 libavcodec/atrac3plus_data.h     { 1, 2, 3, 1,  9, NULL,        NULL          }, // wordlen = 3
NULL             1741 libavcodec/atrac3plus_data.h     { 1, 2, 4, 1, 11, NULL,        NULL          }, // wordlen = 5
NULL             1743 libavcodec/atrac3plus_data.h     { 1, 1, 6, 1,  6, NULL,        NULL          }, // wordlen = 7
NULL             1746 libavcodec/atrac3plus_data.h     { 4, 4, 2, 1, 28, NULL,        NULL          }, // wordlen = 1
NULL             1747 libavcodec/atrac3plus_data.h     { 4, 4, 2, 0, 22, NULL,        NULL          }, // wordlen = 2
NULL             1748 libavcodec/atrac3plus_data.h     { 1, 2, 3, 1,  2, NULL,        NULL          }, // wordlen = 3
NULL             1749 libavcodec/atrac3plus_data.h     { 1, 2, 4, 1, 31, NULL,        NULL          }, // wordlen = 4
NULL             1750 libavcodec/atrac3plus_data.h     { 2, 2, 4, 1, 60, NULL,        NULL          }, // wordlen = 5
NULL             1752 libavcodec/atrac3plus_data.h     { 4, 1, 6, 1,  6, NULL,        NULL          }, // wordlen = 7
NULL             1755 libavcodec/atrac3plus_data.h     { 1, 4, 2, 1, 35, NULL,        NULL          }, // wordlen = 1
NULL             1758 libavcodec/atrac3plus_data.h     { 2, 2, 4, 1, 59, NULL,        NULL          }, // wordlen = 4
NULL             1760 libavcodec/atrac3plus_data.h     { 1, 2, 4, 0, 75, NULL,        NULL          }, // wordlen = 6
NULL             1767 libavcodec/atrac3plus_data.h     { 4, 2, 4, 1, 66, NULL,        NULL          }, // wordlen = 4
NULL             1768 libavcodec/atrac3plus_data.h     { 1, 1, 3, 0, 32, NULL,        NULL          }, // wordlen = 5
NULL             1769 libavcodec/atrac3plus_data.h     { 1, 2, 4, 0, 12, NULL,        NULL          }, // wordlen = 6
NULL             1773 libavcodec/atrac3plus_data.h     { 2, 4, 2, 1, 42, NULL,        NULL          }, // wordlen = 1
NULL             1776 libavcodec/atrac3plus_data.h     { 1, 1, 3, 0, 17, NULL,        NULL          }, // wordlen = 4
NULL             1777 libavcodec/atrac3plus_data.h     { 1, 1, 3, 0, 39, NULL,        NULL          }, // wordlen = 5
NULL             1779 libavcodec/atrac3plus_data.h     { 2, 1, 6, 1, 62, NULL,        NULL          }, // wordlen = 7
NULL             1782 libavcodec/atrac3plus_data.h     { 1, 4, 2, 1, 28, NULL,        NULL          }, // wordlen = 1
NULL             1792 libavcodec/atrac3plus_data.h     { 4, 4, 2, 0, 78, NULL,        NULL          }, // wordlen = 2
NULL             1796 libavcodec/atrac3plus_data.h     { 1, 1, 5, 1, 47, NULL,        NULL          }, // wordlen = 6
NULL              145 libavcodec/audiotoolboxdec.c         return NULL;
NULL              184 libavcodec/audiotoolboxdec.c                                        &size, NULL) && size) {
NULL              235 libavcodec/audiotoolboxdec.c             return NULL;
NULL              410 libavcodec/audiotoolboxdec.c         return ffat_create_decoder(avctx, NULL);
NULL              534 libavcodec/audiotoolboxdec.c                                           &frame->nb_samples, &out_buffers, NULL);
NULL              604 libavcodec/audiotoolboxdec.c FFAT_DEC(ac3,          AV_CODEC_ID_AC3, NULL)
NULL              605 libavcodec/audiotoolboxdec.c FFAT_DEC(adpcm_ima_qt, AV_CODEC_ID_ADPCM_IMA_QT, NULL)
NULL              606 libavcodec/audiotoolboxdec.c FFAT_DEC(alac,         AV_CODEC_ID_ALAC, NULL)
NULL              607 libavcodec/audiotoolboxdec.c FFAT_DEC(amr_nb,       AV_CODEC_ID_AMR_NB, NULL)
NULL              608 libavcodec/audiotoolboxdec.c FFAT_DEC(eac3,         AV_CODEC_ID_EAC3, NULL)
NULL              609 libavcodec/audiotoolboxdec.c FFAT_DEC(gsm_ms,       AV_CODEC_ID_GSM_MS, NULL)
NULL              610 libavcodec/audiotoolboxdec.c FFAT_DEC(ilbc,         AV_CODEC_ID_ILBC, NULL)
NULL              611 libavcodec/audiotoolboxdec.c FFAT_DEC(mp1,          AV_CODEC_ID_MP1, NULL)
NULL              612 libavcodec/audiotoolboxdec.c FFAT_DEC(mp2,          AV_CODEC_ID_MP2, NULL)
NULL              613 libavcodec/audiotoolboxdec.c FFAT_DEC(mp3,          AV_CODEC_ID_MP3, NULL)
NULL              614 libavcodec/audiotoolboxdec.c FFAT_DEC(pcm_alaw,     AV_CODEC_ID_PCM_ALAW, NULL)
NULL              615 libavcodec/audiotoolboxdec.c FFAT_DEC(pcm_mulaw,    AV_CODEC_ID_PCM_MULAW, NULL)
NULL              616 libavcodec/audiotoolboxdec.c FFAT_DEC(qdmc,         AV_CODEC_ID_QDMC, NULL)
NULL              617 libavcodec/audiotoolboxdec.c FFAT_DEC(qdm2,         AV_CODEC_ID_QDM2, NULL)
NULL              341 libavcodec/audiotoolboxenc.c                                                &size, NULL);
NULL              381 libavcodec/audiotoolboxenc.c                                        &avctx->extradata_size, NULL) &&
NULL              549 libavcodec/audiotoolboxenc.c                                           (avctx->frame_size > at->frame_size) ? NULL : &out_pkt_desc);
NULL              606 libavcodec/audiotoolboxenc.c     { NULL },
NULL              659 libavcodec/audiotoolboxenc.c FFAT_ENC(alac,         AV_CODEC_ID_ALAC,         NULL, | AV_CODEC_CAP_VARIABLE_FRAME_SIZE)
NULL              660 libavcodec/audiotoolboxenc.c FFAT_ENC(ilbc,         AV_CODEC_ID_ILBC,         NULL)
NULL              661 libavcodec/audiotoolboxenc.c FFAT_ENC(pcm_alaw,     AV_CODEC_ID_PCM_ALAW,     NULL)
NULL              662 libavcodec/audiotoolboxenc.c FFAT_ENC(pcm_mulaw,    AV_CODEC_ID_PCM_MULAW,    NULL)
NULL               91 libavcodec/av1_frame_split_bsf.c         AV1RawFrameHeader *frame = NULL;
NULL              205 libavcodec/av1_metadata_bsf.c                                          &td, NULL);
NULL              289 libavcodec/av1_metadata_bsf.c     { "pass",   NULL, 0, AV_OPT_TYPE_CONST,
NULL              291 libavcodec/av1_metadata_bsf.c     { "insert", NULL, 0, AV_OPT_TYPE_CONST,
NULL              293 libavcodec/av1_metadata_bsf.c     { "remove", NULL, 0, AV_OPT_TYPE_CONST,
NULL              335 libavcodec/av1_metadata_bsf.c     { NULL }
NULL              196 libavcodec/av1_parser.c     s->cbc->log_ctx = NULL;
NULL              214 libavcodec/av1_parser.c     ret = ff_cbs_init(&s->cbc, AV_CODEC_ID_AV1, NULL);
NULL               61 libavcodec/avdct.c {NULL},
NULL               80 libavcodec/avdct.c         return NULL;
NULL               90 libavcodec/avdct.c     AVCodecContext *avctx = avcodec_alloc_context3(NULL);
NULL               48 libavcodec/avpacket.c     pkt->buf                  = NULL;
NULL               49 libavcodec/avpacket.c     pkt->side_data            = NULL;
NULL               90 libavcodec/avpacket.c     AVBufferRef *buf = NULL;
NULL              123 libavcodec/avpacket.c         if (pkt->data == NULL) {
NULL              161 libavcodec/avpacket.c                                 av_buffer_default_free, NULL, 0);
NULL              177 libavcodec/avpacket.c     data = pkt->buf ? pkt->buf->data : NULL; \
NULL              203 libavcodec/avpacket.c     pkt->data      = NULL;
NULL              204 libavcodec/avpacket.c     pkt->side_data = NULL;
NULL              289 libavcodec/avpacket.c         pkt->data            = NULL;
NULL              339 libavcodec/avpacket.c         return NULL;
NULL              342 libavcodec/avpacket.c         return NULL;
NULL              347 libavcodec/avpacket.c         return NULL;
NULL              367 libavcodec/avpacket.c     return NULL;
NULL              404 libavcodec/avpacket.c     return NULL;
NULL              440 libavcodec/avpacket.c         pkt->side_data = NULL;
NULL              496 libavcodec/avpacket.c     AVDictionaryEntry *t = NULL;
NULL              497 libavcodec/avpacket.c     uint8_t *data = NULL;
NULL              501 libavcodec/avpacket.c         return NULL;
NULL              526 libavcodec/avpacket.c     return NULL;
NULL              587 libavcodec/avpacket.c     dst->side_data            = NULL;
NULL              610 libavcodec/avpacket.c     pkt->data = NULL;
NULL              618 libavcodec/avpacket.c     dst->buf = NULL;
NULL              667 libavcodec/avpacket.c     src->data = NULL;
NULL              692 libavcodec/avpacket.c     AVBufferRef *buf = NULL;
NULL               50 libavcodec/avrndec.c         AVDictionary *thread_opt = NULL;
NULL               77 libavcodec/avs2_parser.c             *poutbuf = NULL;
NULL              324 libavcodec/bink.c         b->cur_dec = NULL; \
NULL              399 libavcodec/bink.c             b->cur_dec = NULL;
NULL              169 libavcodec/bitstream.c     ff_dlog(NULL, "new table index=%d size=%d\n", table_index, table_size);
NULL              179 libavcodec/bitstream.c         ff_dlog(NULL, "i=%d n=%d code=0x%"PRIx32"\n", i, n, code);
NULL              192 libavcodec/bitstream.c                 ff_dlog(NULL, "%4x: code=%d n=%d\n", j, i, n);
NULL              194 libavcodec/bitstream.c                     av_log(NULL, AV_LOG_ERROR, "incorrect codes\n");
NULL              222 libavcodec/bitstream.c             ff_dlog(NULL, "%4x: n=%d (subtable)\n",
NULL              231 libavcodec/bitstream.c                 avpriv_request_sample(NULL, "strange codes");
NULL              293 libavcodec/bitstream.c         vlc->table           = NULL;
NULL              311 libavcodec/bitstream.c             av_log(NULL, AV_LOG_ERROR, "Too long VLC (%d) in init_vlc\n", buf[j].bits);\
NULL              318 libavcodec/bitstream.c             av_log(NULL, AV_LOG_ERROR, "Invalid code %"PRIx32" for %d in "  \
NULL              344 libavcodec/bitstream.c             av_log(NULL, AV_LOG_ERROR, "needed %d had %d\n", vlc->table_size, vlc->table_allocated);
NULL               33 libavcodec/bitstream_filter.c     const AVBitStreamFilter *filter = NULL;
NULL               34 libavcodec/bitstream_filter.c     void *opaque = NULL;
NULL               53 libavcodec/bitstream_filter.c     AVBitStreamFilterContext *ctx = NULL;
NULL               54 libavcodec/bitstream_filter.c     BSFCompatContext         *priv = NULL;
NULL               59 libavcodec/bitstream_filter.c         return NULL;
NULL               63 libavcodec/bitstream_filter.c         return NULL;
NULL               80 libavcodec/bitstream_filter.c     return NULL;
NULL              118 libavcodec/bitstream_filter.c             const AVOption *opt = av_opt_next(priv->ctx->priv_data, NULL);
NULL              119 libavcodec/bitstream_filter.c             const char * shorthand[2] = {NULL};
NULL              141 libavcodec/bitstream_filter.c     *poutbuf      = NULL;
NULL               85 libavcodec/bitstream_filters.c     const AVBitStreamFilter *f = NULL;
NULL               89 libavcodec/bitstream_filters.c         return NULL;
NULL               96 libavcodec/bitstream_filters.c     return NULL;
NULL              101 libavcodec/bitstream_filters.c     const AVBitStreamFilter *f = NULL;
NULL              116 libavcodec/bitstream_filters.c     return NULL;
NULL               48 libavcodec/bmp_parser.c     *poutbuf = NULL;
NULL               71 libavcodec/bmpenc.c     const uint32_t *pal = NULL;
NULL               69 libavcodec/bsf.c     return NULL;
NULL              331 libavcodec/bsf.c             ret = av_bsf_send_packet(lst->bsfs[lst->idx], eof ? NULL : out);
NULL              451 libavcodec/bsf.c         const AVOption *opt = av_opt_next(bsf->priv_data, NULL);
NULL              452 libavcodec/bsf.c         const char * shorthand[2] = {NULL};
NULL              479 libavcodec/bsf.c     return bsf_list_append_internal(lst, bsf_name, NULL, options);
NULL              516 libavcodec/bsf.c     return bsf_list_append_internal(bsf_lst, bsf_name, bsf_options_str, NULL);
NULL              542 libavcodec/bsf.c         buf = NULL;
NULL              199 libavcodec/c93.c                                      NULL, bytestream2_get_byte(&gb));
NULL              212 libavcodec/c93.c                                     1, cols, NULL, bytestream2_get_le16(&gb));
NULL              216 libavcodec/c93.c                                     2, cols, NULL, bytestream2_get_le32(&gb));
NULL              207 libavcodec/cabac_functions.h         return NULL;
NULL              209 libavcodec/cabac_functions.h         return NULL;
NULL              358 libavcodec/cavs.c         av_log(NULL, AV_LOG_ERROR, "Illegal intra prediction mode\n");
NULL              582 libavcodec/cavs.c     const cavs_vector *mvP2 = NULL;
NULL               90 libavcodec/cavs_parser.c             *poutbuf = NULL;
NULL              507 libavcodec/cavsdec.c         av_log(NULL, AV_LOG_ERROR, "get_ue_code: value too larger\n");
NULL              657 libavcodec/cavsdec.c     uint8_t *left = NULL;
NULL              472 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_jj(dst, src, NULL, stride, stride); \
NULL               81 libavcodec/cbs.c     type = NULL;
NULL              106 libavcodec/cbs.c     ctx->decompose_unit_types = NULL;
NULL              134 libavcodec/cbs.c     unit->content = NULL;
NULL              137 libavcodec/cbs.c     unit->data             = NULL;
NULL              152 libavcodec/cbs.c     frag->data             = NULL;
NULL              184 libavcodec/cbs.c         unit->content = NULL;
NULL              352 libavcodec/cbs.c         unit->data = NULL;
NULL              364 libavcodec/cbs.c     frag->data = NULL;
NULL              656 libavcodec/cbs.c                                          free, NULL, 0);
NULL              742 libavcodec/cbs.c         content_ref = NULL;
NULL              777 libavcodec/cbs.c         data_ref = av_buffer_create(data, data_size, NULL, NULL, 0);
NULL               75 libavcodec/cbs_av1.c                                             NULL, bits, 0);
NULL               92 libavcodec/cbs_av1.c                                     NULL, bits, value);
NULL              144 libavcodec/cbs_av1.c         ff_cbs_trace_syntax_element(ctx, position, name, NULL,
NULL              178 libavcodec/cbs_av1.c         ff_cbs_trace_syntax_element(ctx, position, name, NULL, "", value);
NULL              209 libavcodec/cbs_av1.c         ff_cbs_trace_syntax_element(ctx, position, name, NULL, "", value);
NULL              343 libavcodec/cbs_av1.c                                     name, NULL, bits, value);
NULL              382 libavcodec/cbs_av1.c                                     name, NULL, bits, value);
NULL              420 libavcodec/cbs_av1.c                                    "subexp_bits", NULL, &value,
NULL              427 libavcodec/cbs_av1.c                               "subexp_final_bits", NULL, &value);
NULL              484 libavcodec/cbs_av1.c                                     "subexp_bits", NULL,
NULL              492 libavcodec/cbs_av1.c                                "subexp_final_bits", NULL,
NULL              551 libavcodec/cbs_av1.c #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL)
NULL              958 libavcodec/cbs_av1.c             priv->sequence_header = NULL;
NULL             1089 libavcodec/cbs_av1.c     td = NULL;
NULL             1103 libavcodec/cbs_av1.c             priv->sequence_header = NULL;
NULL             1125 libavcodec/cbs_av1.c                                                  NULL);
NULL             1142 libavcodec/cbs_av1.c             err = cbs_av1_write_frame_obu(ctx, pbc, &obu->obu.frame, NULL);
NULL              260 libavcodec/cbs_h2645.c #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL)
NULL              775 libavcodec/cbs_h2645.c         priv->active_ ## ps_var = NULL ; \
NULL              810 libavcodec/cbs_h2645.c             err = ff_cbs_alloc_unit_content(ctx, unit, sizeof(*sps), NULL);
NULL              829 libavcodec/cbs_h2645.c                                             NULL);
NULL              894 libavcodec/cbs_h2645.c                                             sizeof(H264RawAUD), NULL);
NULL              920 libavcodec/cbs_h2645.c                                             sizeof(H264RawFiller), NULL);
NULL              935 libavcodec/cbs_h2645.c                                             NULL);
NULL             1072 libavcodec/cbs_h2645.c                                             sizeof(H265RawAUD), NULL);
NULL             1411 libavcodec/cbs_h2645.c     data = av_realloc(NULL, max_size + AV_INPUT_BUFFER_PADDING_SIZE);
NULL             1468 libavcodec/cbs_h2645.c                                       NULL, NULL, 0);
NULL             1538 libavcodec/cbs_h2645.c     H264RawSEI *sei = NULL;
NULL             1548 libavcodec/cbs_h2645.c             sei = NULL;
NULL             1567 libavcodec/cbs_h2645.c                                    &cbs_h264_free_sei, NULL, 0);
NULL             1748 libavcodec/cbs_h265_syntax_template.c         hrd = NULL;
NULL               34 libavcodec/cbs_jpeg.c #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL)
NULL              203 libavcodec/cbs_jpeg.c             data_ref = NULL;
NULL              257 libavcodec/cbs_jpeg.c                                         NULL);
NULL              316 libavcodec/cbs_jpeg.c             SEGMENT(DQT, JPEGRawQuantisationTableSpecification, dqt, NULL);
NULL              317 libavcodec/cbs_jpeg.c             SEGMENT(DHT, JPEGRawHuffmanTableSpecification,      dht, NULL);
NULL               41 libavcodec/cbs_mpeg2.c #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL)
NULL              283 libavcodec/cbs_mpeg2.c                   sequence_header,          NULL);
NULL              285 libavcodec/cbs_mpeg2.c                   extension_data,           NULL);
NULL              287 libavcodec/cbs_mpeg2.c                   group_of_pictures_header, NULL);
NULL              289 libavcodec/cbs_mpeg2.c                   sequence_end,             NULL);
NULL              124 libavcodec/cbs_vp9.c         ff_cbs_trace_syntax_element(ctx, position, name, NULL, bits, value);
NULL              163 libavcodec/cbs_vp9.c                                     name, NULL, bits, value);
NULL              253 libavcodec/cbs_vp9.c #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL)
NULL              285 libavcodec/ccaption_dec.c     av_bprint_finalize(&ctx->buffer, NULL);
NULL              397 libavcodec/ccaption_dec.c     return NULL;
NULL              755 libavcodec/ccaption_dec.c     uint8_t *bptr = NULL;
NULL              785 libavcodec/ccaption_dec.c             ret = ff_ass_add_rect(sub, ctx->buffer.str, ctx->readorder++, 0, NULL, NULL);
NULL              808 libavcodec/ccaption_dec.c         ret = ff_ass_add_rect(sub, ctx->buffer.str, ctx->readorder++, 0, NULL, NULL);
NULL              822 libavcodec/ccaption_dec.c     {NULL}
NULL              285 libavcodec/cfhd.c             s->plane[i].subband[j] = NULL;
NULL              288 libavcodec/cfhd.c             s->plane[i].l_h[j] = NULL;
NULL              468 libavcodec/cinepak.c     if (!num_strips && (!s->palette_video || !av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL)))
NULL              144 libavcodec/cinepakenc.c     { NULL },
NULL              397 libavcodec/clearvideo.c         return NULL;
NULL              102 libavcodec/cljrenc.c     { NULL },
NULL               60 libavcodec/cllc.c         vlc->table = NULL;
NULL               71 libavcodec/cllc.c             vlc->table = NULL;
NULL               86 libavcodec/cllc.c             vlc->table = NULL;
NULL              501 libavcodec/cllc.c     ctx->swapped_buf      = NULL;
NULL               32 libavcodec/codec_desc.c #define MT(...) (const char *const[]){ __VA_ARGS__, NULL }
NULL             3406 libavcodec/codec_desc.c     return NULL;
NULL             3411 libavcodec/codec_desc.c     const AVCodecDescriptor *desc = NULL;
NULL             3416 libavcodec/codec_desc.c     return NULL;
NULL              943 libavcodec/cook.c                           outbuffer ? outbuffer[p->ch_idx] : NULL);
NULL              949 libavcodec/cook.c                                   outbuffer ? outbuffer[p->ch_idx + 1] : NULL);
NULL              953 libavcodec/cook.c                                   outbuffer ? outbuffer[p->ch_idx + 1] : NULL);
NULL              967 libavcodec/cook.c     float **samples = NULL;
NULL              112 libavcodec/crystalhd.c     { NULL, },
NULL              221 libavcodec/crystalhd.c         return NULL;
NULL              234 libavcodec/crystalhd.c         node->next = NULL;
NULL              250 libavcodec/crystalhd.c             current->next = NULL;
NULL              259 libavcodec/crystalhd.c     return NULL;
NULL              644 libavcodec/crystalhd.c         DtsReleaseOutputBuffs(dev, NULL, FALSE);
NULL              799 libavcodec/crystalhd.c DEFINE_CRYSTALHD_DECODER(mpeg2, MPEG2VIDEO, NULL)
NULL              807 libavcodec/crystalhd.c DEFINE_CRYSTALHD_DECODER(msmpeg4, MSMPEG4V3, NULL)
NULL              811 libavcodec/crystalhd.c DEFINE_CRYSTALHD_DECODER(vc1, VC1, NULL)
NULL              815 libavcodec/crystalhd.c DEFINE_CRYSTALHD_DECODER(wmv3, WMV3, NULL)
NULL              111 libavcodec/cuviddec.c     CUVIDDECODECAPS *caps = NULL;
NULL              256 libavcodec/cuviddec.c         ctx->cudecoder = NULL;
NULL              357 libavcodec/cuviddec.c         av_fifo_generic_write(ctx->frame_queue, &parsed_frame, sizeof(CuvidParsedFrame), NULL);
NULL              360 libavcodec/cuviddec.c         av_fifo_generic_write(ctx->frame_queue, &parsed_frame, sizeof(CuvidParsedFrame), NULL);
NULL              363 libavcodec/cuviddec.c             av_fifo_generic_write(ctx->frame_queue, &parsed_frame, sizeof(CuvidParsedFrame), NULL);
NULL              458 libavcodec/cuviddec.c         ret = cuvid_decode_packet(avctx, NULL);
NULL              489 libavcodec/cuviddec.c         av_fifo_generic_read(ctx->frame_queue, &parsed_frame, sizeof(CuvidParsedFrame), NULL);
NULL              681 libavcodec/cuviddec.c     ctx->cudl = NULL;
NULL              794 libavcodec/cuviddec.c     CUcontext cuda_ctx = NULL;
NULL              870 libavcodec/cuviddec.c             ret = av_hwdevice_ctx_create(&ctx->hwdevice, AV_HWDEVICE_TYPE_CUDA, ctx->cu_gpu, NULL, 0);
NULL             1037 libavcodec/cuviddec.c         ctx->cudecoder = NULL;
NULL             1042 libavcodec/cuviddec.c         ctx->cuparser = NULL;
NULL             1077 libavcodec/cuviddec.c     { "gpu",      "GPU to be used for decoding", OFFSET(cu_gpu), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, VD },
NULL             1080 libavcodec/cuviddec.c     { "crop",     "Crop (top)x(bottom)x(left)x(right)", OFFSET(crop_expr), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, VD },
NULL             1081 libavcodec/cuviddec.c     { "resize",   "Resize (width)x(height)", OFFSET(resize_expr), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, VD },
NULL             1082 libavcodec/cuviddec.c     { NULL }
NULL             1093 libavcodec/cuviddec.c         .hwaccel = NULL,
NULL             1095 libavcodec/cuviddec.c     NULL
NULL             1137 libavcodec/cuviddec.c DEFINE_CUVID_CODEC(mjpeg, MJPEG, NULL)
NULL             1141 libavcodec/cuviddec.c DEFINE_CUVID_CODEC(mpeg1, MPEG1VIDEO, NULL)
NULL             1145 libavcodec/cuviddec.c DEFINE_CUVID_CODEC(mpeg2, MPEG2VIDEO, NULL)
NULL             1149 libavcodec/cuviddec.c DEFINE_CUVID_CODEC(mpeg4, MPEG4, NULL)
NULL             1153 libavcodec/cuviddec.c DEFINE_CUVID_CODEC(vp8, VP8, NULL)
NULL             1157 libavcodec/cuviddec.c DEFINE_CUVID_CODEC(vp9, VP9, NULL)
NULL             1161 libavcodec/cuviddec.c DEFINE_CUVID_CODEC(vc1, VC1, NULL)
NULL               37 libavcodec/d3d11va.c         return NULL;
NULL               46 libavcodec/d3d11va.c     return NULL;
NULL             1991 libavcodec/dca_core.c             s->output_samples[spkr] = NULL;
NULL             2019 libavcodec/dca_core.c             ch < x96_nchannels ? s->x96_subband_samples[ch] : NULL,
NULL             2165 libavcodec/dca_core.c     float *output_samples[DCA_SPEAKER_COUNT] = { NULL }, *ptr;
NULL             2228 libavcodec/dca_core.c             ch < x96_nchannels ? s->x96_subband_samples[ch] : NULL,
NULL              320 libavcodec/dca_parser.c             *poutbuf      = NULL;
NULL              435 libavcodec/dca_xll.c                 c->bands[i].lsb_sample_buffer[j] = NULL;
NULL              884 libavcodec/dca_xll.c     return NULL;
NULL              198 libavcodec/dcadec.c         DCAExssAsset *asset = NULL;
NULL              373 libavcodec/dcadec.c     { NULL }
NULL              158 libavcodec/dcaenc.c         c->subband[0][0] = NULL;
NULL              540 libavcodec/dcaenc.c         walk_band_low(c, band, 0, update_band_masking, NULL);
NULL              541 libavcodec/dcaenc.c         walk_band_high(c, band, 0, update_band_masking, NULL);
NULL             1225 libavcodec/dcaenc.c     { NULL },
NULL             1237 libavcodec/dcaenc.c     { NULL },
NULL             1005 libavcodec/dcahuff.c     { bitalloc_3_codes,     NULL },
NULL             1006 libavcodec/dcahuff.c     { bitalloc_5_codes_a,   bitalloc_5_codes_b,   bitalloc_5_codes_c,   NULL },
NULL             1007 libavcodec/dcahuff.c     { bitalloc_7_codes_a,   bitalloc_7_codes_b,   bitalloc_7_codes_c,   NULL },
NULL             1008 libavcodec/dcahuff.c     { bitalloc_9_codes_a,   bitalloc_9_codes_b,   bitalloc_9_codes_c,   NULL },
NULL             1009 libavcodec/dcahuff.c     { bitalloc_13_codes_a,  bitalloc_13_codes_b,  bitalloc_13_codes_c,  NULL },
NULL             1011 libavcodec/dcahuff.c       bitalloc_17_codes_e,  bitalloc_17_codes_f,  bitalloc_17_codes_g,  NULL },
NULL             1013 libavcodec/dcahuff.c       bitalloc_25_codes_e,  bitalloc_25_codes_f,  bitalloc_25_codes_g,  NULL },
NULL             1015 libavcodec/dcahuff.c       bitalloc_33_codes_e,  bitalloc_33_codes_f,  bitalloc_33_codes_g,  NULL },
NULL             1017 libavcodec/dcahuff.c       bitalloc_65_codes_e,  bitalloc_65_codes_f,  bitalloc_65_codes_g,  NULL },
NULL             1019 libavcodec/dcahuff.c       bitalloc_129_codes_e, bitalloc_129_codes_f, bitalloc_129_codes_g, NULL }
NULL             1023 libavcodec/dcahuff.c     { bitalloc_3_bits,     NULL },
NULL             1024 libavcodec/dcahuff.c     { bitalloc_5_bits_a,   bitalloc_5_bits_b,   bitalloc_5_bits_c,   NULL },
NULL             1025 libavcodec/dcahuff.c     { bitalloc_7_bits_a,   bitalloc_7_bits_b,   bitalloc_7_bits_c,   NULL },
NULL             1026 libavcodec/dcahuff.c     { bitalloc_9_bits_a,   bitalloc_9_bits_b,   bitalloc_9_bits_c,   NULL },
NULL             1027 libavcodec/dcahuff.c     { bitalloc_13_bits_a,  bitalloc_13_bits_b,  bitalloc_13_bits_c,  NULL },
NULL             1029 libavcodec/dcahuff.c       bitalloc_17_bits_e,  bitalloc_17_bits_f,  bitalloc_17_bits_g,  NULL },
NULL             1031 libavcodec/dcahuff.c       bitalloc_25_bits_e,  bitalloc_25_bits_f,  bitalloc_25_bits_g,  NULL },
NULL             1033 libavcodec/dcahuff.c       bitalloc_33_bits_e,  bitalloc_33_bits_f,  bitalloc_33_bits_g,  NULL },
NULL             1035 libavcodec/dcahuff.c       bitalloc_65_bits_e,  bitalloc_65_bits_f,  bitalloc_65_bits_g,  NULL },
NULL             1037 libavcodec/dcahuff.c       bitalloc_129_bits_e, bitalloc_129_bits_f, bitalloc_129_bits_g, NULL }
NULL              679 libavcodec/dds.c         avctx->execute2(avctx, decompress_texture_thread, frame, NULL, ctx->slice_count);
NULL              865 libavcodec/decode.c         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
NULL              966 libavcodec/decode.c             av_bprint_finalize(&buf, NULL);
NULL              973 libavcodec/decode.c     av_bprint_finalize(&buf, NULL);
NULL             1053 libavcodec/decode.c                 pkt_recoded.side_data = NULL;
NULL             1186 libavcodec/decode.c     AVBufferRef *frames_ref = NULL;
NULL             1259 libavcodec/decode.c             avctx->hwaccel = NULL;
NULL             1274 libavcodec/decode.c     avctx->hwaccel = NULL;
NULL             1347 libavcodec/decode.c             hw_config = NULL;
NULL             1433 libavcodec/decode.c         return NULL;
NULL             1436 libavcodec/decode.c                            frame_pool_free, NULL, 0);
NULL             1439 libavcodec/decode.c         return NULL;
NULL             1448 libavcodec/decode.c                       (FramePool*)avctx->internal->pool->data : NULL;
NULL             1498 libavcodec/decode.c                                          NULL, linesize);
NULL             1513 libavcodec/decode.c                                                         NULL :
NULL             1533 libavcodec/decode.c         pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
NULL             1633 libavcodec/decode.c         pic->data[i] = NULL;
NULL             1812 libavcodec/decode.c             frame->data[i] = NULL;
NULL             1843 libavcodec/decode.c                                NULL, AV_BUFFER_FLAG_READONLY);
NULL              398 libavcodec/dirac.c     *pdsh = NULL;
NULL              180 libavcodec/dirac_arith.h             av_log(NULL, AV_LOG_ERROR, "dirac_get_arith_uint overflow\n");
NULL               55 libavcodec/dirac_dwt.c         av_log(NULL, AV_LOG_WARNING, "Unsupported bit depth = %i\n", bit_depth);
NULL               58 libavcodec/dirac_dwt.c         av_log(NULL, AV_LOG_ERROR, "Unknown wavelet type %d\n", type);
NULL              245 libavcodec/dirac_parser.c     *poutbuf      = NULL;
NULL              257 libavcodec/diracdec.c     DiracFrame *remove_pic = NULL;
NULL              393 libavcodec/diracdec.c     s->thread_buf = NULL;
NULL              734 libavcodec/diracdec.c     uint8_t *buf2 = b2 ? b2->ibuf + top * b2->stride: NULL;
NULL              792 libavcodec/diracdec.c                            &s->plane[0].band[level][orientation], NULL);
NULL             1006 libavcodec/diracdec.c         avctx->execute2(avctx, decode_hq_slice_row, slices, NULL, s->num_y);
NULL             1029 libavcodec/diracdec.c         avctx->execute(avctx, decode_lowdelay_slice, slices, NULL, slice_num,
NULL             1823 libavcodec/diracdec.c         s->weight_func   = NULL;
NULL             1824 libavcodec/diracdec.c         s->biweight_func = NULL;
NULL             2014 libavcodec/diracdec.c     s->ref_pics[0] = s->ref_pics[1] = NULL;
NULL             2122 libavcodec/diracdec.c     DiracFrame *pic   = NULL;
NULL             2203 libavcodec/diracdec.c             if (s->all_frames[i].avframe->data[0] == NULL)
NULL             2278 libavcodec/diracdec.c     s->current_picture = NULL;
NULL              131 libavcodec/dnxhd_parser.c             *poutbuf      = NULL;
NULL              650 libavcodec/dnxhddec.c     avctx->execute2(avctx, dnxhd_decode_row, picture, NULL, ctx->mb_height);
NULL               52 libavcodec/dnxhdenc.c     { "profile",       NULL, offsetof(DNXHDEncContext, profile), AV_OPT_TYPE_INT,
NULL               55 libavcodec/dnxhdenc.c     { "dnxhd",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_PROFILE_DNXHD },
NULL               57 libavcodec/dnxhdenc.c     { "dnxhr_444", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_PROFILE_DNXHR_444 },
NULL               59 libavcodec/dnxhdenc.c     { "dnxhr_hqx", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_PROFILE_DNXHR_HQX },
NULL               61 libavcodec/dnxhdenc.c     { "dnxhr_hq",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_PROFILE_DNXHR_HQ },
NULL               63 libavcodec/dnxhdenc.c     { "dnxhr_sq",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_PROFILE_DNXHR_SQ },
NULL               65 libavcodec/dnxhdenc.c     { "dnxhr_lb",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_PROFILE_DNXHR_LB },
NULL               67 libavcodec/dnxhdenc.c     { NULL }
NULL             1042 libavcodec/dnxhdenc.c                         NULL, NULL, ctx->m.mb_height);
NULL             1126 libavcodec/dnxhdenc.c                                NULL, NULL, ctx->m.mb_height);
NULL             1252 libavcodec/dnxhdenc.c                             NULL, NULL, ctx->m.mb_height);
NULL             1327 libavcodec/dnxhdenc.c     avctx->execute2(avctx, dnxhd_encode_thread, buf, NULL, ctx->m.mb_height);
NULL             1348 libavcodec/dnxhdenc.c     ff_side_data_set_encoder_stats(pkt, ctx->qscale * FF_QP2LAMBDA, NULL, 0, AV_PICTURE_TYPE_I);
NULL             1388 libavcodec/dnxhdenc.c     { NULL },
NULL              179 libavcodec/dolby_e.c     for (i = 0, p = NULL, g = c->groups; i < c->nb_groups; i++, p = g, g++) {
NULL              312 libavcodec/dolby_e.c     for (i = 0, p = NULL, g = c->groups; i < c->nb_groups; i++, p = g, g++) {
NULL              332 libavcodec/dolby_e.c     for (i = 0, p = NULL, g = c->groups; i < c->nb_groups; i++, p = g, g++) {
NULL              111 libavcodec/dsddec.c     avctx->execute2(avctx, dsd_channel, &td, NULL, avctx->channels);
NULL              182 libavcodec/dsicinvideo.c                 av_log(NULL, AV_LOG_ERROR, "RLE overread\n");
NULL               87 libavcodec/dump_extradata_bsf.c         { "k",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
NULL               88 libavcodec/dump_extradata_bsf.c         { "keyframe", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
NULL               89 libavcodec/dump_extradata_bsf.c         { "e",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL      }, .flags = FLAGS, .unit = "freq" },
NULL               90 libavcodec/dump_extradata_bsf.c         { "all",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL      }, .flags = FLAGS, .unit = "freq" },
NULL               91 libavcodec/dump_extradata_bsf.c     { NULL },
NULL              267 libavcodec/dv_profile.c         return NULL;
NULL              297 libavcodec/dv_profile.c     return NULL;
NULL              303 libavcodec/dv_profile.c     return ff_dv_frame_profile(NULL, sys, frame, buf_size);
NULL              313 libavcodec/dv_profile.c     return NULL;
NULL              320 libavcodec/dv_profile.c     const AVDVProfile *p = NULL;
NULL              284 libavcodec/dvbsubdec.c     default_clut.next = NULL;
NULL              926 libavcodec/dvbsubdec.c                 map_table = NULL;
NULL              941 libavcodec/dvbsubdec.c                 map_table = NULL;
NULL              955 libavcodec/dvbsubdec.c                                             non_mod, NULL, x_pos);
NULL             1331 libavcodec/dvbsubdec.c     ctx->display_list = NULL;
NULL             1737 libavcodec/dvbsubdec.c     {NULL}
NULL              103 libavcodec/dvd_nav_parser.c         *poutbuf      = NULL;
NULL              223 libavcodec/dvdec.c         ff_dlog(NULL, "%2d: bits=%04"PRIx32" index=%u\n",
NULL              246 libavcodec/dvdec.c         ff_dlog(NULL, "run=%d level=%d\n", run, level);
NULL              610 libavcodec/dvdec.c     avctx->execute(avctx, dv_decode_video_segment, s->work_chunks, NULL,
NULL               81 libavcodec/dvdsub_parser.c     *poutbuf = NULL;
NULL              225 libavcodec/dvdsubdec.c     const uint8_t *yuv_palette = NULL;
NULL              260 libavcodec/dvdsubdec.c         ff_dlog(NULL, "cmd_pos=0x%04x next=0x%04x date=%d\n",
NULL              268 libavcodec/dvdsubdec.c             ff_dlog(NULL, "cmd=%02x\n", cmd);
NULL              301 libavcodec/dvdsubdec.c                 ff_dlog(NULL, "alpha=%x%x%x%x\n", alpha[0],alpha[1],alpha[2],alpha[3]);
NULL              313 libavcodec/dvdsubdec.c                 ff_dlog(NULL, "x1=%d x2=%d y1=%d y2=%d\n", x1, x2, y1, y2);
NULL              321 libavcodec/dvdsubdec.c                 ff_dlog(NULL, "offset1=0x%04"PRIx64" offset2=0x%04"PRIx64"\n", offset1, offset2);
NULL              329 libavcodec/dvdsubdec.c                 ff_dlog(NULL, "offset1=0x%04"PRIx64" offset2=0x%04"PRIx64"\n", offset1, offset2);
NULL              352 libavcodec/dvdsubdec.c                 ff_dlog(NULL, "unrecognised subpicture command 0x%x\n", cmd);
NULL              615 libavcodec/dvdsubdec.c     ff_dlog(NULL, "start=%d ms end =%d ms\n",
NULL              639 libavcodec/dvdsubdec.c     if ((ifo = fopen(p, "r")) == NULL) {
NULL              769 libavcodec/dvdsubdec.c     { "palette", "set the global palette", OFFSET(palette_str), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, SD },
NULL              770 libavcodec/dvdsubdec.c     { "ifo_palette", "obtain the global palette from .IFO file", OFFSET(ifo_str), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, SD },
NULL              772 libavcodec/dvdsubdec.c     { NULL }
NULL              264 libavcodec/dvdsubenc.c     uint8_t *vrect_data = NULL;
NULL              357 libavcodec/dvdsubenc.c         av_log(NULL, AV_LOG_ERROR, "dvd_subtitle too big\n");
NULL              419 libavcodec/dvdsubenc.c     av_log(NULL, AV_LOG_DEBUG, "subtitle_packet size=%"PTRDIFF_SPECIFIER"\n", q - outbuf);
NULL              475 libavcodec/dvdsubenc.c     {"palette", "set the global palette", OFFSET(palette_str), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, SE },
NULL              477 libavcodec/dvdsubenc.c     { NULL },
NULL              216 libavcodec/dvenc.c         int ps = s->ildct_cmp(NULL, data, NULL, linesize, 8) - 400;
NULL              218 libavcodec/dvenc.c             int is = s->ildct_cmp(NULL, data,            NULL, linesize << 1, 4) +
NULL              219 libavcodec/dvenc.c                      s->ildct_cmp(NULL, data + linesize, NULL, linesize << 1, 4);
NULL              888 libavcodec/dvenc.c                 dv_init_enc_block(enc_blk + 1, NULL,                 linesize, s, 0) +
NULL              890 libavcodec/dvenc.c                 dv_init_enc_block(enc_blk + 3, NULL,                 linesize, s, 0);
NULL             1190 libavcodec/dvenc.c     c->execute(c, dv_encode_video_segment, s->work_chunks, NULL,
NULL             1205 libavcodec/dvenc.c     { NULL },
NULL              221 libavcodec/dxv.c             uint8_t *p3 = ctx->tex_step != 64 ? NULL : frame->data[3] + y * frame->linesize[3] * ctx->texture_block_h;
NULL              225 libavcodec/dxv.c                                          p3 != NULL ? p3 + x * ctx->texture_block_w : NULL, frame->linesize[3],
NULL             1062 libavcodec/dxv.c     ctx->tex_funct = NULL;
NULL             1063 libavcodec/dxv.c     ctx->tex_funct_planar[0] = NULL;
NULL             1064 libavcodec/dxv.c     ctx->tex_funct_planar[1] = NULL;
NULL             1221 libavcodec/dxv.c                     tframe.f, NULL, ctx->slice_count);
NULL              101 libavcodec/dxva2.c     { NULL,                          0 },
NULL              323 libavcodec/dxva2.c     hr = IDirectXVideoDecoderService_GetDecoderConfigurations(sctx->dxva2_service, device_guid, desc, NULL, &cfg_count, &cfg_list);
NULL              420 libavcodec/dxva2.c     D3D11_VIDEO_DECODER_CONFIG *cfg_list = NULL;
NULL              431 libavcodec/dxva2.c     if (cfg_list == NULL)
NULL              483 libavcodec/dxva2.c     if (guid_list == NULL || guid_count == 0) {
NULL              756 libavcodec/dxva2.c             return NULL;
NULL              895 libavcodec/dxva2.c     DECODER_BUFFER_DESC             *buffer = NULL, *buffer_slice = NULL;
NULL              913 libavcodec/dxva2.c                                                       0, NULL);
NULL              919 libavcodec/dxva2.c                                                  NULL);
NULL             1017 libavcodec/dxva2.c             .pExtensionData     = NULL,
NULL             1034 libavcodec/dxva2.c         hr = IDirectXVideoDecoder_EndFrame(DXVA2_CONTEXT(ctx)->decoder, NULL);
NULL               69 libavcodec/dxva2_h264.c             r = NULL;
NULL              306 libavcodec/dxva2_h264.c     DXVA_Slice_H264_Short *slice = NULL;
NULL              307 libavcodec/dxva2_h264.c     void     *dxva_data_ptr = NULL;
NULL              461 libavcodec/dxva2_h264.c     ctx_pic->bitstream      = NULL;
NULL              163 libavcodec/dxva2_hevc.c         const HEVCFrame *frame = NULL;
NULL              182 libavcodec/dxva2_hevc.c             const HEVCFrame *frame = NULL; \
NULL              245 libavcodec/dxva2_hevc.c     DXVA_Slice_HEVC_Short *slice = NULL;
NULL              376 libavcodec/dxva2_hevc.c     ctx_pic->bitstream      = NULL;
NULL              415 libavcodec/dxva2_hevc.c                                     scale ? &ctx_pic->qm : NULL, scale ? sizeof(ctx_pic->qm) : 0,
NULL              271 libavcodec/dxva2_mpeg2.c     ctx_pic->bitstream      = NULL;
NULL              194 libavcodec/dxva2_vc1.c     DXVA_SliceInfo *slice = NULL;
NULL              325 libavcodec/dxva2_vc1.c     ctx_pic->bitstream      = NULL;
NULL              370 libavcodec/dxva2_vc1.c                                     NULL, 0,
NULL              269 libavcodec/dxva2_vp9.c     ctx_pic->bitstream      = NULL;
NULL              302 libavcodec/dxva2_vp9.c                                     NULL, 0,
NULL             1049 libavcodec/eac3_data.c     NULL,
NULL              220 libavcodec/elbg.c     elbg->cells[indexes[0]] = NULL;
NULL              222 libavcodec/elbg.c     elbg->cells[indexes[1]] = NULL;
NULL              375 libavcodec/elsdec.c         ur->rem_rung_list = av_realloc(NULL, RUNG_SPACE);
NULL               78 libavcodec/encode.c     AVFrame *frame = NULL;
NULL              118 libavcodec/encode.c     AVFrame *extended_frame = NULL;
NULL              119 libavcodec/encode.c     AVFrame *padded_frame = NULL;
NULL              448 libavcodec/encode.c         ret = do_encode(avctx, NULL, &got_packet);
NULL              779 libavcodec/error_resilience.c                 is_intra_likely += s->mecc.sad[0](NULL, last_mb_ptr, mb_ptr,
NULL              782 libavcodec/error_resilience.c                 is_intra_likely -= s->mecc.sad[0](NULL, last_mb_ptr,
NULL              902 libavcodec/error_resilience.c     int *linesize = NULL;
NULL              967 libavcodec/error_resilience.c                 s->cur_pic.ref_index[i]  = NULL;
NULL              968 libavcodec/error_resilience.c                 s->cur_pic.motion_val[i] = NULL;
NULL             1314 libavcodec/error_resilience.c                 dest_cb = dest_cr = NULL;
NULL             1359 libavcodec/error_resilience.c         s->cur_pic.ref_index[i]  = NULL;
NULL             1360 libavcodec/error_resilience.c         s->cur_pic.motion_val[i] = NULL;
NULL             1489 libavcodec/evrcdata.h     NULL,
NULL             1491 libavcodec/evrcdata.h     NULL,
NULL              921 libavcodec/evrcdec.c     { NULL }
NULL               40 libavcodec/exif.c     return NULL;
NULL              108 libavcodec/exif.c         ret = exif_add_metadata(logctx, count, type, use_name, NULL,
NULL             1285 libavcodec/exr.c     AVDictionary *metadata = NULL;
NULL             1805 libavcodec/exr.c     avctx->execute2(avctx, decode_block, s->thread_data, NULL, nb_blocks);
NULL             1828 libavcodec/exr.c     avpriv_trc_function trc_func = NULL;
NULL             1934 libavcodec/exr.c     { NULL },
NULL               89 libavcodec/extract_extradata_bsf.c         AVBufferRef *filtered_buf = NULL;
NULL              184 libavcodec/extract_extradata_bsf.c         AVBufferRef *filtered_buf = NULL;
NULL              367 libavcodec/extract_extradata_bsf.c     uint8_t *extradata = NULL;
NULL              420 libavcodec/extract_extradata_bsf.c     { NULL },
NULL              136 libavcodec/faanidct.c     p8idct(block, temp, NULL, 0, 1, 8, 0);
NULL              137 libavcodec/faanidct.c     p8idct(block, temp, NULL, 0, 8, 1, 1);
NULL              150 libavcodec/faanidct.c     p8idct(block, temp, NULL,         0, 1, 8, 0);
NULL              151 libavcodec/faanidct.c     p8idct(NULL , temp, dest, line_size, 8, 1, 2);
NULL              164 libavcodec/faanidct.c     p8idct(block, temp, NULL,         0, 1, 8, 0);
NULL              165 libavcodec/faanidct.c     p8idct(NULL , temp, dest, line_size, 8, 1, 3);
NULL              387 libavcodec/faxcompr.c     int *runs, *ref = NULL, *runend;
NULL               54 libavcodec/ffjni.c     JNIEnv *env = NULL;
NULL               57 libavcodec/ffjni.c     if (java_vm == NULL) {
NULL               68 libavcodec/ffjni.c     if ((env = pthread_getspecific(current_env)) != NULL) {
NULL               75 libavcodec/ffjni.c         if ((*java_vm)->AttachCurrentThread(java_vm, &env, NULL) != 0) {
NULL               77 libavcodec/ffjni.c             env = NULL;
NULL               99 libavcodec/ffjni.c     char *ret = NULL;
NULL              100 libavcodec/ffjni.c     const char *utf_chars = NULL;
NULL              105 libavcodec/ffjni.c         return NULL;
NULL              112 libavcodec/ffjni.c         return NULL;
NULL              121 libavcodec/ffjni.c         return NULL;
NULL              135 libavcodec/ffjni.c         return NULL;
NULL              147 libavcodec/ffjni.c     char *name = NULL;
NULL              148 libavcodec/ffjni.c     char *message = NULL;
NULL              150 libavcodec/ffjni.c     jclass class_class = NULL;
NULL              151 libavcodec/ffjni.c     jmethodID get_name_id = NULL;
NULL              153 libavcodec/ffjni.c     jclass exception_class = NULL;
NULL              154 libavcodec/ffjni.c     jmethodID get_message_id = NULL;
NULL              156 libavcodec/ffjni.c     jstring string = NULL;
NULL              195 libavcodec/ffjni.c         string = NULL;
NULL              217 libavcodec/ffjni.c         string = NULL;
NULL              258 libavcodec/ffjni.c     char *message = NULL;
NULL              288 libavcodec/ffjni.c     jclass last_clazz = NULL;
NULL              297 libavcodec/ffjni.c             last_clazz = NULL;
NULL              393 libavcodec/ffjni.c             *(jclass*)((uint8_t*)jfields + jfields_mapping[i].offset) = NULL;
NULL              397 libavcodec/ffjni.c             *(jfieldID*)((uint8_t*)jfields + jfields_mapping[i].offset) = NULL;
NULL              401 libavcodec/ffjni.c             *(jfieldID*)((uint8_t*)jfields + jfields_mapping[i].offset) = NULL;
NULL              405 libavcodec/ffjni.c             *(jmethodID*)((uint8_t*)jfields + jfields_mapping[i].offset) = NULL;
NULL              409 libavcodec/ffjni.c             *(jmethodID*)((uint8_t*)jfields + jfields_mapping[i].offset) = NULL;
NULL              103 libavcodec/fft_template.c     { NULL },
NULL              104 libavcodec/fft_template.c     { NULL },
NULL              105 libavcodec/fft_template.c     { NULL },
NULL              106 libavcodec/fft_template.c     { NULL },
NULL              125 libavcodec/fft_template.c     NULL, NULL, NULL, NULL,
NULL              207 libavcodec/fft_template.c     s->revtab = NULL;
NULL              208 libavcodec/fft_template.c     s->revtab32 = NULL;
NULL               83 libavcodec/ffv1dec.c     ff_dlog(NULL, "v:%d bias:%d error:%d drift:%d count:%d k:%d",
NULL              274 libavcodec/ffv1dec.c             pdst->state = NULL;
NULL              275 libavcodec/ffv1dec.c             pdst->vlc_state = NULL;
NULL              931 libavcodec/ffv1dec.c                    NULL,
NULL              971 libavcodec/ffv1dec.c     f->cur = NULL;
NULL              235 libavcodec/ffv1enc.c     put_symbol_inline(c, state, v, is_signed, NULL, NULL);
NULL              256 libavcodec/ffv1enc.c     ff_dlog(NULL, "v:%d/%d bias:%d error:%d drift:%d count:%d k:%d\n", v, code,
NULL             1055 libavcodec/ffv1enc.c                                 p->data[1] ? p->data[1] + ps*x + y*p->linesize[1] : NULL,
NULL             1056 libavcodec/ffv1enc.c                                 p->data[2] ? p->data[2] + ps*x + y*p->linesize[2] : NULL,
NULL             1057 libavcodec/ffv1enc.c                                 p->data[3] ? p->data[3] + ps*x + y*p->linesize[3] : NULL};
NULL             1230 libavcodec/ffv1enc.c     avctx->execute(avctx, encode_slice, &f->slice_context[0], NULL,
NULL             1303 libavcodec/ffv1enc.c     { NULL }
NULL             1316 libavcodec/ffv1enc.c     { NULL },
NULL               76 libavcodec/ffv1enc_template.c                 put_symbol_inline(c, p->state[context], diff, 1, NULL, NULL);
NULL              404 libavcodec/fic.c                               NULL, nslices, sizeof(ctx->slice_data[0]))) < 0)
NULL              475 libavcodec/fic.c { NULL },
NULL               52 libavcodec/filter_units_bsf.c     CodedBitstreamUnitType *list = NULL;
NULL              223 libavcodec/filter_units_bsf.c         { .str = NULL }, .flags = FLAGS },
NULL              226 libavcodec/filter_units_bsf.c         { .str = NULL }, .flags = FLAGS },
NULL              228 libavcodec/filter_units_bsf.c     { NULL }
NULL              202 libavcodec/fitsdec.c     p->metadata = NULL;
NULL              313 libavcodec/fitsdec.c     { NULL },
NULL              133 libavcodec/flac_parser.c         return NULL;
NULL              574 libavcodec/flac_parser.c         fpc->best_header   = NULL;
NULL              630 libavcodec/flac_parser.c                                   read_end - read_start, NULL);
NULL              633 libavcodec/flac_parser.c             av_fifo_generic_write(fpc->fifo_buf, pad, sizeof(pad), NULL);
NULL              673 libavcodec/flac_parser.c             read_start = read_end = NULL;
NULL              686 libavcodec/flac_parser.c             fpc->best_header = NULL;
NULL              710 libavcodec/flac_parser.c     *poutbuf      = NULL;
NULL              740 libavcodec/flac_parser.c     fpc->headers = NULL;
NULL              142 libavcodec/flacdec.c     buf_size = av_samples_get_buffer_size(NULL, s->flac_stream_info.channels,
NULL              152 libavcodec/flacdec.c     ret = av_samples_fill_arrays((uint8_t **)s->decoded, NULL,
NULL              175 libavcodec/flacdec.c     flac_parse_block_header(&buf[4], NULL, &metadata_type, &metadata_size);
NULL              209 libavcodec/flacdec.c         flac_parse_block_header(buf, &metadata_last, NULL, &metadata_size);
NULL              653 libavcodec/flacdec.c { NULL },
NULL             1467 libavcodec/flacenc.c { "none",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_LPC_TYPE_NONE },     INT_MIN, INT_MAX, FLAGS, "lpc_type" },
NULL             1468 libavcodec/flacenc.c { "fixed",    NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_LPC_TYPE_FIXED },    INT_MIN, INT_MAX, FLAGS, "lpc_type" },
NULL             1469 libavcodec/flacenc.c { "levinson", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_LPC_TYPE_LEVINSON }, INT_MIN, INT_MAX, FLAGS, "lpc_type" },
NULL             1470 libavcodec/flacenc.c { "cholesky", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_LPC_TYPE_CHOLESKY }, INT_MIN, INT_MAX, FLAGS, "lpc_type" },
NULL             1472 libavcodec/flacenc.c { "min_partition_order",  NULL, offsetof(FlacEncodeContext, options.min_partition_order),  AV_OPT_TYPE_INT, {.i64 = -1 },      -1, MAX_PARTITION_ORDER, FLAGS },
NULL             1473 libavcodec/flacenc.c { "max_partition_order",  NULL, offsetof(FlacEncodeContext, options.max_partition_order),  AV_OPT_TYPE_INT, {.i64 = -1 },      -1, MAX_PARTITION_ORDER, FLAGS },
NULL             1475 libavcodec/flacenc.c { "estimation", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = ORDER_METHOD_EST },    INT_MIN, INT_MAX, FLAGS, "predm" },
NULL             1476 libavcodec/flacenc.c { "2level",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = ORDER_METHOD_2LEVEL }, INT_MIN, INT_MAX, FLAGS, "predm" },
NULL             1477 libavcodec/flacenc.c { "4level",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = ORDER_METHOD_4LEVEL }, INT_MIN, INT_MAX, FLAGS, "predm" },
NULL             1478 libavcodec/flacenc.c { "8level",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = ORDER_METHOD_8LEVEL }, INT_MIN, INT_MAX, FLAGS, "predm" },
NULL             1479 libavcodec/flacenc.c { "search",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = ORDER_METHOD_SEARCH }, INT_MIN, INT_MAX, FLAGS, "predm" },
NULL             1480 libavcodec/flacenc.c { "log",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = ORDER_METHOD_LOG },    INT_MIN, INT_MAX, FLAGS, "predm" },
NULL             1482 libavcodec/flacenc.c { "auto",       NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1                      }, INT_MIN, INT_MAX, FLAGS, "ch_mode" },
NULL             1483 libavcodec/flacenc.c { "indep",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FLAC_CHMODE_INDEPENDENT }, INT_MIN, INT_MAX, FLAGS, "ch_mode" },
NULL             1484 libavcodec/flacenc.c { "left_side",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FLAC_CHMODE_LEFT_SIDE   }, INT_MIN, INT_MAX, FLAGS, "ch_mode" },
NULL             1485 libavcodec/flacenc.c { "right_side", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FLAC_CHMODE_RIGHT_SIDE  }, INT_MIN, INT_MAX, FLAGS, "ch_mode" },
NULL             1486 libavcodec/flacenc.c { "mid_side",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FLAC_CHMODE_MID_SIDE    }, INT_MIN, INT_MAX, FLAGS, "ch_mode" },
NULL             1489 libavcodec/flacenc.c { "min_prediction_order", NULL, offsetof(FlacEncodeContext, options.min_prediction_order), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, MAX_LPC_ORDER, FLAGS },
NULL             1490 libavcodec/flacenc.c { "max_prediction_order", NULL, offsetof(FlacEncodeContext, options.max_prediction_order), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, MAX_LPC_ORDER, FLAGS },
NULL             1492 libavcodec/flacenc.c { NULL },
NULL              149 libavcodec/flashsv.c     zs.zalloc = NULL;
NULL              150 libavcodec/flashsv.c     zs.zfree  = NULL;
NULL              151 libavcodec/flashsv.c     zs.opaque = NULL;
NULL              235 libavcodec/flashsv2enc.c     s->blockbuffer      = NULL;
NULL              363 libavcodec/flashsv2enc.c     s.zalloc = NULL;
NULL              364 libavcodec/flashsv2enc.c     s.zfree  = NULL;
NULL              365 libavcodec/flashsv2enc.c     s.opaque = NULL;
NULL               66 libavcodec/frame_thread_encoder.c     AVPacket *pkt = NULL;
NULL               85 libavcodec/frame_thread_encoder.c         av_fifo_generic_read(c->task_fifo, &task, sizeof(task), NULL);
NULL               96 libavcodec/frame_thread_encoder.c             pkt->data = NULL;
NULL              104 libavcodec/frame_thread_encoder.c         c->finished_tasks[task.index].outdata = pkt; pkt = NULL;
NULL              115 libavcodec/frame_thread_encoder.c     return NULL;
NULL              146 libavcodec/frame_thread_encoder.c         AVDictionaryEntry *con = av_dict_get(options, "context", NULL, AV_DICT_MATCH_CASE);
NULL              155 libavcodec/frame_thread_encoder.c                                                NULL, AV_DICT_MATCH_CASE);
NULL              188 libavcodec/frame_thread_encoder.c     pthread_mutex_init(&c->task_fifo_mutex, NULL);
NULL              189 libavcodec/frame_thread_encoder.c     pthread_mutex_init(&c->finished_task_mutex, NULL);
NULL              190 libavcodec/frame_thread_encoder.c     pthread_mutex_init(&c->buffer_mutex, NULL);
NULL              191 libavcodec/frame_thread_encoder.c     pthread_cond_init(&c->task_fifo_cond, NULL);
NULL              192 libavcodec/frame_thread_encoder.c     pthread_cond_init(&c->finished_task_cond, NULL);
NULL              196 libavcodec/frame_thread_encoder.c         AVDictionary *tmp = NULL;
NULL              208 libavcodec/frame_thread_encoder.c         thread_avctx->internal = NULL;
NULL              228 libavcodec/frame_thread_encoder.c         if(pthread_create(&c->worker[i], NULL, worker, thread_avctx)) {
NULL              253 libavcodec/frame_thread_encoder.c          pthread_join(c->worker[i], NULL);
NULL              259 libavcodec/frame_thread_encoder.c         av_fifo_generic_read(c->task_fifo, &task, sizeof(task), NULL);
NULL              262 libavcodec/frame_thread_encoder.c         task.indata = NULL;
NULL              266 libavcodec/frame_thread_encoder.c         if (c->finished_tasks[i].outdata != NULL) {
NULL              269 libavcodec/frame_thread_encoder.c             c->finished_tasks[i].outdata = NULL;
NULL              302 libavcodec/frame_thread_encoder.c         av_fifo_generic_write(c->task_fifo, &task, sizeof(task), NULL);
NULL               66 libavcodec/fraps.c     s->tmpbuf = NULL;
NULL              108 libavcodec/frwu.c     {NULL}
NULL              421 libavcodec/g2meet.c     return NULL;
NULL              430 libavcodec/g2meet.c         return NULL;
NULL              436 libavcodec/g2meet.c             return NULL;
NULL              473 libavcodec/g2meet.c     if (hash_elem != NULL && hash_elem->list != NULL)
NULL              563 libavcodec/g2meet.c         avpriv_request_sample(NULL, "RGB %d %d %d is out of range\n", R, G, B);
NULL              788 libavcodec/g2meet.c     ePICPixListElem *list, *prev = NULL;
NULL              820 libavcodec/g2meet.c     uint32_t *curr_row = NULL, *above_row = NULL, *above2_row;
NULL             1026 libavcodec/g2meet.c                                dst, c->framebuf_stride, NULL, 0, 0, c->swapuv);
NULL             1100 libavcodec/g2meet.c                                dst, c->framebuf_stride, NULL, 0, 0, 0);
NULL             1136 libavcodec/g2meet.c                           NULL, 0, width, height, pal, npal, tidx);
NULL             1202 libavcodec/g2meet.c         c->epic_buf    = NULL;
NULL             1634 libavcodec/g2meet.c     c->epic_buf = NULL;
NULL               48 libavcodec/g722dec.c     { NULL }
NULL               43 libavcodec/g723_1_parser.c         *poutbuf      = NULL;
NULL             1030 libavcodec/g723_1dec.c     { NULL }
NULL             1196 libavcodec/g723_1enc.c     { NULL },
NULL              382 libavcodec/g726.c     { NULL },
NULL              387 libavcodec/g726.c     { NULL },
NULL               73 libavcodec/g729_parser.c         *poutbuf      = NULL;
NULL              630 libavcodec/get_bits.h         buffer      = NULL;
NULL              414 libavcodec/gif.c     const uint32_t *palette = NULL;
NULL              430 libavcodec/gif.c             palette = NULL;
NULL              476 libavcodec/gif.c     { NULL }
NULL              171 libavcodec/gif_parser.c         *poutbuf      = NULL;
NULL              551 libavcodec/gifdec.c     { NULL },
NULL               91 libavcodec/golomb.h             av_log(NULL, AV_LOG_ERROR, "Invalid UE golomb code\n");
NULL              574 libavcodec/golomb.h     av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d ue  @%5d in %s %s:%d\n",
NULL              589 libavcodec/golomb.h     av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d se  @%5d in %s %s:%d\n",
NULL              604 libavcodec/golomb.h     av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d te  @%5d in %s %s:%d\n",
NULL               74 libavcodec/gsm_parser.c         *poutbuf      = NULL;
NULL               79 libavcodec/h261_parser.c             *poutbuf      = NULL;
NULL              375 libavcodec/h261enc.c     init_uni_h261_rl_tab(&ff_h261_rl_tcoeff, NULL, uni_h261_rl_len);
NULL               79 libavcodec/h263_parser.c             *poutbuf = NULL;
NULL              266 libavcodec/h263dec.c             ff_tlog(NULL, "Decoding MB at %dx%d\n", s->mb_x, s->mb_y);
NULL              437 libavcodec/h263dec.c             s->next_picture_ptr = NULL;
NULL              549 libavcodec/h263dec.c         if (s->studio_profile != (s->idsp.idct == NULL))
NULL              759 libavcodec/h263dec.c     NULL
NULL              374 libavcodec/h2645_parse.c                                                  NULL, NULL, 0);
NULL              385 libavcodec/h2645_parse.c         rbsp->rbsp_buffer = NULL;
NULL              529 libavcodec/h2645_parse.c         pkt->rbsp.rbsp_buffer = NULL;
NULL             1776 libavcodec/h264_cabac.c     decode_cabac_residual_internal(h, sl, block, cat, n, scantable, NULL, max_coeff, 1, 0);
NULL             1786 libavcodec/h264_cabac.c     decode_cabac_residual_internal(h, sl, block, cat, n, scantable, NULL, max_coeff, 1, 1);
NULL              644 libavcodec/h264_cavlc.c         if (decode_residual(h, sl, gb, sl->mb_luma_dc[p], LUMA_DC_BLOCK_INDEX + p, scan, NULL, 16) < 0) {
NULL             1155 libavcodec/h264_cavlc.c                                         NULL, 4 * num_c8x8) < 0) {
NULL               87 libavcodec/h264_levels.c     return NULL;
NULL              133 libavcodec/h264_levels.c     return NULL;
NULL              690 libavcodec/h264_mb.c                         topright = NULL;
NULL              394 libavcodec/h264_metadata_bsf.c                                              0, H264_NAL_AUD, &aud, NULL);
NULL              677 libavcodec/h264_metadata_bsf.c     { "pass",   NULL, 0, AV_OPT_TYPE_CONST,
NULL              679 libavcodec/h264_metadata_bsf.c     { "insert", NULL, 0, AV_OPT_TYPE_CONST,
NULL              681 libavcodec/h264_metadata_bsf.c     { "remove", NULL, 0, AV_OPT_TYPE_CONST,
NULL              733 libavcodec/h264_metadata_bsf.c         OFFSET(sei_user_data), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
NULL              741 libavcodec/h264_metadata_bsf.c     { "pass",    NULL, 0, AV_OPT_TYPE_CONST,
NULL              743 libavcodec/h264_metadata_bsf.c     { "insert",  NULL, 0, AV_OPT_TYPE_CONST,
NULL              745 libavcodec/h264_metadata_bsf.c     { "remove",  NULL, 0, AV_OPT_TYPE_CONST,
NULL              747 libavcodec/h264_metadata_bsf.c     { "extract", NULL, 0, AV_OPT_TYPE_CONST,
NULL              769 libavcodec/h264_metadata_bsf.c #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL              793 libavcodec/h264_metadata_bsf.c     { NULL }
NULL               71 libavcodec/h264_mp4toannexb_bsf.c     uint8_t *out                        = NULL, unit_nb, sps_done = 0;
NULL              249 libavcodec/h264_parser.c     H2645RBSP rbsp = { NULL };
NULL              250 libavcodec/h264_parser.c     H2645NAL nal = { NULL };
NULL              364 libavcodec/h264_parser.c             p->ps.pps = NULL;
NULL              365 libavcodec/h264_parser.c             p->ps.sps = NULL;
NULL              593 libavcodec/h264_parser.c             *poutbuf      = NULL;
NULL              265 libavcodec/h264_ps.c                     av_log(NULL, AV_LOG_ERROR, "delta scale %d is invalid\n", v);
NULL              329 libavcodec/h264_ps.c     ps->pps = NULL;
NULL              330 libavcodec/h264_ps.c     ps->sps = NULL;
NULL              420 libavcodec/h264_ps.c         ret = decode_scaling_matrices(gb, sps, NULL, 1,
NULL              769 libavcodec/h264_ps.c                                pps_free, NULL, 0);
NULL              316 libavcodec/h264_refs.c             H264Picture *ref = NULL;
NULL              505 libavcodec/h264_refs.c     return NULL;
NULL              517 libavcodec/h264_refs.c     h->short_ref[i] = NULL;
NULL              557 libavcodec/h264_refs.c             h->long_ref[i]           = NULL;
NULL              581 libavcodec/h264_refs.c         h->short_ref[i] = NULL;
NULL              539 libavcodec/h264_sei.c         return NULL;
NULL              278 libavcodec/h264_slice.c      &(new_ctx)->DPB[(pic) - (old_ctx)->DPB] : NULL)
NULL              345 libavcodec/h264_slice.c     h->ps.pps = NULL;
NULL              346 libavcodec/h264_slice.c     h->ps.sps = NULL;
NULL              470 libavcodec/h264_slice.c     h->cur_pic_ptr = NULL;
NULL              507 libavcodec/h264_slice.c         ff_h264_set_erpic(&h->slice_ctx[0].er.cur_pic, NULL);
NULL              520 libavcodec/h264_slice.c         ff_h264_set_erpic(&h->slice_ctx[0].er.last_pic, NULL);
NULL              521 libavcodec/h264_slice.c         ff_h264_set_erpic(&h->slice_ctx[0].er.next_pic, NULL);
NULL              543 libavcodec/h264_slice.c     h->next_output_pic = NULL;
NULL             1012 libavcodec/h264_slice.c         h->ps.pps = NULL;
NULL             1287 libavcodec/h264_slice.c         a53->buf_ref = NULL;
NULL             1427 libavcodec/h264_slice.c                 h->next_output_pic = NULL;
NULL             1550 libavcodec/h264_slice.c         H264Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
NULL             1622 libavcodec/h264_slice.c             h->cur_pic_ptr = NULL;
NULL             1633 libavcodec/h264_slice.c                 h->cur_pic_ptr = NULL;
NULL             1639 libavcodec/h264_slice.c                 h->cur_pic_ptr = NULL;
NULL             2127 libavcodec/h264_slice.c                 h->cur_pic_ptr = NULL;
NULL             2139 libavcodec/h264_slice.c             h->cur_pic_ptr = NULL;
NULL             2834 libavcodec/h264_slice.c                        NULL, context_count, sizeof(h->slice_ctx[0]));
NULL              150 libavcodec/h264dec.c     h->slice_table = NULL;
NULL              369 libavcodec/h264dec.c     h->cur_pic_ptr = NULL;
NULL              478 libavcodec/h264dec.c         h->delayed_pic[j] = NULL;
NULL              501 libavcodec/h264dec.c     h->cur_pic_ptr = NULL;
NULL              593 libavcodec/h264dec.c             h->cur_pic_ptr = NULL;
NULL              781 libavcodec/h264dec.c             ff_h264_set_erpic(&sl->er.last_pic, NULL);
NULL              937 libavcodec/h264dec.c             ff_print_debug_info2(h->avctx, dst, NULL,
NULL              941 libavcodec/h264dec.c                                  NULL,
NULL              955 libavcodec/h264dec.c     h->cur_pic_ptr = NULL;
NULL             1002 libavcodec/h264dec.c     if (h->is_avc && av_packet_get_side_data(avpkt, AV_PKT_DATA_NEW_EXTRADATA, NULL)) {
NULL             1061 libavcodec/h264dec.c     { NULL },
NULL             1105 libavcodec/h264dec.c                                NULL
NULL              134 libavcodec/h264dsp.c     c->h264_loop_filter_strength= NULL;
NULL              720 libavcodec/h264pred_template.c     FUNCC(pred4x4_dc)(src, NULL, stride);
NULL              726 libavcodec/h264pred_template.c     FUNCC(pred4x4_dc)(src, NULL, stride);
NULL              732 libavcodec/h264pred_template.c     FUNCC(pred4x4_top_dc)(src, NULL, stride);
NULL              738 libavcodec/h264pred_template.c     FUNCC(pred4x4_top_dc)(src, NULL, stride);
NULL              744 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src + 4*stride                  , NULL, stride);
NULL              745 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src + 4*stride + 4*sizeof(pixel), NULL, stride);
NULL              751 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src + 4*stride                  , NULL, stride);
NULL              752 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src + 4*stride + 4*sizeof(pixel), NULL, stride);
NULL              758 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src                  , NULL, stride);
NULL              759 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src + 4*sizeof(pixel), NULL, stride);
NULL              765 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src                  , NULL, stride);
NULL              766 libavcodec/h264pred_template.c     FUNCC(pred4x4_128_dc)(src + 4*sizeof(pixel), NULL, stride);
NULL               80 libavcodec/h265_metadata_bsf.c     const H265RawProfileTierLevel *ptl = NULL;
NULL               81 libavcodec/h265_metadata_bsf.c     const H265RawHRDParameters    *hrd = NULL;
NULL              453 libavcodec/h265_metadata_bsf.c                                              0, HEVC_NAL_AUD, aud, NULL);
NULL              553 libavcodec/h265_metadata_bsf.c     { "pass",   NULL, 0, AV_OPT_TYPE_CONST,
NULL              555 libavcodec/h265_metadata_bsf.c     { "insert", NULL, 0, AV_OPT_TYPE_CONST,
NULL              557 libavcodec/h265_metadata_bsf.c     { "remove", NULL, 0, AV_OPT_TYPE_CONST,
NULL              612 libavcodec/h265_metadata_bsf.c #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL              630 libavcodec/h265_metadata_bsf.c     { NULL }
NULL              132 libavcodec/h265_profile_level.c     return NULL;
NULL              140 libavcodec/h265_profile_level.c         return NULL;
NULL              171 libavcodec/h265_profile_level.c     return NULL;
NULL              188 libavcodec/h265_profile_level.c         profile = NULL;
NULL              258 libavcodec/h265_profile_level.c     return NULL;
NULL              374 libavcodec/hapdec.c             avctx->execute2(avctx, decompress_chunks_thread, NULL,
NULL              387 libavcodec/hapdec.c             avctx->execute2(avctx, decompress_texture_thread, tframe.f, NULL, ctx->slice_count);
NULL              390 libavcodec/hapdec.c             avctx->execute2(avctx, decompress_texture2_thread, tframe.f, NULL, ctx->slice_count);
NULL              292 libavcodec/hapenc.c         ctx->tex_buf = NULL;
NULL              334 libavcodec/hapenc.c     { "format", NULL, OFFSET(opt_tex_fmt), AV_OPT_TYPE_INT, { .i64 = HAP_FMT_RGBDXT1 }, HAP_FMT_RGBDXT1, HAP_FMT_YCOCGDXT5, FLAGS, "format" },
NULL              342 libavcodec/hapenc.c     { NULL },
NULL              118 libavcodec/hapqa_extract_bsf.c     { NULL },
NULL              467 libavcodec/hevc_cabac.c     return skip_bytes(&lc->cc, 0) == NULL ? AVERROR_INVALIDDATA : 0;
NULL             1061 libavcodec/hevc_cabac.c     const uint8_t *scale_matrix = NULL;
NULL               46 libavcodec/hevc_mp4toannexb_bsf.c     uint8_t *new_extradata = NULL;
NULL              323 libavcodec/hevc_parser.c             *poutbuf      = NULL;
NULL               84 libavcodec/hevc_ps.c         s->pps = NULL;
NULL               93 libavcodec/hevc_ps.c             s->sps = NULL;
NULL              110 libavcodec/hevc_ps.c             s->vps = NULL;
NULL              445 libavcodec/hevc_ps.c                 av_log(NULL, AV_LOG_ERROR, "nb_cpb %d invalid\n", nb_cpb);
NULL             1498 libavcodec/hevc_ps.c     HEVCSPS      *sps = NULL;
NULL             1511 libavcodec/hevc_ps.c                                hevc_pps_free, NULL, 0);
NULL             1754 libavcodec/hevc_ps.c     ps->sps = NULL;
NULL             1755 libavcodec/hevc_ps.c     ps->pps = NULL;
NULL             1756 libavcodec/hevc_ps.c     ps->vps = NULL;
NULL               94 libavcodec/hevc_ps_enc.c         avpriv_report_missing_feature(NULL, "Writing layer_id_included_flag");
NULL              108 libavcodec/hevc_ps_enc.c             avpriv_report_missing_feature(NULL, "Writing HRD parameters");
NULL               43 libavcodec/hevc_refs.c         frame->tab_mvf = NULL;
NULL               47 libavcodec/hevc_refs.c         frame->rpl_tab    = NULL;
NULL               48 libavcodec/hevc_refs.c         frame->refPicList = NULL;
NULL               50 libavcodec/hevc_refs.c         frame->collocated_ref = NULL;
NULL               53 libavcodec/hevc_refs.c         frame->hwaccel_picture_private = NULL;
NULL               93 libavcodec/hevc_refs.c             return NULL;
NULL              129 libavcodec/hevc_refs.c         return NULL;
NULL              132 libavcodec/hevc_refs.c     return NULL;
NULL              377 libavcodec/hevc_refs.c     return NULL;
NULL              393 libavcodec/hevc_refs.c         return NULL;
NULL              456 libavcodec/hevcdec.c     s->ps.sps = NULL;
NULL              457 libavcodec/hevcdec.c     s->ps.vps = NULL;
NULL              502 libavcodec/hevcdec.c     s->ps.sps = NULL;
NULL              673 libavcodec/hevcdec.c             s->sh.short_term_rps = NULL;
NULL             1815 libavcodec/hevcdec.c     HEVCFrame *ref0 = NULL, *ref1 = NULL;
NULL             2792 libavcodec/hevcdec.c         a53->buf_ref = NULL;
NULL             2855 libavcodec/hevcdec.c     s->ref = NULL;
NULL             3002 libavcodec/hevcdec.c             ret = s->avctx->hwaccel->start_frame(s->avctx, NULL, 0);
NULL             3051 libavcodec/hevcdec.c     s->ref = NULL;
NULL             3225 libavcodec/hevcdec.c     s->ref = NULL;
NULL             3339 libavcodec/hevcdec.c         s->HEVClc = NULL;
NULL             3421 libavcodec/hevcdec.c         s->ps.sps = NULL;
NULL             3543 libavcodec/hevcdec.c     { NULL },
NULL             3592 libavcodec/hevcdec.c                                NULL
NULL              508 libavcodec/hqx.c     avctx->execute2(avctx, decode_slice_thread, NULL, NULL, 16);
NULL               50 libavcodec/huffyuv.c             av_log(NULL, AV_LOG_ERROR, "Error generating huffman table\n");
NULL               92 libavcodec/huffyuv.c         s->temp16[i] = NULL;
NULL              109 libavcodec/huffyuvdec.c             av_log(NULL, AV_LOG_ERROR, "Error reading huffman table\n");
NULL             1056 libavcodec/huffyuvenc.c         { "left",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LEFT },   INT_MIN, INT_MAX, VE, "pred" }, \
NULL             1057 libavcodec/huffyuvenc.c         { "plane",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PLANE },  INT_MIN, INT_MAX, VE, "pred" }, \
NULL             1058 libavcodec/huffyuvenc.c         { "median", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MEDIAN }, INT_MIN, INT_MAX, VE, "pred" }, \
NULL             1062 libavcodec/huffyuvenc.c     { NULL },
NULL             1068 libavcodec/huffyuvenc.c     { NULL },
NULL               64 libavcodec/hwconfig.h         .hwaccel         = NULL, \
NULL               93 libavcodec/hwconfig.h         .hwaccel         = NULL, \
NULL              248 libavcodec/idcinvideo.c     { NULL },
NULL               78 libavcodec/idctdsp.c         av_log(NULL, AV_LOG_ERROR,
NULL              263 libavcodec/idctdsp.c                 c->idct_add              = NULL;
NULL              264 libavcodec/idctdsp.c                 c->idct                  = NULL;
NULL              452 libavcodec/iff.c     if ((err = extract_header(avctx, NULL)) < 0)
NULL              469 libavcodec/iff.c         av_log(NULL, AV_LOG_WARNING, "Ignoring extra planes beyond 8\n");
NULL              576 libavcodec/iff.c         av_log(NULL, AV_LOG_WARNING, "decode_byterun ended before plane size\n");
NULL              961 libavcodec/iff.c                     av_log(NULL, AV_LOG_ERROR, "cols*bpp is invalid (%"PRId32"*%d)", cols, bpp);
NULL             1009 libavcodec/iff.c                             av_log(NULL, AV_LOG_ERROR, "bytes %"PRId32" is invalid", bytes);
NULL              172 libavcodec/iirfilter.c         return NULL;
NULL              201 libavcodec/iirfilter.c     return NULL;
NULL              869 libavcodec/ilbcdec.c     if (vector == NULL || length <= 0) {
NULL              120 libavcodec/imgconvert.c     av_image_fill_max_pixsteps(max_step, NULL, desc);
NULL              157 libavcodec/imgconvert.c         av_image_fill_max_pixsteps(max_step, NULL, desc);
NULL              495 libavcodec/imm4.c                            cbphi_bits, 1, 1, cbphi_codes, 1, 1, NULL, 0, 0, 64);
NULL               66 libavcodec/imm5.c     ret = ff_codec_open2_recursive(ctx->h264_avctx, codec, NULL);
NULL               79 libavcodec/imm5.c     ret = ff_codec_open2_recursive(ctx->hevc_avctx, codec, NULL);
NULL               54 libavcodec/indeo4.c     { NULL, NULL, 0 }, /* inverse DCT 8x8 */
NULL               55 libavcodec/indeo4.c     { NULL, NULL, 0 }, /* inverse DCT 8x1 */
NULL               56 libavcodec/indeo4.c     { NULL, NULL, 0 }, /* inverse DCT 1x8 */
NULL               59 libavcodec/indeo4.c     { NULL, NULL, 0 }, /* no transform 4x4 */
NULL               64 libavcodec/indeo4.c     { NULL, NULL, 0 }, /* inverse DCT 4x4 */
NULL              442 libavcodec/indeo4.c     band->intra_scale = NULL;
NULL              443 libavcodec/indeo4.c     band->inter_scale = NULL;
NULL              335 libavcodec/interplayacm.c             av_log(NULL, AV_LOG_ERROR, "Too large b = %d > 26\n", b);
NULL              364 libavcodec/interplayacm.c             av_log(NULL, AV_LOG_ERROR, "Too large b = %d > 124\n", b);
NULL              392 libavcodec/interplayacm.c             av_log(NULL, AV_LOG_ERROR, "Too large b = %d > 120\n", b);
NULL             1211 libavcodec/interplayvideo.c     if (av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, NULL)) {
NULL              119 libavcodec/intrax8.c         av_log(NULL, AV_LOG_ERROR, "table size %"SIZE_SPECIFIER" does not match needed %i\n",
NULL              131 libavcodec/intrax8.c     w->j_orient_vlc = NULL;
NULL              771 libavcodec/ituh263enc.c         init_uni_h263_rl_tab(&ff_rl_intra_aic, NULL, uni_h263_intra_aic_rl_len);
NULL              772 libavcodec/ituh263enc.c         init_uni_h263_rl_tab(&ff_h263_rl_inter    , NULL, uni_h263_inter_rl_len);
NULL              395 libavcodec/ivi.c                     av_log(NULL, AV_LOG_DEBUG, "ref_tile mismatch\n");
NULL              420 libavcodec/ivi.c                 avpriv_request_sample(NULL, "Odd tiles");
NULL              581 libavcodec/ivi.c         av_log(NULL, AV_LOG_ERROR, "Too large transform\n");
NULL              938 libavcodec/ivi.c         return NULL;
NULL              385 libavcodec/j2kenc.c         return NULL;
NULL             1226 libavcodec/j2kenc.c     { "j2k",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K   }, 0,         0,           VE, "format"      },
NULL             1227 libavcodec/j2kenc.c     { "jp2",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2   }, 0,         0,           VE, "format"      },
NULL             1231 libavcodec/j2kenc.c     { "dwt97int",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = 0           }, INT_MIN, INT_MAX,       VE, "pred"        },
NULL             1232 libavcodec/j2kenc.c     { "dwt53",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = 0           }, INT_MIN, INT_MAX,       VE, "pred"        },
NULL             1234 libavcodec/j2kenc.c     { NULL }
NULL              185 libavcodec/jacosubdec.c         ret = ff_ass_add_rect(sub, buffer.str, s->readorder++, 0, NULL, NULL);
NULL              186 libavcodec/jacosubdec.c         av_bprint_finalize(&buffer, NULL);
NULL               45 libavcodec/jni.c     if (java_vm == NULL) {
NULL               76 libavcodec/jni.c     return NULL;
NULL               64 libavcodec/jpeg2000.c         return NULL;
NULL               81 libavcodec/jpeg2000.c     t[0].parent = NULL;
NULL              322 libavcodec/jpeg2000.c         prec->cblk = NULL;
NULL              432 libavcodec/jpeg2000.c         band->prec = NULL;
NULL              483 libavcodec/jpeg2000.c         comp->i_data = NULL;
NULL              489 libavcodec/jpeg2000.c         comp->f_data = NULL;
NULL              174 libavcodec/jpeg2000_parser.c             *poutbuf = NULL;
NULL              269 libavcodec/jpeg2000dec.c     const enum AVPixelFormat *possible_fmts = NULL;
NULL             2407 libavcodec/jpeg2000dec.c     avctx->execute2(avctx, jpeg2000_decode_tile, picture, NULL, s->numXtiles * s->numYtiles);
NULL             2432 libavcodec/jpeg2000dec.c     { NULL },
NULL              100 libavcodec/jpegls.c     ff_dlog(NULL, "[JPEG-LS RESET] T=%i,%i,%i\n", s->T1, s->T2, s->T3);
NULL              285 libavcodec/jpeglsdec.c                 av_log(NULL, AV_LOG_ERROR, "run overflow\n");
NULL              263 libavcodec/jpeglsenc.c     uint8_t *buf2 = NULL;
NULL              264 libavcodec/jpeglsenc.c     uint8_t *zero = NULL;
NULL              265 libavcodec/jpeglsenc.c     uint8_t *cur  = NULL;
NULL              266 libavcodec/jpeglsenc.c     uint8_t *last = NULL;
NULL              267 libavcodec/jpeglsenc.c     JLSState *state = NULL;
NULL              452 libavcodec/jpeglsenc.c     { "left",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              453 libavcodec/jpeglsenc.c     { "plane",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              454 libavcodec/jpeglsenc.c     { "median", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 2 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              456 libavcodec/jpeglsenc.c     { NULL},
NULL               97 libavcodec/latm_parser.c             *poutbuf      = NULL;
NULL              162 libavcodec/libaomdec.c     const void *iter      = NULL;
NULL              166 libavcodec/libaomdec.c     if (aom_codec_decode(&ctx->decoder, avpkt->data, avpkt->size, NULL) !=
NULL              216 libavcodec/libaomenc.c     cx_frame->next = NULL;
NULL              888 libavcodec/libaomenc.c     const void *iter = NULL;
NULL              980 libavcodec/libaomenc.c     struct aom_image *rawimg = NULL;
NULL             1096 libavcodec/libaomenc.c     { "tiles",            "Tile columns x rows", OFFSET(tile_cols), AV_OPT_TYPE_IMAGE_SIZE, { .str = NULL }, 0, 0, VE },
NULL             1108 libavcodec/libaomenc.c     { "psnr",            NULL,         0, AV_OPT_TYPE_CONST, {.i64 = AOM_TUNE_PSNR}, 0, 0, VE, "tune"},
NULL             1109 libavcodec/libaomenc.c     { "ssim",            NULL,         0, AV_OPT_TYPE_CONST, {.i64 = AOM_TUNE_SSIM}, 0, 0, VE, "tune"},
NULL             1110 libavcodec/libaomenc.c     { NULL },
NULL             1119 libavcodec/libaomenc.c     { NULL },
NULL              135 libavcodec/libaribb24.c     void(* arib_dec_init)(arib_decoder_t* decoder) = NULL;
NULL              277 libavcodec/libaribb24.c                               0, NULL, NULL);
NULL              280 libavcodec/libaribb24.c     av_bprint_finalize(&buf, NULL);
NULL              291 libavcodec/libaribb24.c     const unsigned char *parsed_data = NULL;
NULL              292 libavcodec/libaribb24.c     char *decoded_subtitle = NULL;
NULL              370 libavcodec/libaribb24.c       OFFSET(aribb24_base_path), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, SD },
NULL              373 libavcodec/libaribb24.c     { NULL }
NULL               38 libavcodec/libcodec2.c     { NULL },
NULL               74 libavcodec/libcodec2.c         c2->codec = NULL;
NULL               73 libavcodec/libdav1d.c     ret = av_image_fill_arrays(data, linesize, NULL, format, FFALIGN(p->p.w, 128),
NULL               81 libavcodec/libdav1d.c         dav1d->pool = av_buffer_pool_init(ret + DAV1D_PICTURE_ALIGNMENT * 2, NULL);
NULL              203 libavcodec/libdav1d.c             pkt.buf = NULL;
NULL              395 libavcodec/libdav1d.c     { NULL }
NULL              171 libavcodec/libdavs2.c         cad->decoder = NULL;
NULL               76 libavcodec/libfdk-aacdec.c                      OFFSET(drc_boost),      AV_OPT_TYPE_INT,   { .i64 = -1 }, -1, 127, AD, NULL    },
NULL               78 libavcodec/libfdk-aacdec.c                      OFFSET(drc_cut),        AV_OPT_TYPE_INT,   { .i64 = -1 }, -1, 127, AD, NULL    },
NULL               80 libavcodec/libfdk-aacdec.c                      OFFSET(drc_level),      AV_OPT_TYPE_INT,   { .i64 = -1},  -2, 127, AD, NULL    },
NULL               82 libavcodec/libfdk-aacdec.c                      OFFSET(drc_heavy),      AV_OPT_TYPE_INT,   { .i64 = -1},  -1, 1,   AD, NULL    },
NULL               89 libavcodec/libfdk-aacdec.c                      OFFSET(drc_effect),     AV_OPT_TYPE_INT,   { .i64 = -1},  -1, 8,   AD, NULL    },
NULL               91 libavcodec/libfdk-aacdec.c     { NULL }
NULL               67 libavcodec/libfdk-aacenc.c     { NULL }
NULL              315 libavcodec/libfdk-aacenc.c     if ((err = aacEncEncode(s->handle, NULL, NULL, NULL, NULL)) != AACENC_OK) {
NULL              439 libavcodec/libfdk-aacenc.c     { NULL }
NULL               79 libavcodec/libgsmdec.c     s->state = NULL;
NULL               45 libavcodec/libgsmenc.c     avctx->priv_data = NULL;
NULL              119 libavcodec/libgsmenc.c     { NULL },
NULL               50 libavcodec/libilbc.c     { NULL }
NULL              126 libavcodec/libilbc.c     { NULL }
NULL              181 libavcodec/libilbc.c     { NULL }
NULL               55 libavcodec/libkvazaar.c     kvz_config *cfg = NULL;
NULL               56 libavcodec/libkvazaar.c     kvz_encoder *enc = NULL;
NULL              104 libavcodec/libkvazaar.c         AVDictionary *dict = NULL;
NULL              106 libavcodec/libkvazaar.c             AVDictionaryEntry *entry = NULL;
NULL              124 libavcodec/libkvazaar.c         kvz_data_chunk *data_out = NULL;
NULL              125 libavcodec/libkvazaar.c         kvz_data_chunk *chunk = NULL;
NULL              140 libavcodec/libkvazaar.c         for (chunk = data_out; chunk != NULL; chunk = chunk->next) {
NULL              172 libavcodec/libkvazaar.c     kvz_picture *input_pic = NULL;
NULL              173 libavcodec/libkvazaar.c     kvz_picture *recon_pic = NULL;
NULL              175 libavcodec/libkvazaar.c     kvz_data_chunk *data_out = NULL;
NULL              230 libavcodec/libkvazaar.c                                       &recon_pic, NULL,
NULL              240 libavcodec/libkvazaar.c         kvz_data_chunk *chunk = NULL;
NULL              249 libavcodec/libkvazaar.c         for (chunk = data_out; chunk != NULL; chunk = chunk->next) {
NULL              284 libavcodec/libkvazaar.c         OFFSET(kvz_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, VE },
NULL              285 libavcodec/libkvazaar.c     { NULL },
NULL              297 libavcodec/libkvazaar.c     { NULL },
NULL              311 libavcodec/libmp3lame.c     { NULL },
NULL              323 libavcodec/libmp3lame.c     { NULL },
NULL              184 libavcodec/libopencore-amr.c     { NULL }
NULL              238 libavcodec/libopencore-amr.c     int16_t *flush_buf = NULL;
NULL              239 libavcodec/libopencore-amr.c     const int16_t *samples = frame ? (const int16_t *)frame->data[0] : NULL;
NULL               82 libavcodec/libopenh264enc.c #define PROFILE(name, value)  name, NULL, 0, AV_OPT_TYPE_CONST, { .i64 = value }, 0, 0, VE, "profile"
NULL               93 libavcodec/libopenh264enc.c         { "default",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
NULL               94 libavcodec/libopenh264enc.c         { "cavlc",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
NULL               95 libavcodec/libopenh264enc.c         { "cabac",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
NULL               96 libavcodec/libopenh264enc.c         { "vlc",              NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
NULL               97 libavcodec/libopenh264enc.c         { "ac",               NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
NULL              108 libavcodec/libopenh264enc.c     { NULL }
NULL              429 libavcodec/libopenh264enc.c     { NULL },
NULL              196 libavcodec/libopenjpegdec.c     const enum AVPixelFormat *possible_fmts = NULL;
NULL              334 libavcodec/libopenjpegdec.c     opj_image_t *image = NULL;
NULL              336 libavcodec/libopenjpegdec.c     opj_codec_t *dec = NULL;
NULL              337 libavcodec/libopenjpegdec.c     opj_stream_t *stream = NULL;
NULL              386 libavcodec/libopenjpegdec.c     opj_stream_set_user_data(stream, &reader, NULL);
NULL              495 libavcodec/libopenjpegdec.c     { NULL },
NULL              251 libavcodec/libopenjpegenc.c         return NULL;
NULL              267 libavcodec/libopenjpegenc.c         return NULL;
NULL              559 libavcodec/libopenjpegenc.c     opj_codec_t *compress   = NULL;
NULL              560 libavcodec/libopenjpegenc.c     opj_stream_t *stream    = NULL;
NULL              700 libavcodec/libopenjpegenc.c     opj_stream_set_user_data(stream, &writer, NULL);
NULL              727 libavcodec/libopenjpegenc.c     { "j2k",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CODEC_J2K   }, 0,         0,           VE, "format"      },
NULL              728 libavcodec/libopenjpegenc.c     { "jp2",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CODEC_JP2   }, 0,         0,           VE, "format"      },
NULL              729 libavcodec/libopenjpegenc.c     { "profile",       NULL,                OFFSET(profile),       AV_OPT_TYPE_INT,   { .i64 = OPJ_STD_RSIZ    }, OPJ_STD_RSIZ,  OPJ_CINEMA4K,    VE, "profile"     },
NULL              730 libavcodec/libopenjpegenc.c     { "jpeg2000",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_STD_RSIZ    }, 0,         0,           VE, "profile"     },
NULL              731 libavcodec/libopenjpegenc.c     { "cinema2k",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CINEMA2K    }, 0,         0,           VE, "profile"     },
NULL              732 libavcodec/libopenjpegenc.c     { "cinema4k",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CINEMA4K    }, 0,         0,           VE, "profile"     },
NULL              734 libavcodec/libopenjpegenc.c     { "off",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_OFF         }, 0,         0,           VE, "cinema_mode" },
NULL              735 libavcodec/libopenjpegenc.c     { "2k_24",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CINEMA2K_24 }, 0,         0,           VE, "cinema_mode" },
NULL              736 libavcodec/libopenjpegenc.c     { "2k_48",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CINEMA2K_48 }, 0,         0,           VE, "cinema_mode" },
NULL              737 libavcodec/libopenjpegenc.c     { "4k_24",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CINEMA4K_24 }, 0,         0,           VE, "cinema_mode" },
NULL              739 libavcodec/libopenjpegenc.c     { "lrcp",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_LRCP    }, 0,         0,           VE, "prog_order"  },
NULL              740 libavcodec/libopenjpegenc.c     { "rlcp",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_RLCP    }, 0,         0,           VE, "prog_order"  },
NULL              741 libavcodec/libopenjpegenc.c     { "rpcl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_RPCL    }, 0,         0,           VE, "prog_order"  },
NULL              742 libavcodec/libopenjpegenc.c     { "pcrl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_PCRL    }, 0,         0,           VE, "prog_order"  },
NULL              743 libavcodec/libopenjpegenc.c     { "cprl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OPJ_CPRL    }, 0,         0,           VE, "prog_order"  },
NULL              744 libavcodec/libopenjpegenc.c     { "numresolution", NULL,                OFFSET(numresolution), AV_OPT_TYPE_INT,   { .i64 = 6            }, 0,         33,          VE                },
NULL              745 libavcodec/libopenjpegenc.c     { "irreversible",  NULL,                OFFSET(irreversible),  AV_OPT_TYPE_INT,   { .i64 = 0            }, 0,         1,           VE                },
NULL              746 libavcodec/libopenjpegenc.c     { "disto_alloc",   NULL,                OFFSET(disto_alloc),   AV_OPT_TYPE_INT,   { .i64 = 1            }, 0,         1,           VE                },
NULL              747 libavcodec/libopenjpegenc.c     { "fixed_quality", NULL,                OFFSET(fixed_quality), AV_OPT_TYPE_INT,   { .i64 = 0            }, 0,         1,           VE                },
NULL              748 libavcodec/libopenjpegenc.c     { NULL },
NULL              146 libavcodec/libopusdec.c         opus->dec = NULL;
NULL              217 libavcodec/libopusdec.c     { NULL },
NULL              208 libavcodec/libopusenc.c     const uint8_t * channel_map = NULL;
NULL              459 libavcodec/libopusenc.c         if (opus->encoder_channel_map != NULL) {
NULL              555 libavcodec/libopusenc.c     { NULL },
NULL              568 libavcodec/libopusenc.c     { NULL },
NULL              166 libavcodec/librav1e.c         ctx->ctx = NULL;
NULL              179 libavcodec/librav1e.c     RaConfig *cfg = NULL;
NULL              265 libavcodec/librav1e.c         AVDictionaryEntry *en = NULL;
NULL              422 libavcodec/librav1e.c     RaFrame *rframe = NULL;
NULL              466 libavcodec/librav1e.c     RaPacket *rpkt = NULL;
NULL              554 libavcodec/librav1e.c     { NULL }
NULL              563 libavcodec/librav1e.c     { NULL }
NULL               44 libavcodec/librsvgdec.c     cairo_t *crender = NULL;
NULL               45 libavcodec/librsvgdec.c     GError *error = NULL;
NULL              110 libavcodec/librsvgdec.c     { NULL },
NULL               44 libavcodec/libspeexdec.c     SpeexHeader *header = NULL;
NULL              272 libavcodec/libspeexenc.c     int16_t *samples      = frame ? (int16_t *)frame->data[0] : NULL;
NULL              334 libavcodec/libspeexenc.c     { NULL },
NULL              347 libavcodec/libspeexenc.c     { NULL },
NULL               60 libavcodec/libtheoraenc.c     const char* message = NULL;
NULL              179 libavcodec/libtwolame.c         { "auto", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_AUTO_MODE }, 0, 0, AE, "mode" },
NULL              180 libavcodec/libtwolame.c         { "stereo", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_STEREO }, 0, 0, AE, "mode" },
NULL              181 libavcodec/libtwolame.c         { "joint_stereo", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_JOINT_STEREO }, 0, 0, AE, "mode" },
NULL              182 libavcodec/libtwolame.c         { "dual_channel", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_DUAL_CHANNEL }, 0, 0, AE, "mode" },
NULL              183 libavcodec/libtwolame.c         { "mono", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_MONO }, 0, 0, AE, "mode" },
NULL              190 libavcodec/libtwolame.c     { NULL },
NULL              202 libavcodec/libtwolame.c     { NULL },
NULL               45 libavcodec/libvo-amrwbenc.c     { NULL }
NULL               58 libavcodec/libvorbisenc.c     { NULL }
NULL               63 libavcodec/libvorbisenc.c     { NULL },
NULL              114 libavcodec/libvorbisenc.c             if ((ret = vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE2_SET, NULL)))
NULL              311 libavcodec/libvorbisenc.c         if ((ret = vorbis_analysis(&s->vb, NULL)) < 0)
NULL              322 libavcodec/libvorbisenc.c             av_fifo_generic_write(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
NULL              323 libavcodec/libvorbisenc.c             av_fifo_generic_write(s->pkt_fifo, op.packet, op.bytes, NULL);
NULL              339 libavcodec/libvorbisenc.c     av_fifo_generic_read(s->pkt_fifo, &op, sizeof(ogg_packet), NULL);
NULL              343 libavcodec/libvorbisenc.c     av_fifo_generic_read(s->pkt_fifo, avpkt->data, op.bytes, NULL);
NULL              199 libavcodec/libvpxdec.c     if (vpx_codec_decode(decoder, data, data_sz, NULL, 0) != VPX_CODEC_OK) {
NULL              218 libavcodec/libvpxdec.c     const void *iter = NULL;
NULL              219 libavcodec/libvpxdec.c     const void *iter_alpha = NULL;
NULL              222 libavcodec/libvpxdec.c     uint8_t *side_data = NULL;
NULL              301 libavcodec/libvpxdec.c             ctx->has_alpha_channel ? img_alpha->planes[VPX_PLANE_Y] : NULL;
NULL              291 libavcodec/libvpxenc.c     cx_frame->next = NULL;
NULL              387 libavcodec/libvpxenc.c     char *saveptr = NULL;
NULL              391 libavcodec/libvpxenc.c         dest[dest_idx++] = strtoul(token, NULL, 10);
NULL              392 libavcodec/libvpxenc.c         token = av_strtok(NULL, ",", &saveptr);
NULL              744 libavcodec/libvpxenc.c     AVDictionaryEntry* en = NULL;
NULL             1082 libavcodec/libvpxenc.c         dst->buf_alpha = NULL;
NULL             1175 libavcodec/libvpxenc.c     const struct vpx_codec_cx_pkt *pkt_alpha = NULL;
NULL             1176 libavcodec/libvpxenc.c     const void *iter = NULL;
NULL             1177 libavcodec/libvpxenc.c     const void *iter_alpha = NULL;
NULL             1280 libavcodec/libvpxenc.c     const AVRegionOfInterest *roi = NULL;
NULL             1483 libavcodec/libvpxenc.c     struct vpx_image *rawimg = NULL;
NULL             1484 libavcodec/libvpxenc.c     struct vpx_image *rawimg_alpha = NULL;
NULL             1523 libavcodec/libvpxenc.c             AVDictionaryEntry* en = av_dict_get(frame->metadata, "vp8-flags", NULL, 0);
NULL             1525 libavcodec/libvpxenc.c                 flags |= strtoul(en->value, NULL, 10);
NULL             1530 libavcodec/libvpxenc.c             en = av_dict_get(frame->metadata, "temporal_id", NULL, 0);
NULL             1532 libavcodec/libvpxenc.c                 layer_id.temporal_layer_id = strtoul(en->value, NULL, 10);
NULL             1631 libavcodec/libvpxenc.c     { "backward",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, VE, "arnr_type" }, \
NULL             1632 libavcodec/libvpxenc.c     { "forward",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, VE, "arnr_type" }, \
NULL             1633 libavcodec/libvpxenc.c     { "centered",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 3}, 0, 0, VE, "arnr_type" }, \
NULL             1635 libavcodec/libvpxenc.c     { "psnr",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_PSNR}, 0, 0, VE, "tune"}, \
NULL             1636 libavcodec/libvpxenc.c     { "ssim",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VP8_TUNE_SSIM}, 0, 0, VE, "tune"}, \
NULL             1638 libavcodec/libvpxenc.c     { "best",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_BEST_QUALITY}, 0, 0, VE, "quality"}, \
NULL             1639 libavcodec/libvpxenc.c     { "good",            NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_GOOD_QUALITY}, 0, 0, VE, "quality"}, \
NULL             1640 libavcodec/libvpxenc.c     { "realtime",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = VPX_DL_REALTIME},     0, 0, VE, "quality"}, \
NULL             1654 libavcodec/libvpxenc.c     { "ts-parameters",   "Temporal scaling configuration using a :-separated list of key=value parameters", OFFSET(vpx_ts_parameters), AV_OPT_TYPE_DICT, {.str=NULL},  0,  0, VE}, \
NULL             1675 libavcodec/libvpxenc.c     { NULL }
NULL             1724 libavcodec/libvpxenc.c     { NULL }
NULL             1737 libavcodec/libvpxenc.c     { NULL },
NULL              117 libavcodec/libwavpackenc.c     s->wv = WavpackOpenFileOutput(encode_callback, avctx, NULL);
NULL               40 libavcodec/libwebpenc.c     WebPPicture *pic = NULL;
NULL               41 libavcodec/libwebpenc.c     AVFrame *alt_frame = NULL;
NULL               88 libavcodec/libwebpenc_animencoder.c         WebPPicture *pic = NULL;
NULL               89 libavcodec/libwebpenc_animencoder.c         AVFrame *alt_frame = NULL;
NULL               90 libavcodec/libwebpenc_common.c     WebPPicture *pic = NULL;
NULL               91 libavcodec/libwebpenc_common.c     AVFrame *alt_frame = NULL;
NULL              248 libavcodec/libwebpenc_common.c             pic->memory_ = NULL;  /* restore pointer */
NULL               75 libavcodec/libwebpenc_common.h     { NULL },
NULL               81 libavcodec/libwebpenc_common.h     { NULL },
NULL              359 libavcodec/libx264.c                 if (x4->pic.extra_sei.payloads == NULL) {
NULL              443 libavcodec/libx264.c         if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
NULL              491 libavcodec/libx264.c         ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
NULL              516 libavcodec/libx264.c         x4->enc = NULL;
NULL              903 libavcodec/libx264.c         AVDictionaryEntry *en = NULL;
NULL             1047 libavcodec/libx264.c     {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
NULL             1048 libavcodec/libx264.c     {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
NULL             1049 libavcodec/libx264.c     {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
NULL             1051 libavcodec/libx264.c     {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
NULL             1056 libavcodec/libx264.c     { "none",          NULL,                              0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE},         INT_MIN, INT_MAX, VE, "aq_mode" },
NULL             1068 libavcodec/libx264.c     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE},   INT_MIN, INT_MAX, VE, "weightp" },
NULL             1069 libavcodec/libx264.c     { "simple",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
NULL             1070 libavcodec/libx264.c     { "smart",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART},  INT_MIN, INT_MAX, VE, "weightp" },
NULL             1076 libavcodec/libx264.c     { "none",          NULL,                                  0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE},   INT_MIN, INT_MAX, VE, "b_pyramid" },
NULL             1081 libavcodec/libx264.c     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
NULL             1089 libavcodec/libx264.c     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
NULL             1090 libavcodec/libx264.c     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
NULL             1091 libavcodec/libx264.c     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
NULL             1092 libavcodec/libx264.c     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
NULL             1097 libavcodec/libx264.c     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
NULL             1098 libavcodec/libx264.c     { "vbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
NULL             1099 libavcodec/libx264.c     { "cbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
NULL             1103 libavcodec/libx264.c     { "dia",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_DIA },  INT_MIN, INT_MAX, VE, "motion-est" },
NULL             1104 libavcodec/libx264.c     { "hex",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_HEX },  INT_MIN, INT_MAX, VE, "motion-est" },
NULL             1105 libavcodec/libx264.c     { "umh",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_UMH },  INT_MIN, INT_MAX, VE, "motion-est" },
NULL             1106 libavcodec/libx264.c     { "esa",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_ESA },  INT_MIN, INT_MAX, VE, "motion-est" },
NULL             1107 libavcodec/libx264.c     { "tesa",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_TESA }, INT_MIN, INT_MAX, VE, "motion-est" },
NULL             1110 libavcodec/libx264.c     { "default",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
NULL             1111 libavcodec/libx264.c     { "cavlc",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
NULL             1112 libavcodec/libx264.c     { "cabac",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
NULL             1113 libavcodec/libx264.c     { "vlc",              NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
NULL             1114 libavcodec/libx264.c     { "ac",               NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
NULL             1121 libavcodec/libx264.c     { NULL },
NULL             1159 libavcodec/libx264.c     { NULL },
NULL              120 libavcodec/libx265.c     AVCPBProperties *cpb_props = NULL;
NULL              341 libavcodec/libx265.c         AVDictionaryEntry *en = NULL;
NULL              521 libavcodec/libx265.c                                    pic ? &x265pic : NULL, &x265pic_out);
NULL              582 libavcodec/libx265.c     ff_side_data_set_encoder_stats(pkt, x265pic_out.frameData.qp * FF_QP2LAMBDA, NULL, 0, pict_type);
NULL              665 libavcodec/libx265.c     { NULL }
NULL              688 libavcodec/libx265.c     { NULL },
NULL              143 libavcodec/libxavs.c                             frame? &x4->pic: NULL, &pic_out) < 0)
NULL              220 libavcodec/libxavs.c     ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
NULL              435 libavcodec/libxavs.c     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
NULL              436 libavcodec/libxavs.c     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
NULL              437 libavcodec/libxavs.c     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
NULL              438 libavcodec/libxavs.c     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
NULL              442 libavcodec/libxavs.c     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_BOOL,    {.i64 = -1 }, -1, 1, VE},
NULL              444 libavcodec/libxavs.c     { "dia",           NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_ME_DIA },               INT_MIN, INT_MAX, VE, "motion-est" },
NULL              445 libavcodec/libxavs.c     { "hex",           NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_ME_HEX },               INT_MIN, INT_MAX, VE, "motion-est" },
NULL              446 libavcodec/libxavs.c     { "umh",           NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_ME_UMH },               INT_MIN, INT_MAX, VE, "motion-est" },
NULL              447 libavcodec/libxavs.c     { "esa",           NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_ME_ESA },               INT_MIN, INT_MAX, VE, "motion-est" },
NULL              448 libavcodec/libxavs.c     { "tesa",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = XAVS_ME_TESA },              INT_MIN, INT_MAX, VE, "motion-est" },
NULL              454 libavcodec/libxavs.c     { NULL },
NULL              466 libavcodec/libxavs.c     { NULL },
NULL               96 libavcodec/libxavs2.c         AVDictionaryEntry *en = NULL;
NULL              112 libavcodec/libxavs2.c     ff_mpeg12_find_best_frame_rate(avctx->framerate, &code, NULL, NULL, 0);
NULL              213 libavcodec/libxavs2.c         cae->api->encoder_encode(cae->encoder, NULL, &cae->packet);
NULL              265 libavcodec/libxavs2.c     { NULL },
NULL              279 libavcodec/libxavs2.c     { NULL },
NULL              459 libavcodec/libxvid.c     xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
NULL              474 libavcodec/libxvid.c     xvid_enc_create.zones     = NULL;
NULL              495 libavcodec/libxvid.c     x->twopassbuffer     = NULL;
NULL              496 libavcodec/libxvid.c     x->old_twopassbuffer = NULL;
NULL              497 libavcodec/libxvid.c     x->twopassfile       = NULL;
NULL              567 libavcodec/libxvid.c             avctx->lumi_masking ? NULL : &masking_l;
NULL              619 libavcodec/libxvid.c     x->inter_matrix = NULL;
NULL              639 libavcodec/libxvid.c             intra = NULL;
NULL              646 libavcodec/libxvid.c             inter = NULL;
NULL              663 libavcodec/libxvid.c     avctx->extradata      = NULL;
NULL              697 libavcodec/libxvid.c         xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
NULL              719 libavcodec/libxvid.c         xvid_encore(x->encoder_handle, XVID_ENC_DESTROY, NULL, NULL);
NULL              723 libavcodec/libxvid.c     xerr = xvid_encore(NULL, XVID_ENC_CREATE, &xvid_enc_create, NULL);
NULL              809 libavcodec/libxvid.c     avctx->stats_out = NULL;
NULL              841 libavcodec/libxvid.c         ff_side_data_set_encoder_stats(pkt, xvid_enc_stats.quant * FF_QP2LAMBDA, NULL, 0, pict_type);
NULL              880 libavcodec/libxvid.c         xvid_encore(x->encoder_handle, XVID_ENC_DESTROY, NULL, NULL);
NULL              881 libavcodec/libxvid.c         x->encoder_handle = NULL;
NULL              888 libavcodec/libxvid.c         avctx->stats_out = NULL;
NULL              908 libavcodec/libxvid.c     { "off",         NULL,                                                0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "ssim" },
NULL              909 libavcodec/libxvid.c     { "avg",         NULL,                                                0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "ssim" },
NULL              910 libavcodec/libxvid.c     { "frame",       NULL,                                                0, AV_OPT_TYPE_CONST, { .i64 = 2 }, INT_MIN, INT_MAX, VE, "ssim" },
NULL              915 libavcodec/libxvid.c     { NULL },
NULL              157 libavcodec/libzvbi-teletextdec.c         av_bprint_finalize(&buf, NULL);
NULL              158 libavcodec/libzvbi-teletextdec.c         return NULL;
NULL              160 libavcodec/libzvbi-teletextdec.c     dialog = ff_ass_get_dialog(ctx->readorder++, 0, NULL, NULL, buf.str);
NULL              161 libavcodec/libzvbi-teletextdec.c     av_bprint_finalize(&buf, NULL);
NULL              213 libavcodec/libzvbi-teletextdec.c         av_bprint_finalize(&buf, NULL);
NULL              222 libavcodec/libzvbi-teletextdec.c             av_bprint_finalize(&buf, NULL);
NULL              229 libavcodec/libzvbi-teletextdec.c     av_bprint_finalize(&buf, NULL);
NULL              391 libavcodec/libzvbi-teletextdec.c         av_bprint_finalize(&buf, NULL);
NULL              397 libavcodec/libzvbi-teletextdec.c         sub_rect->ass = ff_ass_get_dialog(ctx->readorder++, 0, is_subtitle_page ? "Subtitle" : "Teletext", NULL, buf.str);
NULL              400 libavcodec/libzvbi-teletextdec.c             av_bprint_finalize(&buf, NULL);
NULL              407 libavcodec/libzvbi-teletextdec.c     av_bprint_finalize(&buf, NULL);
NULL              655 libavcodec/libzvbi-teletextdec.c             ctx->vbi = NULL;
NULL              717 libavcodec/libzvbi-teletextdec.c             sub->rects = NULL;
NULL              750 libavcodec/libzvbi-teletextdec.c     ctx->vbi = NULL;
NULL              781 libavcodec/libzvbi-teletextdec.c     ctx->vbi = NULL;
NULL              803 libavcodec/libzvbi-teletextdec.c     {"bitmap",          NULL,                                                0,                      AV_OPT_TYPE_CONST,  {.i64 = 0},        0, 0,        SD,  "txt_format"},
NULL              804 libavcodec/libzvbi-teletextdec.c     {"text",            NULL,                                                0,                      AV_OPT_TYPE_CONST,  {.i64 = 1},        0, 0,        SD,  "txt_format"},
NULL              805 libavcodec/libzvbi-teletextdec.c     {"ass",             NULL,                                                0,                      AV_OPT_TYPE_CONST,  {.i64 = 2},        0, 0,        SD,  "txt_format"},
NULL              812 libavcodec/libzvbi-teletextdec.c     { NULL },
NULL              339 libavcodec/ljpegenc.c     { "left",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              340 libavcodec/ljpegenc.c     { "plane",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 2 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              341 libavcodec/ljpegenc.c     { "median", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 3 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              343 libavcodec/ljpegenc.c     { NULL},
NULL              166 libavcodec/lpc.c     compute_ref_coefs(autoc, order, ref, NULL);
NULL              725 libavcodec/magicyuv.c     avctx->execute2(avctx, s->magy_decode_slice, NULL, NULL, s->nb_slices);
NULL              561 libavcodec/magicyuvenc.c     { "left",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LEFT },     0, 0, VE, "pred" },
NULL              562 libavcodec/magicyuvenc.c     { "gradient", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = GRADIENT }, 0, 0, VE, "pred" },
NULL              563 libavcodec/magicyuvenc.c     { "median",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MEDIAN },   0, 0, VE, "pred" },
NULL              564 libavcodec/magicyuvenc.c     { NULL},
NULL              533 libavcodec/me_cmp.c             av_log(NULL, AV_LOG_ERROR,
NULL              838 libavcodec/me_cmp.c     distortion = s->mecc.sse[1](NULL, lsrc2, lsrc1, 8, 8);
NULL             1022 libavcodec/me_cmp.c             av_log(NULL, AV_LOG_ERROR,
NULL               48 libavcodec/mediacodec.c     JNIEnv *env = NULL;
NULL               68 libavcodec/mediacodec.c     JNIEnv *env = NULL;
NULL               83 libavcodec/mediacodec.c         ctx->surface = NULL;
NULL              127 libavcodec/mediacodec.c     return NULL;
NULL               30 libavcodec/mediacodec_surface.c     JNIEnv *env = NULL;
NULL               34 libavcodec/mediacodec_surface.c         return NULL;
NULL               42 libavcodec/mediacodec_surface.c     JNIEnv *env = NULL;
NULL               84 libavcodec/mediacodec_sw_buffer.c     uint8_t *src = NULL;
NULL              139 libavcodec/mediacodec_sw_buffer.c     uint8_t *src = NULL;
NULL              189 libavcodec/mediacodec_sw_buffer.c     uint8_t *src = NULL;
NULL               72 libavcodec/mediacodec_wrapper.c     { "android/media/MediaCodecList", NULL, NULL, FF_JNI_CLASS, offsetof(struct JNIAMediaCodecListFields, mediacodec_list_class), 1 },
NULL               79 libavcodec/mediacodec_wrapper.c     { "android/media/MediaCodecInfo", NULL, NULL, FF_JNI_CLASS, offsetof(struct JNIAMediaCodecListFields, mediacodec_info_class), 1 },
NULL               85 libavcodec/mediacodec_wrapper.c     { "android/media/MediaCodecInfo$CodecCapabilities", NULL, NULL, FF_JNI_CLASS, offsetof(struct JNIAMediaCodecListFields, codec_capabilities_class), 1 },
NULL               89 libavcodec/mediacodec_wrapper.c     { "android/media/MediaCodecInfo$CodecProfileLevel", NULL, NULL, FF_JNI_CLASS, offsetof(struct JNIAMediaCodecListFields, codec_profile_level_class), 1 },
NULL              105 libavcodec/mediacodec_wrapper.c     { NULL }
NULL              133 libavcodec/mediacodec_wrapper.c     { "android/media/MediaFormat", NULL, NULL, FF_JNI_CLASS, offsetof(struct JNIAMediaFormatFields, mediaformat_class), 1 },
NULL              153 libavcodec/mediacodec_wrapper.c     { NULL }
NULL              220 libavcodec/mediacodec_wrapper.c     { "android/media/MediaCodec", NULL, NULL, FF_JNI_CLASS, offsetof(struct JNIAMediaCodecFields, mediacodec_class), 1 },
NULL              257 libavcodec/mediacodec_wrapper.c     { "android/media/MediaCodec$BufferInfo", NULL, NULL, FF_JNI_CLASS, offsetof(struct JNIAMediaCodecFields, mediainfo_class), 1 },
NULL              265 libavcodec/mediacodec_wrapper.c     { NULL }
NULL              317 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              388 libavcodec/mediacodec_wrapper.c     char *name = NULL;
NULL              389 libavcodec/mediacodec_wrapper.c     char *supported_type = NULL;
NULL              391 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              395 libavcodec/mediacodec_wrapper.c     jobject codec_name = NULL;
NULL              397 libavcodec/mediacodec_wrapper.c     jobject info = NULL;
NULL              398 libavcodec/mediacodec_wrapper.c     jobject type = NULL;
NULL              399 libavcodec/mediacodec_wrapper.c     jobjectArray types = NULL;
NULL              401 libavcodec/mediacodec_wrapper.c     jobject capabilities = NULL;
NULL              402 libavcodec/mediacodec_wrapper.c     jobject profile_level = NULL;
NULL              403 libavcodec/mediacodec_wrapper.c     jobjectArray profile_levels = NULL;
NULL              405 libavcodec/mediacodec_wrapper.c     JNI_GET_ENV_OR_RETURN(env, log_ctx, NULL);
NULL              472 libavcodec/mediacodec_wrapper.c                     codec_name = NULL;
NULL              521 libavcodec/mediacodec_wrapper.c                         profile_level = NULL;
NULL              533 libavcodec/mediacodec_wrapper.c                 profile_levels = NULL;
NULL              538 libavcodec/mediacodec_wrapper.c                 capabilities = NULL;
NULL              543 libavcodec/mediacodec_wrapper.c                 type = NULL;
NULL              558 libavcodec/mediacodec_wrapper.c             info = NULL;
NULL              563 libavcodec/mediacodec_wrapper.c             types = NULL;
NULL              614 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              615 libavcodec/mediacodec_wrapper.c     FFAMediaFormat *format = NULL;
NULL              616 libavcodec/mediacodec_wrapper.c     jobject object = NULL;
NULL              620 libavcodec/mediacodec_wrapper.c         return NULL;
NULL              627 libavcodec/mediacodec_wrapper.c         return NULL;
NULL              659 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              660 libavcodec/mediacodec_wrapper.c     FFAMediaFormat *format = NULL;
NULL              664 libavcodec/mediacodec_wrapper.c         return NULL;
NULL              671 libavcodec/mediacodec_wrapper.c         return NULL;
NULL              689 libavcodec/mediacodec_wrapper.c     return NULL;
NULL              696 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              705 libavcodec/mediacodec_wrapper.c     format->object = NULL;
NULL              716 libavcodec/mediacodec_wrapper.c     char *ret = NULL;
NULL              718 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              719 libavcodec/mediacodec_wrapper.c     jstring description = NULL;
NULL              721 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL              723 libavcodec/mediacodec_wrapper.c     JNI_GET_ENV_OR_RETURN(env, format, NULL);
NULL              726 libavcodec/mediacodec_wrapper.c     if (ff_jni_exception_check(env, 1, NULL) < 0) {
NULL              743 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              744 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL              747 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL              782 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              783 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL              786 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL              821 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              822 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL              825 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL              860 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              861 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL              863 libavcodec/mediacodec_wrapper.c     jobject result = NULL;
NULL              865 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL              918 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              919 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL              921 libavcodec/mediacodec_wrapper.c     jstring result = NULL;
NULL              923 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL              966 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              967 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL              969 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL              991 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL              992 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL              994 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL             1016 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1017 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL             1019 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL             1041 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1042 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL             1043 libavcodec/mediacodec_wrapper.c     jstring string = NULL;
NULL             1045 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL             1076 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1077 libavcodec/mediacodec_wrapper.c     jstring key = NULL;
NULL             1078 libavcodec/mediacodec_wrapper.c     jobject buffer = NULL;
NULL             1079 libavcodec/mediacodec_wrapper.c     void *buffer_data = NULL;
NULL             1081 libavcodec/mediacodec_wrapper.c     av_assert0(format != NULL);
NULL             1124 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1182 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1183 libavcodec/mediacodec_wrapper.c     FFAMediaCodec *codec = NULL;
NULL             1184 libavcodec/mediacodec_wrapper.c     jstring jarg = NULL;
NULL             1185 libavcodec/mediacodec_wrapper.c     jobject object = NULL;
NULL             1186 libavcodec/mediacodec_wrapper.c     jobject buffer_info = NULL;
NULL             1187 libavcodec/mediacodec_wrapper.c     jmethodID create_id = NULL;
NULL             1191 libavcodec/mediacodec_wrapper.c         return NULL;
NULL             1198 libavcodec/mediacodec_wrapper.c         return NULL;
NULL             1293 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1307 libavcodec/mediacodec_wrapper.c     codec->input_buffers = NULL;
NULL             1310 libavcodec/mediacodec_wrapper.c     codec->output_buffers = NULL;
NULL             1313 libavcodec/mediacodec_wrapper.c     codec->object = NULL;
NULL             1316 libavcodec/mediacodec_wrapper.c     codec->buffer_info = NULL;
NULL             1327 libavcodec/mediacodec_wrapper.c     char *ret = NULL;
NULL             1328 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1329 libavcodec/mediacodec_wrapper.c     jobject *name = NULL;
NULL             1331 libavcodec/mediacodec_wrapper.c     JNI_GET_ENV_OR_RETURN(env, codec, NULL);
NULL             1351 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1355 libavcodec/mediacodec_wrapper.c     (*env)->CallVoidMethod(env, codec->object, codec->jfields.configure_id, format->object, surface, NULL, flags);
NULL             1368 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1385 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1402 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1419 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1436 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1453 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1470 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1487 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1521 libavcodec/mediacodec_wrapper.c     uint8_t *ret = NULL;
NULL             1522 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1524 libavcodec/mediacodec_wrapper.c     jobject buffer = NULL;
NULL             1525 libavcodec/mediacodec_wrapper.c     jobject input_buffers = NULL;
NULL             1527 libavcodec/mediacodec_wrapper.c     JNI_GET_ENV_OR_RETURN(env, codec, NULL);
NULL             1569 libavcodec/mediacodec_wrapper.c     uint8_t *ret = NULL;
NULL             1570 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1572 libavcodec/mediacodec_wrapper.c     jobject buffer = NULL;
NULL             1573 libavcodec/mediacodec_wrapper.c     jobject output_buffers = NULL;
NULL             1575 libavcodec/mediacodec_wrapper.c     JNI_GET_ENV_OR_RETURN(env, codec, NULL);
NULL             1617 libavcodec/mediacodec_wrapper.c     FFAMediaFormat *ret = NULL;
NULL             1618 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL             1620 libavcodec/mediacodec_wrapper.c     jobject mediaformat = NULL;
NULL             1622 libavcodec/mediacodec_wrapper.c     JNI_GET_ENV_OR_RETURN(env, codec, NULL);
NULL             1679 libavcodec/mediacodec_wrapper.c             JNIEnv *env = NULL;
NULL             1688 libavcodec/mediacodec_wrapper.c             codec->output_buffers = NULL;
NULL             1699 libavcodec/mediacodec_wrapper.c     JNIEnv *env = NULL;
NULL               60 libavcodec/mediacodecdec.c     s->ctx = NULL;
NULL               72 libavcodec/mediacodecdec.c     uint8_t *p = NULL;
NULL              128 libavcodec/mediacodecdec.c     const PPS *pps = NULL;
NULL              129 libavcodec/mediacodecdec.c     const SPS *sps = NULL;
NULL              155 libavcodec/mediacodecdec.c         uint8_t *data = NULL;
NULL              190 libavcodec/mediacodecdec.c     const HEVCVPS *vps = NULL;
NULL              191 libavcodec/mediacodecdec.c     const HEVCPPS *pps = NULL;
NULL              192 libavcodec/mediacodecdec.c     const HEVCSPS *sps = NULL;
NULL              196 libavcodec/mediacodecdec.c     uint8_t *vps_data = NULL;
NULL              197 libavcodec/mediacodecdec.c     uint8_t *sps_data = NULL;
NULL              198 libavcodec/mediacodecdec.c     uint8_t *pps_data = NULL;
NULL              293 libavcodec/mediacodecdec.c     const char *codec_mime = NULL;
NULL              295 libavcodec/mediacodecdec.c     FFAMediaFormat *format = NULL;
NULL              378 libavcodec/mediacodecdec.c         s->ctx = NULL;
NULL              497 libavcodec/mediacodecdec.c         .hwaccel         = NULL,
NULL              499 libavcodec/mediacodecdec.c     NULL
NULL              507 libavcodec/mediacodecdec.c     { NULL }
NULL              547 libavcodec/mediacodecdec.c DECLARE_MEDIACODEC_VDEC(mpeg2, "MPEG-2", AV_CODEC_ID_MPEG2VIDEO, NULL)
NULL              551 libavcodec/mediacodecdec.c DECLARE_MEDIACODEC_VDEC(mpeg4, "MPEG-4", AV_CODEC_ID_MPEG4, NULL)
NULL              555 libavcodec/mediacodecdec.c DECLARE_MEDIACODEC_VDEC(vp8, "VP8", AV_CODEC_ID_VP8, NULL)
NULL              559 libavcodec/mediacodecdec.c DECLARE_MEDIACODEC_VDEC(vp9, "VP9", AV_CODEC_ID_VP9, NULL)
NULL              236 libavcodec/mediacodecdec_common.c             s->codec = NULL;
NULL              241 libavcodec/mediacodecdec_common.c             s->format = NULL;
NULL              245 libavcodec/mediacodecdec_common.c             ff_mediacodec_surface_unref(s->surface, NULL);
NULL              246 libavcodec/mediacodecdec_common.c             s->surface = NULL;
NULL              281 libavcodec/mediacodecdec_common.c     AVMediaCodecBuffer *buffer = NULL;
NULL              283 libavcodec/mediacodecdec_common.c     frame->buf[0] = NULL;
NULL              315 libavcodec/mediacodecdec_common.c     frame->buf[0] = av_buffer_create(NULL,
NULL              457 libavcodec/mediacodecdec_common.c     char *format = NULL;
NULL              624 libavcodec/mediacodecdec_common.c     status = ff_AMediaCodec_configure(s->codec, format, s->surface, NULL, 0);
NULL              827 libavcodec/mediacodecdec_common.c         char *format = NULL;
NULL               62 libavcodec/mf_utils.c                                     UINT32 *pnumMFTActivate) = NULL;
NULL              117 libavcodec/mf_utils.c         return NULL;
NULL              123 libavcodec/mf_utils.c         return NULL;
NULL              128 libavcodec/mf_utils.c         hr = IMFMediaBuffer_Lock(buffer, &tmp, NULL, NULL);
NULL              132 libavcodec/mf_utils.c             return NULL;
NULL              217 libavcodec/mf_utils.c     return NULL;
NULL              404 libavcodec/mf_utils.c         const char *name = NULL;
NULL              406 libavcodec/mf_utils.c         hr = IMFAttributes_GetItemByIndex(attrs, n, &key, NULL);
NULL              465 libavcodec/mf_utils.c             hr = IMFAttributes_GetString(attrs, &key, s, sizeof(s), NULL);
NULL              547 libavcodec/mf_utils.c     default:                            return NULL;
NULL              555 libavcodec/mf_utils.c     hr = CoInitializeEx(NULL, COINIT_MULTITHREADED);
NULL              624 libavcodec/mf_utils.c     *res = NULL;
NULL              659 libavcodec/mf_utils.c                                    sizeof(s), NULL);
NULL              678 libavcodec/mf_utils.c     *mft = NULL;
NULL               68 libavcodec/mfenc.c         IMFMediaEvent *ev = NULL;
NULL              149 libavcodec/mfenc.c             hr = IMFAttributes_GetBlob(type, &MF_MT_USER_DATA, avctx->extradata, sz, NULL);
NULL              186 libavcodec/mfenc.c         hr = IMFAttributes_GetBlob(type, &MF_MT_MPEG_SEQUENCE_HEADER, extradata, sz, NULL);
NULL              251 libavcodec/mfenc.c     hr = IMFMediaBuffer_Lock(buffer, &data, NULL, NULL);
NULL              312 libavcodec/mfenc.c         return NULL;
NULL              314 libavcodec/mfenc.c     sample = ff_create_memory_sample(NULL, size, c->in_info.cbAlignment);
NULL              316 libavcodec/mfenc.c         return NULL;
NULL              321 libavcodec/mfenc.c         return NULL;
NULL              324 libavcodec/mfenc.c     hr = IMFMediaBuffer_Lock(buffer, &data, NULL, NULL);
NULL              328 libavcodec/mfenc.c         return NULL;
NULL              338 libavcodec/mfenc.c         return NULL;
NULL              405 libavcodec/mfenc.c     IMFSample *sample = NULL;
NULL              431 libavcodec/mfenc.c         *out_sample = NULL;
NULL              432 libavcodec/mfenc.c         sample = NULL;
NULL              444 libavcodec/mfenc.c             sample = ff_create_memory_sample(NULL, c->out_info.cbSize, c->out_info.cbAlignment);
NULL              724 libavcodec/mfenc.c     IMFMediaType *out_type = NULL;
NULL              813 libavcodec/mfenc.c     IMFMediaType *in_type = NULL;
NULL              820 libavcodec/mfenc.c         IMFMediaType *type = NULL;
NULL             1008 libavcodec/mfenc.c     *mft = NULL;
NULL             1023 libavcodec/mfenc.c     if ((ret = ff_instantiate_mf(log, category, NULL, &reg, use_hw, mft)) < 0)
NULL             1161 libavcodec/mfenc.c MF_ENCODER(AUDIO, aac,         AAC, NULL, AFMTS);
NULL             1162 libavcodec/mfenc.c MF_ENCODER(AUDIO, ac3,         AC3, NULL, AFMTS);
NULL             1163 libavcodec/mfenc.c MF_ENCODER(AUDIO, mp3,         MP3, NULL, AFMTS);
NULL             1189 libavcodec/mfenc.c     {NULL}
NULL              312 libavcodec/microdvddec.c         int ret = ff_ass_add_rect(sub, new_line.str, s->readorder++, 0, NULL, NULL);
NULL              313 libavcodec/microdvddec.c         av_bprint_finalize(&new_line, NULL);
NULL              994 libavcodec/mips/aaccoder_mips.c     quantize_and_encode_band_cost(s, pb, in, out, NULL, size, scale_idx, cb, lambda,
NULL              995 libavcodec/mips/aaccoder_mips.c                                   INFINITY, NULL, NULL, (rtz) ? ROUND_TO_ZERO : ROUND_STANDARD);
NULL             1477 libavcodec/mips/aaccoder_mips.c     return get_band_numbits(s, NULL, in, scaled, size, scale_idx, cb, lambda, uplim, bits);
NULL             2331 libavcodec/mips/aaccoder_mips.c     return get_band_cost(s, NULL, in, scaled, size, scale_idx, cb, lambda, uplim, bits, energy);
NULL             2427 libavcodec/mips/aaccoder_mips.c                                                     lambda / band0->threshold, INFINITY, &b1, NULL, 0);
NULL             2433 libavcodec/mips/aaccoder_mips.c                                                     lambda / band1->threshold, INFINITY, &b2, NULL, 0);
NULL             2439 libavcodec/mips/aaccoder_mips.c                                                     lambda / minthr, INFINITY, &b3, NULL, 0);
NULL             2445 libavcodec/mips/aaccoder_mips.c                                                     mslambda / (minthr * bmax), INFINITY, &b4, NULL, 0);
NULL             2091 libavcodec/mips/vc1dsp_mmi.c          { NULL, vc1_put_ver_16b_shift1_mmi,                                \
NULL             2095 libavcodec/mips/vc1dsp_mmi.c          { NULL, OP ## vc1_hor_16b_shift1_mmi,                              \
NULL             2099 libavcodec/mips/vc1dsp_mmi.c          { NULL, OP ## vc1_shift1_mmi,                                      \
NULL              119 libavcodec/mjpeg_parser.c             *poutbuf = NULL;
NULL              122 libavcodec/mjpegbdec.c         ret = ff_mjpeg_decode_sos(s, NULL, 0, NULL);
NULL              156 libavcodec/mjpegdec.c     s->buffer        = NULL;
NULL             1443 libavcodec/mjpegdec.c         reference_data[c] = reference ? reference->data[c] : NULL;
NULL             1480 libavcodec/mjpegdec.c                         ptr = NULL;
NULL             2188 libavcodec/mjpegdec.c     ff_dlog(NULL, "find_marker skipped %d bytes\n", skipped);
NULL             2542 libavcodec/mjpegdec.c             if ((ret = ff_mjpeg_decode_sos(s, NULL, 0, NULL)) < 0 &&
NULL             2817 libavcodec/mjpegdec.c         s->picture_ptr = NULL;
NULL             2855 libavcodec/mjpegdec.c     { NULL },
NULL             2888 libavcodec/mjpegdec.c                         NULL
NULL              391 libavcodec/mjpegenc.c     { "left",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              392 libavcodec/mjpegenc.c     { "plane",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 2 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              393 libavcodec/mjpegenc.c     { "median", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 3 }, INT_MIN, INT_MAX, VE, "pred" },
NULL              395 libavcodec/mjpegenc.c     { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = HUFFMAN_TABLE_DEFAULT }, INT_MIN, INT_MAX, VE, "huffman" },
NULL              396 libavcodec/mjpegenc.c     { "optimal", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = HUFFMAN_TABLE_OPTIMAL }, INT_MIN, INT_MAX, VE, "huffman" },
NULL              397 libavcodec/mjpegenc.c { NULL},
NULL               94 libavcodec/mjpegenc_common.c     MpegEncContext *s = NULL;
NULL               67 libavcodec/mlp_parser.c     *poutbuf = NULL;
NULL             1809 libavcodec/mlpenc.c     int32_t *filter_state_buffer[NUM_FILTERS] = { NULL };
NULL              132 libavcodec/mmaldec.c                                      ffmmal_release_frame, NULL,
NULL              175 libavcodec/mmaldec.c     ctx->waiting_buffers_tail = NULL;
NULL              190 libavcodec/mmaldec.c     ctx->decoder = NULL;
NULL              483 libavcodec/mmaldec.c     AVBufferRef *buf = NULL;
NULL              604 libavcodec/mmaldec.c             ctx->waiting_buffers_tail = NULL;
NULL              673 libavcodec/mmaldec.c     MMAL_BUFFER_HEADER_T *buffer = NULL;
NULL              813 libavcodec/mmaldec.c     NULL
NULL              819 libavcodec/mmaldec.c     {NULL}
NULL              387 libavcodec/motion_est.c     d  = s->mecc.pix_abs[size][(x ? 1 : 0) + (y ? 2 : 0)](NULL, pix, ptr + ((x) >> 1), stride, h); \
NULL              898 libavcodec/motion_est.c     init_ref(c, s->new_picture.f->data, s->last_picture.f->data, NULL, 16*mb_x, 16*mb_y, 0);
NULL              964 libavcodec/motion_est.c     vard = s->mecc.sse[0](NULL, pix, ppix, s->linesize, 16);
NULL             1069 libavcodec/motion_est.c     init_ref(c, s->new_picture.f->data, s->last_picture.f->data, NULL, 16*mb_x, 16*mb_y, 0);
NULL              405 libavcodec/motion_est_template.c if( (x)<(xmin<<(S)) ) av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d xmin" #v, xmin, (x), (y), s->mb_x, s->mb_y);\
NULL              406 libavcodec/motion_est_template.c if( (x)>(xmax<<(S)) ) av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d xmax" #v, xmax, (x), (y), s->mb_x, s->mb_y);\
NULL              407 libavcodec/motion_est_template.c if( (y)<(ymin<<(S)) ) av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d ymin" #v, ymin, (x), (y), s->mb_x, s->mb_y);\
NULL              408 libavcodec/motion_est_template.c if( (y)>(ymax<<(S)) ) av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d ymax" #v, ymax, (x), (y), s->mb_x, s->mb_y);\
NULL               26 libavcodec/motionpixels_tablegen.c #define ff_crop_tab ((uint8_t *)NULL)
NULL              263 libavcodec/movtextdec.c         m->ftab_temp = NULL;
NULL              593 libavcodec/movtextdec.c     ret = ff_ass_add_rect(sub, buf.str, m->readorder++, 0, NULL, NULL);
NULL              594 libavcodec/movtextdec.c     av_bprint_finalize(&buf, NULL);
NULL              621 libavcodec/movtextdec.c     { NULL },
NULL              196 libavcodec/movtextenc.c     av_bprint_finalize(&s->buffer, NULL);
NULL              755 libavcodec/movtextenc.c     { NULL },
NULL               51 libavcodec/mpeg12.h         av_log(NULL, AV_LOG_ERROR, "invalid dc code at\n");
NULL             1534 libavcodec/mpeg12dec.c         load_matrix(s, s->chroma_intra_matrix, NULL, 1);
NULL             1536 libavcodec/mpeg12dec.c         load_matrix(s, s->chroma_inter_matrix, NULL, 0);
NULL             2486 libavcodec/mpeg12dec.c                                    &s2->thread_context[0], NULL,
NULL             2554 libavcodec/mpeg12dec.c                                s2->thread_context, NULL,
NULL             2805 libavcodec/mpeg12dec.c             s2->next_picture_ptr = NULL;
NULL             2814 libavcodec/mpeg12dec.c                                            buf_size, NULL);
NULL             2839 libavcodec/mpeg12dec.c             s2->current_picture_ptr = NULL;
NULL             2846 libavcodec/mpeg12dec.c         s2->current_picture_ptr = NULL;
NULL             2911 libavcodec/mpeg12dec.c                                NULL
NULL             2956 libavcodec/mpeg12dec.c                         NULL
NULL             1139 libavcodec/mpeg12enc.c       OFFSET(tc_opt_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE },\
NULL             1152 libavcodec/mpeg12enc.c     { NULL },
NULL             1160 libavcodec/mpeg12enc.c     {     "auto",   NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = -1},  0, 0, VE, "seq_disp_ext" },
NULL             1161 libavcodec/mpeg12enc.c     {     "never",  NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = 0 },  0, 0, VE, "seq_disp_ext" },
NULL             1162 libavcodec/mpeg12enc.c     {     "always", NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = 1 },  0, 0, VE, "seq_disp_ext" },
NULL             1164 libavcodec/mpeg12enc.c     {     "component",    NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = VIDEO_FORMAT_COMPONENT  },  0, 0, VE, "video_format" },
NULL             1165 libavcodec/mpeg12enc.c     {     "pal",          NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = VIDEO_FORMAT_PAL        },  0, 0, VE, "video_format" },
NULL             1166 libavcodec/mpeg12enc.c     {     "ntsc",         NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = VIDEO_FORMAT_NTSC       },  0, 0, VE, "video_format" },
NULL             1167 libavcodec/mpeg12enc.c     {     "secam",        NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = VIDEO_FORMAT_SECAM      },  0, 0, VE, "video_format" },
NULL             1168 libavcodec/mpeg12enc.c     {     "mac",          NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = VIDEO_FORMAT_MAC        },  0, 0, VE, "video_format" },
NULL             1169 libavcodec/mpeg12enc.c     {     "unspecified",  NULL, 0, AV_OPT_TYPE_CONST,  {.i64 = VIDEO_FORMAT_UNSPECIFIED},  0, 0, VE, "video_format" },
NULL             1172 libavcodec/mpeg12enc.c     { NULL },
NULL               54 libavcodec/mpeg2_metadata_bsf.c     MPEG2RawSequenceHeader            *sh = NULL;
NULL               55 libavcodec/mpeg2_metadata_bsf.c     MPEG2RawSequenceExtension         *se = NULL;
NULL               56 libavcodec/mpeg2_metadata_bsf.c     MPEG2RawSequenceDisplayExtension *sde = NULL;
NULL              143 libavcodec/mpeg2_metadata_bsf.c                                              NULL);
NULL              291 libavcodec/mpeg2_metadata_bsf.c     { NULL }
NULL              137 libavcodec/mpeg4_unpack_bframes_bsf.c         scan_buffer(ctx->par_in->extradata, ctx->par_in->extradata_size, &pos_p_ext, NULL, NULL);
NULL               46 libavcodec/mpeg4audio.c         av_log(NULL, AV_LOG_ERROR, "Invalid sample rate %d\n", c->sample_rate);
NULL              173 libavcodec/mpeg4audio.c     return ff_mpeg4audio_get_config_gb(c, &gb, sync_extension, NULL);
NULL              144 libavcodec/mpeg4video_parser.c             *poutbuf      = NULL;
NULL              199 libavcodec/mpeg4videodec.c     if (sprite_trajectory.table == NULL)
NULL             3583 libavcodec/mpeg4videodec.c     {NULL}
NULL             3626 libavcodec/mpeg4videodec.c                                NULL
NULL              626 libavcodec/mpeg4videoenc.c             mpeg4_encode_blocks(s, block, NULL, NULL, NULL, &s->pb);
NULL              674 libavcodec/mpeg4videoenc.c                             diff = s->mecc.sad[0](NULL, p_pic, b_pic, s->linesize, 16);
NULL              790 libavcodec/mpeg4videoenc.c             mpeg4_encode_blocks(s, block, NULL, NULL, NULL, tex_pb);
NULL             1381 libavcodec/mpeg4videoenc.c     { NULL },
NULL               29 libavcodec/mpeg_er.c         dst->f  = NULL;
NULL               30 libavcodec/mpeg_er.c         dst->tf = NULL;
NULL              102 libavcodec/mpegaudio_parser.c                         *poutbuf = NULL;
NULL              115 libavcodec/mpegaudio_parser.c         *poutbuf = NULL;
NULL              121 libavcodec/mpegaudio_parser.c         *poutbuf = NULL;
NULL              127 libavcodec/mpegaudio_parser.c         *poutbuf = NULL;
NULL              125 libavcodec/mpegaudiodec_template.c     division_tab3, division_tab5, NULL, division_tab9
NULL              253 libavcodec/mpegaudiodec_template.c         av_log(NULL, AV_LOG_WARNING, "l3_unscale: e is %d\n", e);
NULL              284 libavcodec/mpegaudiodec_template.c         ff_dlog(NULL, "%d: norm=%x s=%"PRIx32" %"PRIx32" %"PRIx32"\n", i,
NULL              387 libavcodec/mpegaudiodec_template.c             ff_dlog(NULL, "is_table_lsf %d %d: %f %f\n",
NULL              827 libavcodec/mpegaudiodec_template.c         s->in_gb.buffer = NULL;
NULL             1418 libavcodec/mpegaudiodec_template.c             s->in_gb.buffer = NULL;
NULL             1610 libavcodec/mpegaudiodec_template.c             s->in_gb.buffer = NULL;
NULL             1711 libavcodec/mpegaudiodec_template.c     ret = mp_decode_frame(s, NULL, buf, buf_size);
NULL             1787 libavcodec/mpegaudiodec_template.c     ret = mp_decode_frame(s, NULL, buf, buf_size);
NULL              104 libavcodec/mpegaudiodecheader.c     ff_dlog(NULL, "layer%d, %d Hz, %d kbits/s, ",
NULL              109 libavcodec/mpegaudiodecheader.c                 ff_dlog(NULL, "ms-");
NULL              111 libavcodec/mpegaudiodecheader.c                 ff_dlog(NULL, "i-");
NULL              113 libavcodec/mpegaudiodecheader.c         ff_dlog(NULL, "stereo");
NULL              115 libavcodec/mpegaudiodecheader.c         ff_dlog(NULL, "mono");
NULL              117 libavcodec/mpegaudiodecheader.c     ff_dlog(NULL, "\n");
NULL              506 libavcodec/mpegaudiodectab.h { 1, NULL, NULL },
NULL              413 libavcodec/mpegaudioenc_template.c             ff_dlog(NULL, "%2d:%d in=%x %x %d\n",
NULL              482 libavcodec/mpegaudioenc_template.c         ff_dlog(NULL, "%d: %2d %2d %2d %d %d -> %d\n", j,
NULL              559 libavcodec/mpegaudioenc_template.c         ff_dlog(NULL, "current=%d max=%d max_sb=%d max_ch=%d alloc=%d\n",
NULL              783 libavcodec/mpegaudioenc_template.c     { NULL },
NULL              285 libavcodec/mpegutils.c         pict->opaque = NULL;
NULL              372 libavcodec/mpegvideo.c     s->sc.obmc_scratchpad = NULL;
NULL              424 libavcodec/mpegvideo.c     s->sc.obmc_scratchpad = NULL;
NULL              433 libavcodec/mpegvideo.c     s->block = NULL;
NULL              509 libavcodec/mpegvideo.c         s->bitstream_buffer      = NULL;
NULL              569 libavcodec/mpegvideo.c         &new_ctx->picture[pic - old_ctx->picture] : NULL)
NULL              819 libavcodec/mpegvideo.c     s->me.map = NULL;
NULL              820 libavcodec/mpegvideo.c     s->me.score_map = NULL;
NULL              821 libavcodec/mpegvideo.c     s->dct_error_sum = NULL;
NULL              822 libavcodec/mpegvideo.c     s->block = NULL;
NULL              823 libavcodec/mpegvideo.c     s->blocks = NULL;
NULL              824 libavcodec/mpegvideo.c     s->block32 = NULL;
NULL              827 libavcodec/mpegvideo.c     s->dpcm_macroblock = NULL;
NULL              828 libavcodec/mpegvideo.c     s->ac_val_base = NULL;
NULL              831 libavcodec/mpegvideo.c     s->ac_val[2] =NULL;
NULL              832 libavcodec/mpegvideo.c     s->sc.edge_emu_buffer = NULL;
NULL              833 libavcodec/mpegvideo.c     s->me.scratchpad = NULL;
NULL              837 libavcodec/mpegvideo.c     s->sc.obmc_scratchpad = NULL;
NULL              840 libavcodec/mpegvideo.c     s->bitstream_buffer = NULL;
NULL              842 libavcodec/mpegvideo.c     s->picture          = NULL;
NULL              843 libavcodec/mpegvideo.c     s->mb_type          = NULL;
NULL              844 libavcodec/mpegvideo.c     s->p_mv_table_base  = NULL;
NULL              845 libavcodec/mpegvideo.c     s->b_forw_mv_table_base = NULL;
NULL              846 libavcodec/mpegvideo.c     s->b_back_mv_table_base = NULL;
NULL              847 libavcodec/mpegvideo.c     s->b_bidir_forw_mv_table_base = NULL;
NULL              848 libavcodec/mpegvideo.c     s->b_bidir_back_mv_table_base = NULL;
NULL              849 libavcodec/mpegvideo.c     s->b_direct_mv_table_base = NULL;
NULL              850 libavcodec/mpegvideo.c     s->p_mv_table            = NULL;
NULL              851 libavcodec/mpegvideo.c     s->b_forw_mv_table       = NULL;
NULL              852 libavcodec/mpegvideo.c     s->b_back_mv_table       = NULL;
NULL              853 libavcodec/mpegvideo.c     s->b_bidir_forw_mv_table = NULL;
NULL              854 libavcodec/mpegvideo.c     s->b_bidir_back_mv_table = NULL;
NULL              855 libavcodec/mpegvideo.c     s->b_direct_mv_table     = NULL;
NULL              859 libavcodec/mpegvideo.c                 s->b_field_mv_table_base[i][j][k] = NULL;
NULL              860 libavcodec/mpegvideo.c                 s->b_field_mv_table[i][j][k] = NULL;
NULL              862 libavcodec/mpegvideo.c             s->b_field_select_table[i][j] = NULL;
NULL              863 libavcodec/mpegvideo.c             s->p_field_mv_table_base[i][j] = NULL;
NULL              864 libavcodec/mpegvideo.c             s->p_field_mv_table[i][j] = NULL;
NULL              866 libavcodec/mpegvideo.c         s->p_field_select_table[i] = NULL;
NULL              869 libavcodec/mpegvideo.c     s->dc_val_base = NULL;
NULL              870 libavcodec/mpegvideo.c     s->coded_block_base = NULL;
NULL              871 libavcodec/mpegvideo.c     s->mbintra_table = NULL;
NULL              872 libavcodec/mpegvideo.c     s->cbp_table = NULL;
NULL              873 libavcodec/mpegvideo.c     s->pred_dir_table = NULL;
NULL              875 libavcodec/mpegvideo.c     s->mbskip_table = NULL;
NULL              877 libavcodec/mpegvideo.c     s->er.error_status_table = NULL;
NULL              878 libavcodec/mpegvideo.c     s->er.er_temp_buffer = NULL;
NULL              879 libavcodec/mpegvideo.c     s->mb_index2xy = NULL;
NULL              880 libavcodec/mpegvideo.c     s->lambda_table = NULL;
NULL              882 libavcodec/mpegvideo.c     s->cplx_tab = NULL;
NULL              883 libavcodec/mpegvideo.c     s->bits_tab = NULL;
NULL             1014 libavcodec/mpegvideo.c     s->p_mv_table            = NULL;
NULL             1015 libavcodec/mpegvideo.c     s->b_forw_mv_table       = NULL;
NULL             1016 libavcodec/mpegvideo.c     s->b_back_mv_table       = NULL;
NULL             1017 libavcodec/mpegvideo.c     s->b_bidir_forw_mv_table = NULL;
NULL             1018 libavcodec/mpegvideo.c     s->b_bidir_back_mv_table = NULL;
NULL             1019 libavcodec/mpegvideo.c     s->b_direct_mv_table     = NULL;
NULL             1024 libavcodec/mpegvideo.c                 s->b_field_mv_table[i][j][k] = NULL;
NULL             1028 libavcodec/mpegvideo.c             s->p_field_mv_table[i][j] = NULL;
NULL             1078 libavcodec/mpegvideo.c     s->current_picture_ptr      = NULL;
NULL             1180 libavcodec/mpegvideo.c     s->current_picture_ptr      = NULL;
NULL             1296 libavcodec/mpegvideo.c             s->last_picture_ptr    ? s->last_picture_ptr->f->data[0]    : NULL,
NULL             1297 libavcodec/mpegvideo.c             s->next_picture_ptr    ? s->next_picture_ptr->f->data[0]    : NULL,
NULL             1298 libavcodec/mpegvideo.c             s->current_picture_ptr ? s->current_picture_ptr->f->data[0] : NULL,
NULL             1326 libavcodec/mpegvideo.c             s->last_picture_ptr = NULL;
NULL             1367 libavcodec/mpegvideo.c             s->next_picture_ptr = NULL;
NULL             2268 libavcodec/mpegvideo.c                        s->last_picture_ptr ? s->last_picture_ptr->f : NULL, y, h, s->picture_structure,
NULL             2314 libavcodec/mpegvideo.c     s->current_picture_ptr = s->last_picture_ptr = s->next_picture_ptr = NULL;
NULL              607 libavcodec/mpegvideo.h { "dct264", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_DCT264 }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS, "cmp_func" }, \
NULL              608 libavcodec/mpegvideo.h { "dctmax", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_DCTMAX }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS, "cmp_func" }, \
NULL              609 libavcodec/mpegvideo.h { "chroma", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_CHROMA }, INT_MIN, INT_MAX, FF_MPV_OPT_FLAGS, "cmp_func" }, \
NULL              629 libavcodec/mpegvideo.h { "quantizer_noise_shaping", NULL,                                  FF_MPV_OFFSET(quantizer_noise_shaping), AV_OPT_TYPE_INT, { .i64 = 0 },       0, INT_MAX, FF_MPV_OPT_FLAGS },\
NULL              652 libavcodec/mpegvideo.h { "zero", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_ZERO }, 0, 0, FF_MPV_OPT_FLAGS, "motion_est" }, \
NULL              653 libavcodec/mpegvideo.h { "epzs", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_EPZS }, 0, 0, FF_MPV_OPT_FLAGS, "motion_est" }, \
NULL              654 libavcodec/mpegvideo.h { "xone", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_XONE }, 0, 0, FF_MPV_OPT_FLAGS, "motion_est" }, \
NULL               87 libavcodec/mpegvideo_enc.c     { NULL },
NULL             1092 libavcodec/mpegvideo_enc.c     s->q_chroma_intra_matrix=   NULL;
NULL             1093 libavcodec/mpegvideo_enc.c     s->q_chroma_intra_matrix16= NULL;
NULL             1131 libavcodec/mpegvideo_enc.c             int sad  = s->mecc.sad[0](NULL, src + offset, ref + offset,
NULL             1152 libavcodec/mpegvideo_enc.c     Picture *pic = NULL;
NULL             1429 libavcodec/mpegvideo_enc.c         c = avcodec_alloc_context3(NULL);
NULL             1445 libavcodec/mpegvideo_enc.c         ret = avcodec_open2(c, codec, NULL);
NULL             1477 libavcodec/mpegvideo_enc.c         out_size = encode_frame(c, NULL);
NULL             1506 libavcodec/mpegvideo_enc.c     s->reordered_input_picture[MAX_PICTURE_COUNT - 1] = NULL;
NULL             2281 libavcodec/mpegvideo_enc.c             progressive_score = s->mecc.ildct_cmp[4](s, ptr_y, NULL, wrap_y, 8) +
NULL             2283 libavcodec/mpegvideo_enc.c                                                      NULL, wrap_y, 8) - 400;
NULL             2287 libavcodec/mpegvideo_enc.c                                                         NULL, wrap_y * 2, 8) +
NULL             2289 libavcodec/mpegvideo_enc.c                                                         NULL, wrap_y * 2, 8);
NULL             2411 libavcodec/mpegvideo_enc.c             if (s->mecc.sad[1](NULL, ptr_y, dest_y, wrap_y, 8) < 20 * s->qscale)
NULL             2413 libavcodec/mpegvideo_enc.c             if (s->mecc.sad[1](NULL, ptr_y + 8, dest_y + 8, wrap_y, 8) < 20 * s->qscale)
NULL             2415 libavcodec/mpegvideo_enc.c             if (s->mecc.sad[1](NULL, ptr_y + dct_offset, dest_y + dct_offset,
NULL             2418 libavcodec/mpegvideo_enc.c             if (s->mecc.sad[1](NULL, ptr_y + dct_offset + 8, dest_y + dct_offset + 8,
NULL             2421 libavcodec/mpegvideo_enc.c             if (s->mecc.sad[1](NULL, ptr_cb, dest_cb, wrap_c, 8) < 20 * s->qscale)
NULL             2423 libavcodec/mpegvideo_enc.c             if (s->mecc.sad[1](NULL, ptr_cr, dest_cr, wrap_c, 8) < 20 * s->qscale)
NULL             2426 libavcodec/mpegvideo_enc.c                 if (s->mecc.sad[1](NULL, ptr_cb + uv_dct_offset,
NULL             2430 libavcodec/mpegvideo_enc.c                 if (s->mecc.sad[1](NULL, ptr_cr + uv_dct_offset,
NULL             2705 libavcodec/mpegvideo_enc.c         return s->mecc.sse[0](NULL, src1, src2, stride, 16);
NULL             2707 libavcodec/mpegvideo_enc.c         return s->mecc.sse[1](NULL, src1, src2, stride, 8);
NULL             2733 libavcodec/mpegvideo_enc.c         return s->mecc.sse[0](NULL, s->new_picture.f->data[0] + s->mb_x * 16 + s->mb_y * s->linesize   * 16, s->dest[0], s->linesize,   16) +
NULL             2734 libavcodec/mpegvideo_enc.c                s->mecc.sse[1](NULL, s->new_picture.f->data[1] + s->mb_x *  8 + s->mb_y * s->uvlinesize *  8, s->dest[1], s->uvlinesize,  8) +
NULL             2735 libavcodec/mpegvideo_enc.c                s->mecc.sse[1](NULL, s->new_picture.f->data[2] + s->mb_x *  8 + s->mb_y * s->uvlinesize *  8, s->dest[2], s->uvlinesize,  8);
NULL             2883 libavcodec/mpegvideo_enc.c         uint8_t *new_buffer = NULL;
NULL             3720 libavcodec/mpegvideo_enc.c                 s->avctx->execute(s->avctx, pre_estimate_motion_thread, &s->thread_context[0], NULL, context_count, sizeof(void*));
NULL             3724 libavcodec/mpegvideo_enc.c         s->avctx->execute(s->avctx, estimate_motion_thread, &s->thread_context[0], NULL, context_count, sizeof(void*));
NULL             3732 libavcodec/mpegvideo_enc.c             s->avctx->execute(s->avctx, mb_var_thread, &s->thread_context[0], NULL, context_count, sizeof(void*));
NULL             3765 libavcodec/mpegvideo_enc.c             ff_fix_long_mvs(s, NULL, 0, s->p_mv_table, s->f_code, CANDIDATE_MB_TYPE_INTER, !!s->intra_penalty);
NULL             3787 libavcodec/mpegvideo_enc.c             ff_fix_long_mvs(s, NULL, 0, s->b_forw_mv_table, s->f_code, CANDIDATE_MB_TYPE_FORWARD, 1);
NULL             3788 libavcodec/mpegvideo_enc.c             ff_fix_long_mvs(s, NULL, 0, s->b_back_mv_table, s->b_code, CANDIDATE_MB_TYPE_BACKWARD, 1);
NULL             3789 libavcodec/mpegvideo_enc.c             ff_fix_long_mvs(s, NULL, 0, s->b_bidir_forw_mv_table, s->f_code, CANDIDATE_MB_TYPE_BIDIR, 1);
NULL             3790 libavcodec/mpegvideo_enc.c             ff_fix_long_mvs(s, NULL, 0, s->b_bidir_back_mv_table, s->b_code, CANDIDATE_MB_TYPE_BIDIR, 1);
NULL             3918 libavcodec/mpegvideo_enc.c     s->avctx->execute(s->avctx, encode_thread, &s->thread_context[0], NULL, context_count, sizeof(void*));
NULL             4727 libavcodec/mpegvideo_enc.c     { NULL },
NULL             4757 libavcodec/mpegvideo_enc.c     { NULL },
NULL              198 libavcodec/mpegvideo_parser.c             *poutbuf = NULL;
NULL              208 libavcodec/mpegvideo_parser.c     ff_dlog(NULL, "pict_type=%d frame_rate=%0.3f repeat_pict=%d\n",
NULL               74 libavcodec/mpegvideo_xvmc.c             s->pblocks[i] = NULL;
NULL              123 libavcodec/mpegvideo_xvmc.c     render->p_future_surface  = NULL;
NULL              124 libavcodec/mpegvideo_xvmc.c     render->p_past_surface    = NULL;
NULL              358 libavcodec/mpegvideo_xvmc.c     .decode_slice   = NULL,
NULL              372 libavcodec/mpegvideo_xvmc.c     .decode_slice   = NULL,
NULL               76 libavcodec/mpl2dec.c         ret = ff_ass_add_rect(sub, buf.str, s->readorder++, 0, NULL, NULL);
NULL               77 libavcodec/mpl2dec.c     av_bprint_finalize(&buf, NULL);
NULL              196 libavcodec/msmpeg4dec.c         if (ff_msmpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, NULL) < 0)
NULL              290 libavcodec/msmpeg4dec.c         if (ff_msmpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, NULL) < 0)
NULL              202 libavcodec/mss1.c     ret = ff_mss12_decode_init(&c->ctx, 0, &c->sc, NULL);
NULL              307 libavcodec/mss12.c                 p = decode_pixel(acoder, pctx, NULL, 0, 0);
NULL              401 libavcodec/mss12.c                     p = decode_pixel(acoder, pctx, NULL, 0, 0);
NULL              481 libavcodec/mss12.c         pix     = decode_pixel(acoder, &sc->intra_pix_ctx, NULL, 0, 0);
NULL              509 libavcodec/mss12.c         mode = decode_pixel(acoder, &sc->inter_pix_ctx, NULL, 0, 0);
NULL              525 libavcodec/mss12.c         if (decode_region(acoder, c->mask, NULL,
NULL              624 libavcodec/mss2.c         c->last_rgb_pic = NULL;
NULL               73 libavcodec/mss2dsp.c                             0, NULL, 0,
NULL               99 libavcodec/mss2dsp.c                             NULL, 0,
NULL              100 libavcodec/mss2dsp.c                             NULL, NULL, 0,
NULL              172 libavcodec/mss4.c         ret = mss4_init_vlc(&ctx->dc_vlc[i], mss4_dc_vlc_lens[i], NULL, 12);
NULL              663 libavcodec/mv30.c                            cbp_bits, 1, 1, cbp_codes, 2, 2, NULL, 0, 0, 512);
NULL               51 libavcodec/mxpegdec.c     jpg->picture_ptr = NULL;
NULL              309 libavcodec/mxpegdec.c                     ret = ff_mjpeg_decode_sos(jpg, NULL, 0, NULL);
NULL              146 libavcodec/nellymoserdec.c     const uint8_t *side=av_packet_get_side_data(avpkt, 'F', NULL);
NULL               73 libavcodec/noise_bsf.c     { "amount", NULL, OFFSET(amount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
NULL               74 libavcodec/noise_bsf.c     { "dropamount", NULL, OFFSET(dropamount), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
NULL               75 libavcodec/noise_bsf.c     { NULL },
NULL              337 libavcodec/nuv.c     c->decomp_buf  = NULL;
NULL              192 libavcodec/nvdec.c                                    nvdec_decoder_free, NULL, AV_BUFFER_FLAG_READONLY);
NULL              245 libavcodec/nvdec.c         return NULL;
NULL              249 libavcodec/nvdec.c         return NULL;
NULL              281 libavcodec/nvdec.c     return av_buffer_create(NULL, 0, NULL, NULL, 0);
NULL              413 libavcodec/nvdec.c     real_hw_frames_ref = NULL;
NULL              480 libavcodec/nvdec.c     NVDECFrame *unmap_data = NULL;
NULL              554 libavcodec/nvdec.c     NVDECFrame *cf = NULL;
NULL              626 libavcodec/nvdec.c     ctx->bitstream = NULL;
NULL               66 libavcodec/nvenc.c     NULL,
NULL              268 libavcodec/nvenc.c         ctx->nvencoder = NULL;
NULL              280 libavcodec/nvenc.c     GUID *guids = NULL;
NULL              484 libavcodec/nvenc.c     ctx->cu_stream = NULL;
NULL              507 libavcodec/nvenc.c     ctx->nvencoder = NULL;
NULL              514 libavcodec/nvenc.c     ctx->cu_context_internal = NULL;
NULL              539 libavcodec/nvenc.c         AVCUDADeviceContext *cuda_device_hwctx = NULL;
NULL              541 libavcodec/nvenc.c         AVD3D11VADeviceContext *d3d11_device_hwctx = NULL;
NULL             1388 libavcodec/nvenc.c     av_fifo_generic_write(ctx->unused_surface_queue, &tmp_surface, sizeof(tmp_surface), NULL);
NULL             1519 libavcodec/nvenc.c     ctx->nvencoder = NULL;
NULL             1523 libavcodec/nvenc.c     ctx->cu_context = ctx->cu_context_internal = NULL;
NULL             1528 libavcodec/nvenc.c         ctx->d3d11_device = NULL;
NULL             1591 libavcodec/nvenc.c         return NULL;
NULL             1593 libavcodec/nvenc.c     av_fifo_generic_read(ctx->unused_surface_queue, &tmp_surf, sizeof(tmp_surf), NULL);
NULL             1646 libavcodec/nvenc.c                         ctx->registered_frames[i].ptr = NULL;
NULL             1647 libavcodec/nvenc.c                         ctx->registered_frames[i].regptr = NULL;
NULL             1811 libavcodec/nvenc.c     av_fifo_generic_write(queue, &timestamp, sizeof(timestamp), NULL);
NULL             1818 libavcodec/nvenc.c         av_fifo_generic_read(queue, &timestamp, sizeof(timestamp), NULL);
NULL             1844 libavcodec/nvenc.c     uint32_t *slice_offsets = NULL;
NULL             1915 libavcodec/nvenc.c         tmpoutsurf->input_surface = NULL;
NULL             1947 libavcodec/nvenc.c         (lock_params.frameAvgQP - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
NULL             2048 libavcodec/nvenc.c         params.reInitEncodeParams.encodeConfig = NULL;
NULL             2075 libavcodec/nvenc.c     NV_ENC_SEI_PAYLOAD *sei_data = NULL;
NULL             2175 libavcodec/nvenc.c         av_fifo_generic_write(ctx->output_surface_queue, &in_surf, sizeof(in_surf), NULL);
NULL             2182 libavcodec/nvenc.c             av_fifo_generic_read(ctx->output_surface_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
NULL             2183 libavcodec/nvenc.c             av_fifo_generic_write(ctx->output_surface_ready_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
NULL             2201 libavcodec/nvenc.c         av_fifo_generic_read(ctx->output_surface_ready_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
NULL             2216 libavcodec/nvenc.c         av_fifo_generic_write(ctx->unused_surface_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
NULL             2252 libavcodec/nvenc.c     ff_nvenc_send_frame(avctx, NULL);
NULL              145 libavcodec/nvenc_h264.c     { NULL }
NULL              158 libavcodec/nvenc_h264.c     { NULL },
NULL              134 libavcodec/nvenc_hevc.c     { NULL }
NULL              147 libavcodec/nvenc_hevc.c     { NULL },
NULL              110 libavcodec/omx.c             s->lib2 = NULL;
NULL              131 libavcodec/omx.c         s->lib = NULL;
NULL              134 libavcodec/omx.c         s->lib2 = NULL;
NULL              146 libavcodec/omx.c         "libOMX_Core.so", NULL,
NULL              147 libavcodec/omx.c         "libOmxCore.so", NULL,
NULL              149 libavcodec/omx.c         NULL
NULL              157 libavcodec/omx.c         return NULL;
NULL              159 libavcodec/omx.c         ret = omx_try_load(omx_context, logctx, libname, prefix, NULL);
NULL              162 libavcodec/omx.c             return NULL;
NULL              170 libavcodec/omx.c             return NULL;
NULL              257 libavcodec/omx.c         buffer = NULL;
NULL              315 libavcodec/omx.c             buffer->pAppPrivate = NULL;
NULL              346 libavcodec/omx.c     if (av_strstart(role, "video_encoder.", NULL)) {
NULL              351 libavcodec/omx.c     omx_context->ptr_GetComponentsOfRole((OMX_STRING) role, &num, NULL);
NULL              464 libavcodec/omx.c     in_port_params.format.video.pNativeRender         = NULL;
NULL              492 libavcodec/omx.c     out_port_params.format.video.pNativeRender = NULL;
NULL              544 libavcodec/omx.c     err = OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateIdle, NULL);
NULL              555 libavcodec/omx.c             err = OMX_UseBuffer(s->handle, &s->in_buffer_headers[i], s->in_port, s, in_port_params.nBufferSize, NULL);
NULL              559 libavcodec/omx.c             s->in_buffer_headers[i]->pAppPrivate = s->in_buffer_headers[i]->pOutputPortPrivate = NULL;
NULL              572 libavcodec/omx.c     err = OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateExecuting, NULL);
NULL              599 libavcodec/omx.c         OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateIdle, NULL);
NULL              601 libavcodec/omx.c         OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateLoaded, NULL);
NULL              606 libavcodec/omx.c                 buffer->pBuffer = NULL;
NULL              618 libavcodec/omx.c         s->handle = NULL;
NULL              622 libavcodec/omx.c     s->omx_context = NULL;
NULL              651 libavcodec/omx.c     pthread_mutex_init(&s->state_mutex, NULL);
NULL              652 libavcodec/omx.c     pthread_cond_init(&s->state_cond, NULL);
NULL              653 libavcodec/omx.c     pthread_mutex_init(&s->input_mutex, NULL);
NULL              654 libavcodec/omx.c     pthread_cond_init(&s->input_cond, NULL);
NULL              655 libavcodec/omx.c     pthread_mutex_init(&s->output_mutex, NULL);
NULL              656 libavcodec/omx.c     pthread_cond_init(&s->output_cond, NULL);
NULL              750 libavcodec/omx.c             uint8_t *src[4] = { NULL };
NULL              768 libavcodec/omx.c                     buffer->pOutputPortPrivate = NULL;
NULL              775 libavcodec/omx.c                 uint8_t *buf = NULL;
NULL              834 libavcodec/omx.c         buffer->pAppPrivate = buffer->pOutputPortPrivate = NULL;
NULL              882 libavcodec/omx.c                     s->output_buf = NULL;
NULL              941 libavcodec/omx.c     { NULL }
NULL              216 libavcodec/on2avc.c             av_log(NULL, AV_LOG_WARNING, "Too large golomb code in get_egolomb.\n");
NULL               53 libavcodec/options.c     return NULL;
NULL               58 libavcodec/options.c     void *iter = NULL;
NULL               59 libavcodec/options.c     const AVCodec *c = NULL;
NULL               70 libavcodec/options.c     return NULL;
NULL              162 libavcodec/options.c         return NULL;
NULL              166 libavcodec/options.c         return NULL;
NULL              242 libavcodec/options.c     dest->slice_offset    = NULL;
NULL              243 libavcodec/options.c     dest->hwaccel         = NULL;
NULL              244 libavcodec/options.c     dest->internal        = NULL;
NULL              247 libavcodec/options.c     dest->coded_frame     = NULL;
NULL              252 libavcodec/options.c     dest->extradata       = NULL;
NULL              253 libavcodec/options.c     dest->coded_side_data = NULL;
NULL              254 libavcodec/options.c     dest->intra_matrix    = NULL;
NULL              255 libavcodec/options.c     dest->inter_matrix    = NULL;
NULL              256 libavcodec/options.c     dest->rc_override     = NULL;
NULL              257 libavcodec/options.c     dest->subtitle_header = NULL;
NULL              258 libavcodec/options.c     dest->hw_frames_ctx   = NULL;
NULL              259 libavcodec/options.c     dest->hw_device_ctx   = NULL;
NULL              312 libavcodec/options.c {NULL},
NULL              317 libavcodec/options.c     .item_name               = NULL,
NULL              337 libavcodec/options.c {NULL},
NULL              342 libavcodec/options.c     .item_name              = NULL,
NULL               52 libavcodec/options_table.h {"flags", NULL, OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = DEFAULT }, 0, UINT_MAX, V|A|S|E|D, "flags"},
NULL               72 libavcodec/options_table.h {"flags2", NULL, OFFSET(flags2), AV_OPT_TYPE_FLAGS, {.i64 = DEFAULT}, 0, UINT_MAX, V|A|E|D|S, "flags2"},
NULL               86 libavcodec/options_table.h {"time_base", NULL, OFFSET(time_base), AV_OPT_TYPE_RATIONAL, {.dbl = 0}, 0, INT_MAX},
NULL               91 libavcodec/options_table.h {"frame_size", NULL, OFFSET(frame_size), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, 0, INT_MAX, A|E},
NULL               92 libavcodec/options_table.h {"frame_number", NULL, OFFSET(frame_number), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL               93 libavcodec/options_table.h {"delay", NULL, OFFSET(delay), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              108 libavcodec/options_table.h {"mv_bits", NULL, OFFSET(mv_bits), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              109 libavcodec/options_table.h {"header_bits", NULL, OFFSET(header_bits), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              110 libavcodec/options_table.h {"i_tex_bits", NULL, OFFSET(i_tex_bits), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              111 libavcodec/options_table.h {"p_tex_bits", NULL, OFFSET(p_tex_bits), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              112 libavcodec/options_table.h {"i_count", NULL, OFFSET(i_count), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              113 libavcodec/options_table.h {"p_count", NULL, OFFSET(p_count), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              114 libavcodec/options_table.h {"skip_count", NULL, OFFSET(skip_count), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              115 libavcodec/options_table.h {"misc_bits", NULL, OFFSET(misc_bits), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              116 libavcodec/options_table.h {"frame_bits", NULL, OFFSET(frame_bits), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              118 libavcodec/options_table.h {"codec_tag", NULL, OFFSET(codec_tag), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              120 libavcodec/options_table.h {"autodetect", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_BUG_AUTODETECT }, INT_MIN, INT_MAX, V|D, "bug"},
NULL              124 libavcodec/options_table.h {"amv", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_BUG_AMV }, INT_MIN, INT_MAX, V|D, "bug"},
NULL              125 libavcodec/options_table.h {"qpel_chroma", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_BUG_QPEL_CHROMA }, INT_MIN, INT_MAX, V|D, "bug"},
NULL              127 libavcodec/options_table.h {"qpel_chroma2", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_BUG_QPEL_CHROMA2 }, INT_MIN, INT_MAX, V|D, "bug"},
NULL              130 libavcodec/options_table.h {"hpel_chroma", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_BUG_HPEL_CHROMA }, INT_MIN, INT_MAX, V|D, "bug"},
NULL              131 libavcodec/options_table.h {"dc_clip", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_BUG_DC_CLIP }, INT_MIN, INT_MAX, V|D, "bug"},
NULL              134 libavcodec/options_table.h {"iedge", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_BUG_IEDGE }, INT_MIN, INT_MAX, V|D, "bug"},
NULL              138 libavcodec/options_table.h {"normal", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_NORMAL }, INT_MIN, INT_MAX, A|V|D|E, "strict"},
NULL              151 libavcodec/options_table.h {"has_b_frames", NULL, OFFSET(has_b_frames), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, 0, INT_MAX},
NULL              152 libavcodec/options_table.h {"block_align", NULL, OFFSET(block_align), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, 0, INT_MAX},
NULL              156 libavcodec/options_table.h {"rc_override_count", NULL, OFFSET(rc_override_count), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              167 libavcodec/options_table.h {"mmx", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DCT_MMX }, INT_MIN, INT_MAX, V|E, "dct"},
NULL              168 libavcodec/options_table.h {"altivec", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DCT_ALTIVEC }, INT_MIN, INT_MAX, V|E, "dct"},
NULL              176 libavcodec/options_table.h {"auto", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_AUTO }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              177 libavcodec/options_table.h {"int", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_INT }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              178 libavcodec/options_table.h {"simple", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_SIMPLE }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              179 libavcodec/options_table.h {"simplemmx", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_SIMPLEMMX }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              180 libavcodec/options_table.h {"arm", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_ARM }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              181 libavcodec/options_table.h {"altivec", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_ALTIVEC }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              182 libavcodec/options_table.h {"simplearm", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_SIMPLEARM }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              183 libavcodec/options_table.h {"simplearmv5te", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_SIMPLEARMV5TE }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              184 libavcodec/options_table.h {"simplearmv6", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_SIMPLEARMV6 }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              185 libavcodec/options_table.h {"simpleneon", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_SIMPLENEON }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              186 libavcodec/options_table.h {"xvid", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_XVID }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              189 libavcodec/options_table.h {"simpleauto", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_IDCT_SIMPLEAUTO }, INT_MIN, INT_MAX, V|E|D, "idct"},
NULL              190 libavcodec/options_table.h {"slice_count", NULL, OFFSET(slice_count), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              195 libavcodec/options_table.h {"bits_per_coded_sample", NULL, OFFSET(bits_per_coded_sample), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, 0, INT_MAX},
NULL              198 libavcodec/options_table.h {"left", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_PRED_LEFT }, INT_MIN, INT_MAX, V|E, "pred"},
NULL              199 libavcodec/options_table.h {"plane", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_PRED_PLANE }, INT_MIN, INT_MAX, V|E, "pred"},
NULL              200 libavcodec/options_table.h {"median", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_PRED_MEDIAN }, INT_MIN, INT_MAX, V|E, "pred"},
NULL              207 libavcodec/options_table.h {"bitstream", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_BITSTREAM }, INT_MIN, INT_MAX, V|D, "debug"},
NULL              213 libavcodec/options_table.h {"dct_coeff", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_DCT_COEFF }, INT_MIN, INT_MAX, V|D, "debug"},
NULL              214 libavcodec/options_table.h {"green_metadata", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_GREEN_MD }, INT_MIN, INT_MAX, V|D, "debug"},
NULL              215 libavcodec/options_table.h {"skip", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_SKIP }, INT_MIN, INT_MAX, V|D, "debug"},
NULL              216 libavcodec/options_table.h {"startcode", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_STARTCODE }, INT_MIN, INT_MAX, V|D, "debug"},
NULL              219 libavcodec/options_table.h {"bugs", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_DEBUG_BUGS }, INT_MIN, INT_MAX, V|D, "debug"},
NULL              235 libavcodec/options_table.h {"global_quality", NULL, OFFSET(global_quality), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|A|E},
NULL              237 libavcodec/options_table.h {"coder", NULL, OFFSET(coder_type), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|E, "coder"},
NULL              246 libavcodec/options_table.h {"slice_flags", NULL, OFFSET(slice_flags), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
NULL              264 libavcodec/options_table.h {"profile", NULL, OFFSET(profile), AV_OPT_TYPE_INT, {.i64 = FF_PROFILE_UNKNOWN }, INT_MIN, INT_MAX, V|A|E|CC, "avctx.profile"},
NULL              265 libavcodec/options_table.h {"unknown", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_PROFILE_UNKNOWN }, INT_MIN, INT_MAX, V|A|E, "avctx.profile"},
NULL              266 libavcodec/options_table.h {"main10",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_PROFILE_HEVC_MAIN_10 }, INT_MIN, INT_MAX, V|E, "avctx.profile"},
NULL              267 libavcodec/options_table.h {"level", NULL, OFFSET(level), AV_OPT_TYPE_INT, {.i64 = FF_LEVEL_UNKNOWN }, INT_MIN, INT_MAX, V|A|E, "level"},
NULL              268 libavcodec/options_table.h {"unknown", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_LEVEL_UNKNOWN }, INT_MIN, INT_MAX, V|A|E, "level"},
NULL              296 libavcodec/options_table.h {"dctmax", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_DCTMAX }, INT_MIN, INT_MAX, V|E, "cmp_func"},
NULL              297 libavcodec/options_table.h {"chroma", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_CMP_CHROMA }, INT_MIN, INT_MAX, V|E, "cmp_func"},
NULL              324 libavcodec/options_table.h {"mv0_threshold", NULL, OFFSET(mv0_threshold), AV_OPT_TYPE_INT, {.i64 = 256 }, 0, INT_MAX, V|E},
NULL              328 libavcodec/options_table.h {"compression_level", NULL, OFFSET(compression_level), AV_OPT_TYPE_INT, {.i64 = FF_COMPRESSION_DEFAULT }, INT_MIN, INT_MAX, V|A|E},
NULL              330 libavcodec/options_table.h {"min_prediction_order", NULL, OFFSET(min_prediction_order), AV_OPT_TYPE_INT, {.i64 = -1 }, INT_MIN, INT_MAX, A|E},
NULL              331 libavcodec/options_table.h {"max_prediction_order", NULL, OFFSET(max_prediction_order), AV_OPT_TYPE_INT, {.i64 = -1 }, INT_MIN, INT_MAX, A|E},
NULL              334 libavcodec/options_table.h {"bits_per_raw_sample", NULL, OFFSET(bits_per_raw_sample), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, 0, INT_MAX},
NULL              335 libavcodec/options_table.h {"channel_layout", NULL, OFFSET(channel_layout), AV_OPT_TYPE_UINT64, {.i64 = DEFAULT }, 0, UINT64_MAX, A|E|D, "channel_layout"},
NULL              336 libavcodec/options_table.h {"request_channel_layout", NULL, OFFSET(request_channel_layout), AV_OPT_TYPE_UINT64, {.i64 = DEFAULT }, 0, UINT64_MAX, A|D, "request_channel_layout"},
NULL              337 libavcodec/options_table.h {"rc_max_vbv_use", NULL, OFFSET(rc_max_available_vbv_use), AV_OPT_TYPE_FLOAT, {.dbl = 0 }, 0.0, FLT_MAX, V|E},
NULL              338 libavcodec/options_table.h {"rc_min_vbv_use", NULL, OFFSET(rc_min_vbv_overflow_use),  AV_OPT_TYPE_FLOAT, {.dbl = 3 },     0.0, FLT_MAX, V|E},
NULL              339 libavcodec/options_table.h {"ticks_per_frame", NULL, OFFSET(ticks_per_frame), AV_OPT_TYPE_INT, {.i64 = 1 }, 1, INT_MAX, A|V|E|D},
NULL              418 libavcodec/options_table.h {"slice", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_THREAD_SLICE }, INT_MIN, INT_MAX, V|E|D, "thread_type"},
NULL              419 libavcodec/options_table.h {"frame", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_THREAD_FRAME }, INT_MIN, INT_MAX, V|E|D, "thread_type"},
NULL              431 libavcodec/options_table.h {"pkt_timebase", NULL, OFFSET(pkt_timebase), AV_OPT_TYPE_RATIONAL, {.dbl = 0 }, 0, INT_MAX, 0},
NULL              432 libavcodec/options_table.h {"sub_charenc", "set input text subtitles character encoding", OFFSET(sub_charenc), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, S|D},
NULL              434 libavcodec/options_table.h {"do_nothing",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_SUB_CHARENC_MODE_DO_NOTHING},  INT_MIN, INT_MAX, S|D, "sub_charenc_mode"},
NULL              435 libavcodec/options_table.h {"auto",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_SUB_CHARENC_MODE_AUTOMATIC},   INT_MIN, INT_MAX, S|D, "sub_charenc_mode"},
NULL              436 libavcodec/options_table.h {"pre_decoder", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_SUB_CHARENC_MODE_PRE_DECODER}, INT_MIN, INT_MAX, S|D, "sub_charenc_mode"},
NULL              437 libavcodec/options_table.h {"ignore",      NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_SUB_CHARENC_MODE_IGNORE},      INT_MIN, INT_MAX, S|D, "sub_charenc_mode"},
NULL              443 libavcodec/options_table.h {"ass",              NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_SUB_TEXT_FMT_ASS},              INT_MIN, INT_MAX, S|D, "sub_text_format"},
NULL              445 libavcodec/options_table.h {"ass_with_timings", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS}, INT_MIN, INT_MAX, S|D, "sub_text_format"},
NULL              447 libavcodec/options_table.h {"refcounted_frames", NULL, OFFSET(refcounted_frames), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, A|V|D },
NULL              449 libavcodec/options_table.h {"side_data_only_packets", NULL, OFFSET(side_data_only_packets), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, A|V|E },
NULL              451 libavcodec/options_table.h {"apply_cropping", NULL, OFFSET(apply_cropping), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, V | D },
NULL              454 libavcodec/options_table.h {"progressive", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AV_FIELD_PROGRESSIVE }, 0, 0, V|D|E, "field_order" },
NULL              455 libavcodec/options_table.h {"tt", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AV_FIELD_TT }, 0, 0, V|D|E, "field_order" },
NULL              456 libavcodec/options_table.h {"bb", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AV_FIELD_BB }, 0, 0, V|D|E, "field_order" },
NULL              457 libavcodec/options_table.h {"tb", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AV_FIELD_TB }, 0, 0, V|D|E, "field_order" },
NULL              458 libavcodec/options_table.h {"bt", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AV_FIELD_BT }, 0, 0, V|D|E, "field_order" },
NULL              459 libavcodec/options_table.h {"dump_separator", "set information dump field separator", OFFSET(dump_separator), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, A|V|S|D|E},
NULL              460 libavcodec/options_table.h {"codec_whitelist", "List of decoders that are allowed to be used", OFFSET(codec_whitelist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, A|V|S|D },
NULL              462 libavcodec/options_table.h {"video_size", "set video size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str=NULL}, 0, INT_MAX, 0 },
NULL              465 libavcodec/options_table.h {"hwaccel_flags", NULL, OFFSET(hwaccel_flags), AV_OPT_TYPE_FLAGS, {.i64 = AV_HWACCEL_FLAG_IGNORE_LEVEL }, 0, UINT_MAX, V|D, "hwaccel_flags"},
NULL              471 libavcodec/options_table.h {NULL},
NULL              464 libavcodec/opus.c         float *Y = (f->channels == 2) ? f->block[1].coeffs + band_offset : NULL;
NULL              523 libavcodec/opus.c         norm_loc1 = effective_lowband != -1 ? norm1 + (effective_lowband << f->size) : NULL;
NULL              524 libavcodec/opus.c         norm_loc2 = effective_lowband != -1 ? norm2 + (effective_lowband << f->size) : NULL;
NULL              527 libavcodec/opus.c             cm[0] = f->pvq->quant_band(f->pvq, f, rc, i, X, NULL, band_size, b >> 1,
NULL              532 libavcodec/opus.c             cm[1] = f->pvq->quant_band(f->pvq, f, rc, i, Y, NULL, band_size, b >> 1,
NULL               46 libavcodec/opus_metadata_bsf.c     { NULL },
NULL               72 libavcodec/opus_parser.c         return NULL;
NULL              177 libavcodec/opus_parser.c         *poutbuf      = NULL;
NULL              183 libavcodec/opus_parser.c         *poutbuf      = NULL;
NULL              702 libavcodec/opus_pvq.c             cm = pvq->quant_band(pvq, f, rc, band, x2, NULL, N, mbits, blocks, lowband, duration,
NULL              720 libavcodec/opus_pvq.c             float *next_lowband2     = NULL;
NULL              721 libavcodec/opus_pvq.c             float *next_lowband_out1 = NULL;
NULL              755 libavcodec/opus_pvq.c                 cm = pvq->quant_band(pvq, f, rc, band, X, NULL, N, mbits, blocks,
NULL              764 libavcodec/opus_pvq.c                 cmt = pvq->quant_band(pvq, f, rc, band, Y, NULL, N, sbits, blocks,
NULL              765 libavcodec/opus_pvq.c                                       next_lowband2, duration, NULL, next_level,
NULL              766 libavcodec/opus_pvq.c                                       gain * side, NULL, fill >> blocks);
NULL              771 libavcodec/opus_pvq.c                 cm = pvq->quant_band(pvq, f, rc, band, Y, NULL, N, sbits, blocks,
NULL              772 libavcodec/opus_pvq.c                                      next_lowband2, duration, NULL, next_level,
NULL              773 libavcodec/opus_pvq.c                                      gain * side, NULL, fill >> blocks);
NULL              781 libavcodec/opus_pvq.c                 cm |= pvq->quant_band(pvq, f, rc, band, X, NULL, N, mbits, blocks,
NULL               91 libavcodec/opusdec.c                       NULL, 0);
NULL              142 libavcodec/opusdec.c                       NULL, 0,
NULL              408 libavcodec/opusdec.c     s->out[0] = s->out[1] = NULL;
NULL              430 libavcodec/opusdec.c         s->out[1] = NULL;
NULL              488 libavcodec/opusdec.c             out[0] = NULL;
NULL              492 libavcodec/opusdec.c             out[1] = NULL;
NULL              719 libavcodec/opusdec.c     { NULL },
NULL              118 libavcodec/opusenc.c     AVFrame *cur = NULL;
NULL              519 libavcodec/opusenc.c         return NULL;
NULL              525 libavcodec/opusenc.c         return NULL;
NULL              705 libavcodec/opusenc.c     { NULL },
NULL              718 libavcodec/opusenc.c     { NULL },
NULL               38 libavcodec/opusenc_psy.c     float *Y = (f->channels == 2) ? &buf[176] : NULL;
NULL               53 libavcodec/opusenc_psy.c         pvq->quant_band(pvq, f, rc, band, X, NULL, band_size, b / 2, f->blocks, NULL,
NULL               56 libavcodec/opusenc_psy.c         pvq->quant_band(pvq, f, rc, band, Y, NULL, band_size, b / 2, f->blocks, NULL,
NULL               59 libavcodec/opusenc_psy.c         pvq->quant_band(pvq, f, rc, band, X, Y, band_size, b, f->blocks, NULL, f->size,
NULL               36 libavcodec/parser.c     AVCodecParserContext *s = NULL;
NULL               42 libavcodec/parser.c         return NULL;
NULL               52 libavcodec/parser.c     return NULL;
NULL               86 libavcodec/parser.c     return NULL;
NULL              238 libavcodec/parser.c         ff_dlog(NULL, "overread %d, state:%"PRIX32" next:%d index:%d o_index:%d\n",
NULL              240 libavcodec/parser.c         ff_dlog(NULL, "%X %X %X %X\n",
NULL              264 libavcodec/parser.c             av_log(NULL, AV_LOG_ERROR, "Failed to reallocate parser buffer to %d\n", *buf_size + pc->index + AV_INPUT_BUFFER_PADDING_SIZE);
NULL              285 libavcodec/parser.c             av_log(NULL, AV_LOG_ERROR, "Failed to reallocate parser buffer to %d\n", next + pc->index + AV_INPUT_BUFFER_PADDING_SIZE);
NULL              310 libavcodec/parser.c         ff_dlog(NULL, "overread %d, state:%"PRIX32" next:%d index:%d o_index:%d\n",
NULL              312 libavcodec/parser.c         ff_dlog(NULL, "%X %X %X %X\n",
NULL               79 libavcodec/parsers.c     AVCodecParser *prev = NULL, *p;
NULL              230 libavcodec/pcm-dvd.c         return NULL;
NULL              182 libavcodec/pcm_rechunk_bsf.c     { NULL },
NULL              105 libavcodec/pcxenc.c     const uint32_t *pal = NULL;
NULL              123 libavcodec/pgssubdec.c     return NULL;
NULL              134 libavcodec/pgssubdec.c     return NULL;
NULL              710 libavcodec/pgssubdec.c     { NULL },
NULL               48 libavcodec/png_parser.c     *poutbuf = NULL;
NULL              455 libavcodec/pngdec.c     zstream.opaque = NULL;
NULL              485 libavcodec/pngdec.c     av_bprint_finalize(bp, NULL);
NULL              497 libavcodec/pngdec.c         return NULL;
NULL              500 libavcodec/pngdec.c         return NULL;
NULL              521 libavcodec/pngdec.c     uint8_t *kw_utf8 = NULL, *text, *txt_utf8 = NULL;
NULL             1189 libavcodec/pngdec.c     AVDictionary **metadatap = NULL;
NULL             1503 libavcodec/pngdec.c     s->zstream.opaque = NULL;
NULL             1527 libavcodec/pngdec.c     s->crow_buf = NULL;
NULL             1622 libavcodec/pngdec.c         s->zstream.opaque = NULL;
NULL              438 libavcodec/pngenc.c     uint8_t *crow_base       = NULL;
NULL              439 libavcodec/pngenc.c     uint8_t *progressive_buf = NULL;
NULL              440 libavcodec/pngenc.c     uint8_t *top_buf         = NULL;
NULL              471 libavcodec/pngenc.c                 top = NULL;
NULL              487 libavcodec/pngenc.c         top = NULL;
NULL              560 libavcodec/pngenc.c     png_write_chunk(&s->bytestream, MKTAG('I', 'E', 'N', 'D'), NULL, 0);
NULL             1088 libavcodec/pngenc.c     s->zstream.opaque = NULL;
NULL             1117 libavcodec/pngenc.c         { "none",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PNG_FILTER_VALUE_NONE },  INT_MIN, INT_MAX, VE, "pred" },
NULL             1118 libavcodec/pngenc.c         { "sub",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PNG_FILTER_VALUE_SUB },   INT_MIN, INT_MAX, VE, "pred" },
NULL             1119 libavcodec/pngenc.c         { "up",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PNG_FILTER_VALUE_UP },    INT_MIN, INT_MAX, VE, "pred" },
NULL             1120 libavcodec/pngenc.c         { "avg",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PNG_FILTER_VALUE_AVG },   INT_MIN, INT_MAX, VE, "pred" },
NULL             1121 libavcodec/pngenc.c         { "paeth", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PNG_FILTER_VALUE_PAETH }, INT_MIN, INT_MAX, VE, "pred" },
NULL             1122 libavcodec/pngenc.c         { "mixed", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PNG_FILTER_VALUE_MIXED }, INT_MIN, INT_MAX, VE, "pred" },
NULL             1123 libavcodec/pngenc.c     { NULL},
NULL              104 libavcodec/pnm.c                 w = strtol(buf1, NULL, 10);
NULL              107 libavcodec/pnm.c                 h = strtol(buf1, NULL, 10);
NULL              110 libavcodec/pnm.c                 depth = strtol(buf1, NULL, 10);
NULL              113 libavcodec/pnm.c                 maxval = strtol(buf1, NULL, 10);
NULL              123 libavcodec/pnm_parser.c         *poutbuf      = NULL;
NULL               29 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_main",      NULL, AUDIO, FF_PROFILE_AAC_MAIN)\
NULL               30 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_low",       NULL, AUDIO, FF_PROFILE_AAC_LOW)\
NULL               31 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_ssr",       NULL, AUDIO, FF_PROFILE_AAC_SSR)\
NULL               32 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_ltp",       NULL, AUDIO, FF_PROFILE_AAC_LTP)\
NULL               33 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_he",        NULL, AUDIO, FF_PROFILE_AAC_HE)\
NULL               34 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_he_v2",     NULL, AUDIO, FF_PROFILE_AAC_HE_V2)\
NULL               35 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_ld",        NULL, AUDIO, FF_PROFILE_AAC_LD)\
NULL               36 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("aac_eld",       NULL, AUDIO, FF_PROFILE_AAC_ELD)\
NULL               37 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("mpeg2_aac_low", NULL, AUDIO, FF_PROFILE_MPEG2_AAC_LOW)\
NULL               38 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("mpeg2_aac_he",  NULL, AUDIO, FF_PROFILE_MPEG2_AAC_HE)\
NULL               41 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("mpeg4_sp",      NULL, VIDEO, FF_PROFILE_MPEG4_SIMPLE)\
NULL               42 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("mpeg4_core",    NULL, VIDEO, FF_PROFILE_MPEG4_CORE)\
NULL               43 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("mpeg4_main",    NULL, VIDEO, FF_PROFILE_MPEG4_MAIN)\
NULL               44 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("mpeg4_asp",     NULL, VIDEO, FF_PROFILE_MPEG4_ADVANCED_SIMPLE)\
NULL               47 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("422",           NULL, VIDEO, FF_PROFILE_MPEG2_422)\
NULL               48 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("high",          NULL, VIDEO, FF_PROFILE_MPEG2_HIGH)\
NULL               49 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("ss",            NULL, VIDEO, FF_PROFILE_MPEG2_SS)\
NULL               50 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("snr",           NULL, VIDEO, FF_PROFILE_MPEG2_SNR_SCALABLE)\
NULL               51 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("main",          NULL, VIDEO, FF_PROFILE_MPEG2_MAIN)\
NULL               52 libavcodec/profiles.h     FF_AVCTX_PROFILE_OPTION("simple",        NULL, VIDEO, FF_PROFILE_MPEG2_SIMPLE)\
NULL              137 libavcodec/prores_metadata_bsf.c     {"unknown",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=0},                      INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL              138 libavcodec/prores_metadata_bsf.c     {"bt709",                           NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_BT709},        INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL              139 libavcodec/prores_metadata_bsf.c     {"bt470bg",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_BT470BG},      INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL              140 libavcodec/prores_metadata_bsf.c     {"smpte170m",                       NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE170M},    INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL              141 libavcodec/prores_metadata_bsf.c     {"bt2020",                          NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_BT2020},       INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL              142 libavcodec/prores_metadata_bsf.c     {"smpte431",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE431},     INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL              143 libavcodec/prores_metadata_bsf.c     {"smpte432",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE432},     INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL              147 libavcodec/prores_metadata_bsf.c     {"unknown",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=0},                                INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL              148 libavcodec/prores_metadata_bsf.c     {"bt709",                          NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_BT709},                  INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL              149 libavcodec/prores_metadata_bsf.c     {"smpte2084",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_SMPTE2084},              INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL              150 libavcodec/prores_metadata_bsf.c     {"arib-std-b67",                   NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_ARIB_STD_B67},           INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL              154 libavcodec/prores_metadata_bsf.c     {"unknown",                    NULL,  0, AV_OPT_TYPE_CONST, {.i64=0},                             INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              155 libavcodec/prores_metadata_bsf.c     {"bt709",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_BT709},               INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              156 libavcodec/prores_metadata_bsf.c     {"smpte170m",                  NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_SMPTE170M},           INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              157 libavcodec/prores_metadata_bsf.c     {"bt2020nc",                   NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_BT2020_NCL},          INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              159 libavcodec/prores_metadata_bsf.c     { NULL },
NULL              738 libavcodec/proresdec2.c     avctx->execute2(avctx, decode_slice_thread, NULL, NULL, ctx->slice_count);
NULL              928 libavcodec/proresenc_anatoliy.c     { NULL }
NULL             1073 libavcodec/proresenc_kostya.c             ret = avctx->execute2(avctx, find_quant_thread, (void*)pic, NULL,
NULL             1375 libavcodec/proresenc_kostya.c     { "profile",       NULL, OFFSET(profile), AV_OPT_TYPE_INT,
NULL             1378 libavcodec/proresenc_kostya.c     { "auto",         NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRORES_PROFILE_AUTO },
NULL             1380 libavcodec/proresenc_kostya.c     { "proxy",         NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRORES_PROFILE_PROXY },
NULL             1382 libavcodec/proresenc_kostya.c     { "lt",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRORES_PROFILE_LT },
NULL             1384 libavcodec/proresenc_kostya.c     { "standard",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRORES_PROFILE_STANDARD },
NULL             1386 libavcodec/proresenc_kostya.c     { "hq",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRORES_PROFILE_HQ },
NULL             1388 libavcodec/proresenc_kostya.c     { "4444",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRORES_PROFILE_4444 },
NULL             1390 libavcodec/proresenc_kostya.c     { "4444xq",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRORES_PROFILE_4444XQ },
NULL             1398 libavcodec/proresenc_kostya.c     { "auto",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 },
NULL             1400 libavcodec/proresenc_kostya.c     { "proxy",         NULL, 0, AV_OPT_TYPE_CONST, { .i64 = QUANT_MAT_PROXY },
NULL             1402 libavcodec/proresenc_kostya.c     { "lt",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = QUANT_MAT_LT },
NULL             1404 libavcodec/proresenc_kostya.c     { "standard",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = QUANT_MAT_STANDARD },
NULL             1406 libavcodec/proresenc_kostya.c     { "hq",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = QUANT_MAT_HQ },
NULL             1408 libavcodec/proresenc_kostya.c     { "default",       NULL, 0, AV_OPT_TYPE_CONST, { .i64 = QUANT_MAT_DEFAULT },
NULL             1412 libavcodec/proresenc_kostya.c     { NULL }
NULL              307 libavcodec/psd.c     s->tmp           = NULL;
NULL              110 libavcodec/psymodel.c         return NULL;
NULL              127 libavcodec/psymodel.c                 return NULL;
NULL              234 libavcodec/pthread_frame.c     return NULL;
NULL              571 libavcodec/pthread_frame.c     atomic_int *progress = f->progress ? (atomic_int*)f->progress->data : NULL;
NULL              594 libavcodec/pthread_frame.c     atomic_int *progress = f->progress ? (atomic_int*)f->progress->data : NULL;
NULL              694 libavcodec/pthread_frame.c             pthread_join(p->thread, NULL);
NULL              745 libavcodec/pthread_frame.c     avctx->codec = NULL;
NULL              784 libavcodec/pthread_frame.c     pthread_mutex_init(&fctx->buffer_mutex, NULL);
NULL              785 libavcodec/pthread_frame.c     pthread_mutex_init(&fctx->hwaccel_mutex, NULL);
NULL              786 libavcodec/pthread_frame.c     pthread_mutex_init(&fctx->async_mutex, NULL);
NULL              787 libavcodec/pthread_frame.c     pthread_cond_init(&fctx->async_cond, NULL);
NULL              799 libavcodec/pthread_frame.c         pthread_mutex_init(&p->mutex, NULL);
NULL              800 libavcodec/pthread_frame.c         pthread_mutex_init(&p->progress_mutex, NULL);
NULL              801 libavcodec/pthread_frame.c         pthread_cond_init(&p->input_cond, NULL);
NULL              802 libavcodec/pthread_frame.c         pthread_cond_init(&p->progress_cond, NULL);
NULL              803 libavcodec/pthread_frame.c         pthread_cond_init(&p->output_cond, NULL);
NULL              824 libavcodec/pthread_frame.c             copy->priv_data = NULL;
NULL              862 libavcodec/pthread_frame.c         err = AVERROR(pthread_create(&p->thread, NULL, frame_worker_thread, p));
NULL              891 libavcodec/pthread_frame.c     fctx->prev_thread = NULL;
NULL             1022 libavcodec/pthread_frame.c     f->owner[0] = f->owner[1] = NULL;
NULL              118 libavcodec/pthread_slice.c     return thread_execute(avctx, NULL, arg, ret, job_count, 0);
NULL              126 libavcodec/pthread_slice.c     return thread_execute(avctx, NULL, arg, ret, job_count, 0);
NULL              158 libavcodec/pthread_slice.c     mainfunc = avctx->codec->caps_internal & FF_CODEC_CAP_SLICE_THREAD_HAS_MF ? &main_function : NULL;
NULL              230 libavcodec/pthread_slice.c             pthread_mutex_init(&p->progress_mutex[i], NULL);
NULL              231 libavcodec/pthread_slice.c             pthread_cond_init(&p->progress_cond[i], NULL);
NULL               53 libavcodec/put_bits.h         buffer      = NULL;
NULL              182 libavcodec/put_bits.h             av_log(NULL, AV_LOG_ERROR, "Internal error, put_bits buffer too small\n");
NULL              200 libavcodec/put_bits.h             av_log(NULL, AV_LOG_ERROR, "Internal error, put_bits buffer too small\n");
NULL              228 libavcodec/put_bits.h             av_log(NULL, AV_LOG_ERROR, "Internal error, put_bits buffer too small\n");
NULL              264 libavcodec/put_bits.h         av_log(NULL, AV_LOG_ERROR, "Internal error, put_bits buffer too small\n");
NULL              275 libavcodec/put_bits.h         av_log(NULL, AV_LOG_ERROR, "Internal error, put_bits buffer too small\n");
NULL              269 libavcodec/qcelpdata.h     NULL,                     ///< for SILENCE rate
NULL               57 libavcodec/qdm2.c       list[size].next = NULL; \
NULL               71 libavcodec/qdm2.c      av_log (NULL,AV_LOG_INFO,"This file triggers some untested code. Please contact the developers.\n");
NULL               74 libavcodec/qdm2.c      av_log (NULL,AV_LOG_INFO,"This file triggers some missing code. Please contact the developers.\nPosition: %s\n",why);
NULL              216 libavcodec/qdm2.c             av_log(NULL, AV_LOG_ERROR, "value %d in qdm2_get_vlc too large\n", value);
NULL              269 libavcodec/qdm2.c         sub_packet->data = NULL;
NULL              286 libavcodec/qdm2.c     av_log(NULL, AV_LOG_DEBUG, "Subpacket: type=%d size=%d start_offs=%x\n",
NULL              305 libavcodec/qdm2.c     return NULL;
NULL              544 libavcodec/qdm2.c         avpriv_request_sample(NULL, "!superblocktype_2_3");
NULL              697 libavcodec/qdm2.c                 av_log(NULL, AV_LOG_ERROR, "coding method invalid\n");
NULL              723 libavcodec/qdm2.c                                     av_log(NULL, AV_LOG_ERROR, "Invalid 8bit codeword\n");
NULL              764 libavcodec/qdm2.c                                     av_log(NULL, AV_LOG_ERROR, "Invalid 8bit codeword\n");
NULL              782 libavcodec/qdm2.c                                 av_log(NULL, AV_LOG_ERROR, "Invalid 7bit codeword\n");
NULL              799 libavcodec/qdm2.c                                 av_log(NULL, AV_LOG_ERROR, "index %d out of type30_dequant array\n", index);
NULL              819 libavcodec/qdm2.c                                     av_log(NULL, AV_LOG_ERROR, "index %d out of type34_delta array\n", index);
NULL             1098 libavcodec/qdm2.c         process_subpacket_10(q, NULL);
NULL             1104 libavcodec/qdm2.c         process_subpacket_11(q, NULL);
NULL             1110 libavcodec/qdm2.c         process_subpacket_12(q, NULL);
NULL             1139 libavcodec/qdm2.c         av_log(NULL, AV_LOG_ERROR, "bad superblock type\n");
NULL             1156 libavcodec/qdm2.c             av_log(NULL, AV_LOG_ERROR, "bad packet checksum\n");
NULL             1161 libavcodec/qdm2.c     q->sub_packet_list_B[0].packet = NULL;
NULL             1162 libavcodec/qdm2.c     q->sub_packet_list_D[0].packet = NULL;
NULL             1176 libavcodec/qdm2.c         q->sub_packet_list_A[i].next = NULL;
NULL             1236 libavcodec/qdm2.c         process_subpacket_10(q, NULL);
NULL             1237 libavcodec/qdm2.c         process_subpacket_11(q, NULL);
NULL             1238 libavcodec/qdm2.c         process_subpacket_12(q, NULL);
NULL             1278 libavcodec/qdm2.c                         av_log(NULL, AV_LOG_ERROR, "overread in qdm2_fft_decode_tones()\n");
NULL             1293 libavcodec/qdm2.c                 av_log(NULL, AV_LOG_ERROR, "qdm2_fft_decode_tones() stuck\n");
NULL             1366 libavcodec/qdm2.c         QDM2SubPacket *packet = NULL;
NULL             1802 libavcodec/qdm2.c         av_log(NULL,AV_LOG_DEBUG,"Superblock follows\n");
NULL              218 libavcodec/qdmc.c                        amplitude_bits, 1, 1, amplitude_codes, 2, 2, NULL, 0, 0, 8192);
NULL              220 libavcodec/qdmc.c                        freq_diff_bits, 1, 1, freq_diff_codes, 4, 4, NULL, 0, 0, 262144);
NULL              222 libavcodec/qdmc.c                        amplitude_diff_bits, 1, 1, amplitude_diff_codes, 1, 1, NULL, 0, 0, 256);
NULL              224 libavcodec/qdmc.c                        phase_diff_bits, 1, 1, phase_diff_codes, 1, 1, NULL, 0, 0, 64);
NULL              103 libavcodec/qsv.c     const char *desc = NULL;
NULL              352 libavcodec/qsv.c     AVDictionary *child_device_opts = NULL;
NULL              359 libavcodec/qsv.c     ret = av_hwdevice_ctx_create(&qs->va_device_ref, AV_HWDEVICE_TYPE_VAAPI, NULL, child_device_opts, 0);
NULL              454 libavcodec/qsv.c         return NULL;
NULL              459 libavcodec/qsv.c         return NULL;
NULL              467 libavcodec/qsv.c         return NULL;
NULL              699 libavcodec/qsv.c     mfxHDL                    handle = NULL;
NULL              722 libavcodec/qsv.c         handle = NULL;
NULL              814 libavcodec/qsv.c         qs->session = NULL;
NULL               40 libavcodec/qsv_api.c     return NULL;
NULL               54 libavcodec/qsvdec.c         .hwaccel = NULL,
NULL               56 libavcodec/qsvdec.c     NULL
NULL              112 libavcodec/qsvdec.c             q->internal_qs.session = NULL;
NULL              133 libavcodec/qsvdec.c             q->internal_qs.session = NULL;
NULL              171 libavcodec/qsvdec.c     mfxSession session = NULL;
NULL              397 libavcodec/qsvdec.c     return NULL;
NULL              433 libavcodec/qsvdec.c         ret = MFXVideoDECODE_DecodeFrameAsync(q->session, avpkt->size ? &bs : NULL,
NULL              473 libavcodec/qsvdec.c         av_fifo_generic_write(q->async_fifo, &out_frame, sizeof(out_frame), NULL);
NULL              474 libavcodec/qsvdec.c         av_fifo_generic_write(q->async_fifo, &sync,      sizeof(sync),      NULL);
NULL              483 libavcodec/qsvdec.c         av_fifo_generic_read(q->async_fifo, &out_frame, sizeof(out_frame), NULL);
NULL              484 libavcodec/qsvdec.c         av_fifo_generic_read(q->async_fifo, &sync,      sizeof(sync),      NULL);
NULL              544 libavcodec/qsvdec.c         av_fifo_generic_read(q->async_fifo, &out_frame, sizeof(out_frame), NULL);
NULL              545 libavcodec/qsvdec.c         av_fifo_generic_read(q->async_fifo, &sync,      sizeof(sync),      NULL);
NULL              558 libavcodec/qsvdec.c     q->async_fifo = NULL;
NULL               61 libavcodec/qsvdec_h2645.c         av_fifo_generic_read(s->packet_fifo, &pkt, sizeof(pkt), NULL);
NULL              140 libavcodec/qsvdec_h2645.c         av_fifo_generic_write(s->packet_fifo, &input_ref, sizeof(input_ref), NULL);
NULL              153 libavcodec/qsvdec_h2645.c                 av_fifo_generic_read(s->packet_fifo, &s->buffer_pkt, sizeof(s->buffer_pkt), NULL);
NULL              190 libavcodec/qsvdec_h2645.c     { "none",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_NONE },    0, 0, VD, "load_plugin" },
NULL              191 libavcodec/qsvdec_h2645.c     { "hevc_sw",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_SW }, 0, 0, VD, "load_plugin" },
NULL              192 libavcodec/qsvdec_h2645.c     { "hevc_hw",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_HW }, 0, 0, VD, "load_plugin" },
NULL              198 libavcodec/qsvdec_h2645.c         { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_DEFAULT }, 0, 0, VD, "gpu_copy"},
NULL              199 libavcodec/qsvdec_h2645.c         { "on",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_ON },      0, 0, VD, "gpu_copy"},
NULL              200 libavcodec/qsvdec_h2645.c         { "off",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_OFF },     0, 0, VD, "gpu_copy"},
NULL              201 libavcodec/qsvdec_h2645.c     { NULL },
NULL              238 libavcodec/qsvdec_h2645.c         { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_DEFAULT }, 0, 0, VD, "gpu_copy"},
NULL              239 libavcodec/qsvdec_h2645.c         { "on",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_ON },      0, 0, VD, "gpu_copy"},
NULL              240 libavcodec/qsvdec_h2645.c         { "off",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_OFF },     0, 0, VD, "gpu_copy"},
NULL              241 libavcodec/qsvdec_h2645.c     { NULL },
NULL               52 libavcodec/qsvdec_other.c         av_fifo_generic_read(s->packet_fifo, &pkt, sizeof(pkt), NULL);
NULL              138 libavcodec/qsvdec_other.c         av_fifo_generic_write(s->packet_fifo, &input_ref, sizeof(input_ref), NULL);
NULL              150 libavcodec/qsvdec_other.c                 av_fifo_generic_read(s->packet_fifo, &s->input_ref, sizeof(s->input_ref), NULL);
NULL              186 libavcodec/qsvdec_other.c         { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_DEFAULT }, 0, 0, VD, "gpu_copy"},
NULL              187 libavcodec/qsvdec_other.c         { "on",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_ON },      0, 0, VD, "gpu_copy"},
NULL              188 libavcodec/qsvdec_other.c         { "off",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_OFF },     0, 0, VD, "gpu_copy"},
NULL              189 libavcodec/qsvdec_other.c     { NULL },
NULL             1403 libavcodec/qsvenc.c     mfxFrameSurface1 *surf = NULL;
NULL             1404 libavcodec/qsvenc.c     mfxSyncPoint *sync     = NULL;
NULL             1405 libavcodec/qsvenc.c     QSVFrame *qsv_frame = NULL;
NULL             1406 libavcodec/qsvenc.c     mfxEncodeCtrl* enc_ctrl = NULL;
NULL             1503 libavcodec/qsvenc.c         av_fifo_generic_write(q->async_fifo, &new_pkt, sizeof(new_pkt), NULL);
NULL             1504 libavcodec/qsvenc.c         av_fifo_generic_write(q->async_fifo, &sync,    sizeof(sync),    NULL);
NULL             1505 libavcodec/qsvenc.c         av_fifo_generic_write(q->async_fifo, &bs,      sizeof(bs),    NULL);
NULL             1541 libavcodec/qsvenc.c         av_fifo_generic_read(q->async_fifo, &new_pkt, sizeof(new_pkt), NULL);
NULL             1542 libavcodec/qsvenc.c         av_fifo_generic_read(q->async_fifo, &sync,    sizeof(sync),    NULL);
NULL             1543 libavcodec/qsvenc.c         av_fifo_generic_read(q->async_fifo, &bs,      sizeof(bs),      NULL);
NULL             1581 libavcodec/qsvenc.c                 enc_info->QP * FF_QP2LAMBDA, NULL, 0, pict_type);
NULL             1620 libavcodec/qsvenc.c     q->session          = NULL;
NULL             1640 libavcodec/qsvenc.c         av_fifo_generic_read(q->async_fifo, &pkt,  sizeof(pkt),  NULL);
NULL             1641 libavcodec/qsvenc.c         av_fifo_generic_read(q->async_fifo, &sync, sizeof(sync), NULL);
NULL             1642 libavcodec/qsvenc.c         av_fifo_generic_read(q->async_fifo, &bs,   sizeof(bs),   NULL);
NULL             1649 libavcodec/qsvenc.c     q->async_fifo = NULL;
NULL             1663 libavcodec/qsvenc.c     NULL,
NULL               81 libavcodec/qsvenc.h { "preset", NULL, OFFSET(qsv.preset), AV_OPT_TYPE_INT, { .i64 = MFX_TARGETUSAGE_BALANCED }, MFX_TARGETUSAGE_BEST_QUALITY, MFX_TARGETUSAGE_BEST_SPEED,   VE, "preset" }, \
NULL               82 libavcodec/qsvenc.h { "veryfast",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_SPEED  },   INT_MIN, INT_MAX, VE, "preset" },                                                \
NULL               83 libavcodec/qsvenc.h { "faster",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_6  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
NULL               84 libavcodec/qsvenc.h { "fast",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_5  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
NULL               85 libavcodec/qsvenc.h { "medium",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BALANCED  },     INT_MIN, INT_MAX, VE, "preset" },                                                \
NULL               86 libavcodec/qsvenc.h { "slow",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_3  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
NULL               87 libavcodec/qsvenc.h { "slower",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_2  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
NULL               88 libavcodec/qsvenc.h { "veryslow",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_QUALITY  }, INT_MIN, INT_MAX, VE, "preset" },                                                \
NULL              121 libavcodec/qsvenc_h264.c     { "unknown"                , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_UNKNOWN }, INT_MIN, INT_MAX,     VE, "look_ahead_downsampling" },
NULL              122 libavcodec/qsvenc_h264.c     { "auto"                   , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_UNKNOWN }, INT_MIN, INT_MAX,     VE, "look_ahead_downsampling" },
NULL              123 libavcodec/qsvenc_h264.c     { "off"                    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_OFF     }, INT_MIN, INT_MAX,     VE, "look_ahead_downsampling" },
NULL              124 libavcodec/qsvenc_h264.c     { "2x"                     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_2x      }, INT_MIN, INT_MAX,     VE, "look_ahead_downsampling" },
NULL              125 libavcodec/qsvenc_h264.c     { "4x"                     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_4x      }, INT_MIN, INT_MAX,     VE, "look_ahead_downsampling" },
NULL              129 libavcodec/qsvenc_h264.c         { "none",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, .flags = VE, "int_ref_type" },
NULL              130 libavcodec/qsvenc_h264.c         { "vertical", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, .flags = VE, "int_ref_type" },
NULL              135 libavcodec/qsvenc_h264.c     { "profile", NULL, OFFSET(qsv.profile), AV_OPT_TYPE_INT, { .i64 = MFX_PROFILE_UNKNOWN }, 0, INT_MAX, VE, "profile" },
NULL              136 libavcodec/qsvenc_h264.c     { "unknown" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN      }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              137 libavcodec/qsvenc_h264.c     { "baseline", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_BASELINE }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              138 libavcodec/qsvenc_h264.c     { "main"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_MAIN     }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              139 libavcodec/qsvenc_h264.c     { "high"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_HIGH     }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              147 libavcodec/qsvenc_h264.c     { "off"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_MF_DISABLED }, INT_MIN, INT_MAX,     VE, "mfmode" },
NULL              148 libavcodec/qsvenc_h264.c     { "auto"   , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_MF_AUTO     }, INT_MIN, INT_MAX,     VE, "mfmode" },
NULL              153 libavcodec/qsvenc_h264.c     { NULL },
NULL              179 libavcodec/qsvenc_h264.c     { NULL },
NULL               59 libavcodec/qsvenc_hevc.c     H2645RBSP sps_rbsp = { NULL };
NULL               60 libavcodec/qsvenc_hevc.c     H2645NAL sps_nal = { NULL };
NULL              100 libavcodec/qsvenc_hevc.c     ret = ff_hevc_parse_sps(&sps, &gb, &sps_id, 0, NULL, avctx);
NULL              231 libavcodec/qsvenc_hevc.c     { "none",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_NONE },    0, 0, VE, "load_plugin" },
NULL              232 libavcodec/qsvenc_hevc.c     { "hevc_sw",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_SW }, 0, 0, VE, "load_plugin" },
NULL              233 libavcodec/qsvenc_hevc.c     { "hevc_hw",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_HW }, 0, 0, VE, "load_plugin" },
NULL              238 libavcodec/qsvenc_hevc.c     { "profile", NULL, OFFSET(qsv.profile), AV_OPT_TYPE_INT, { .i64 = MFX_PROFILE_UNKNOWN }, 0, INT_MAX, VE, "profile" },
NULL              239 libavcodec/qsvenc_hevc.c     { "unknown", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN      }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              240 libavcodec/qsvenc_hevc.c     { "main",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_HEVC_MAIN    }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              241 libavcodec/qsvenc_hevc.c     { "main10",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_HEVC_MAIN10  }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              242 libavcodec/qsvenc_hevc.c     { "mainsp",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_HEVC_MAINSP  }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              243 libavcodec/qsvenc_hevc.c     { "rext",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_HEVC_REXT    }, INT_MIN, INT_MAX,     VE, "profile" },
NULL              250 libavcodec/qsvenc_hevc.c     { NULL },
NULL              271 libavcodec/qsvenc_hevc.c     { NULL },
NULL               67 libavcodec/qsvenc_jpeg.c     { NULL },
NULL               79 libavcodec/qsvenc_jpeg.c     { NULL },
NULL               68 libavcodec/qsvenc_mpeg2.c     { "profile", NULL, OFFSET(qsv.profile), AV_OPT_TYPE_INT, { .i64 = MFX_PROFILE_UNKNOWN }, 0, INT_MAX, VE, "profile" },
NULL               69 libavcodec/qsvenc_mpeg2.c     { "unknown", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN        }, INT_MIN, INT_MAX,     VE, "profile" },
NULL               70 libavcodec/qsvenc_mpeg2.c     { "simple",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_MPEG2_SIMPLE   }, INT_MIN, INT_MAX,     VE, "profile" },
NULL               71 libavcodec/qsvenc_mpeg2.c     { "main",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_MPEG2_MAIN     }, INT_MIN, INT_MAX,     VE, "profile" },
NULL               72 libavcodec/qsvenc_mpeg2.c     { "high",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_MPEG2_HIGH     }, INT_MIN, INT_MAX,     VE, "profile" },
NULL               74 libavcodec/qsvenc_mpeg2.c     { NULL },
NULL               95 libavcodec/qsvenc_mpeg2.c     { NULL },
NULL               69 libavcodec/qsvenc_vp9.c     { "profile",   NULL, OFFSET(qsv.profile), AV_OPT_TYPE_INT,   { .i64 = MFX_PROFILE_UNKNOWN },   0,       INT_MAX,  VE,  "profile" },
NULL               70 libavcodec/qsvenc_vp9.c     { "unknown",   NULL, 0,                   AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN},   INT_MIN,  INT_MAX,  VE,  "profile" },
NULL               71 libavcodec/qsvenc_vp9.c     { "profile0",  NULL, 0,                   AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_VP9_0   },  INT_MIN,  INT_MAX,  VE,  "profile" },
NULL               72 libavcodec/qsvenc_vp9.c     { "profile1",  NULL, 0,                   AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_VP9_1   },  INT_MIN,  INT_MAX,  VE,  "profile" },
NULL               73 libavcodec/qsvenc_vp9.c     { "profile2",  NULL, 0,                   AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_VP9_2   },  INT_MIN,  INT_MAX,  VE,  "profile" },
NULL               74 libavcodec/qsvenc_vp9.c     { "profile3",  NULL, 0,                   AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_VP9_3   },  INT_MIN,  INT_MAX,  VE,  "profile" },
NULL               76 libavcodec/qsvenc_vp9.c     { NULL },
NULL               92 libavcodec/qsvenc_vp9.c     { NULL },
NULL             1715 libavcodec/ra144.c     add_wav(block, gain, cba_idx, m, cba_idx? ractx->buffer_a: NULL,
NULL              208 libavcodec/ra144enc.c         get_match_score(work, coefs, exc, NULL, NULL, data, &score, &gain);
NULL              296 libavcodec/ra144enc.c     find_best_vect(work, coefs, ff_cb1_vects, cba_idx ? cba_vect : NULL, NULL,
NULL              316 libavcodec/ra144enc.c     find_best_vect(work, coefs, ff_cb2_vects, cba_idx ? cba_vect : NULL,
NULL              317 libavcodec/ra144enc.c                    ortho_cb1 ? cb1_vect : NULL, data, cb2_idx, &gain);
NULL              443 libavcodec/ra144enc.c     const int16_t *samples = frame ? (const int16_t *)frame->data[0] : NULL;
NULL              103 libavcodec/ralf.c                               lens, 1, 1, codes, 2, 2, NULL, 0, 0, 0);
NULL              795 libavcodec/rasc.c { NULL },
NULL               67 libavcodec/ratecontrol.c         av_log(NULL, AV_LOG_ERROR, "qp<=0.0\n");
NULL               75 libavcodec/ratecontrol.c         av_log(NULL, AV_LOG_ERROR, "bits<0.9\n");
NULL              497 libavcodec/ratecontrol.c         NULL
NULL              502 libavcodec/ratecontrol.c         NULL
NULL              507 libavcodec/ratecontrol.c         NULL
NULL              521 libavcodec/ratecontrol.c                         NULL, NULL, 0, s->avctx);
NULL               60 libavcodec/rawdec.c {NULL}
NULL              376 libavcodec/rawdec.c             pal = NULL;
NULL               69 libavcodec/realtextdec.c         ret = ff_ass_add_rect(sub, buf.str, s->readorder++, 0, NULL, NULL);
NULL               70 libavcodec/realtextdec.c     av_bprint_finalize(&buf, NULL);
NULL               73 libavcodec/remove_extradata_bsf.c         s->avctx = avcodec_alloc_context3(NULL);
NULL               96 libavcodec/remove_extradata_bsf.c     { "freq", NULL, OFFSET(freq), AV_OPT_TYPE_INT, { .i64 = REMOVE_FREQ_KEYFRAME }, REMOVE_FREQ_KEYFRAME, REMOVE_FREQ_NONKEYFRAME, FLAGS, "freq" },
NULL               97 libavcodec/remove_extradata_bsf.c         { "k",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_NONKEYFRAME }, .flags = FLAGS, .unit = "freq" },
NULL               98 libavcodec/remove_extradata_bsf.c         { "keyframe", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
NULL               99 libavcodec/remove_extradata_bsf.c         { "e",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_ALL      }, .flags = FLAGS, .unit = "freq" },
NULL              100 libavcodec/remove_extradata_bsf.c         { "all",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_ALL      }, .flags = FLAGS, .unit = "freq" },
NULL              101 libavcodec/remove_extradata_bsf.c     { NULL },
NULL              138 libavcodec/rkmppdec.c         decoder->ctx = NULL;
NULL              143 libavcodec/rkmppdec.c         decoder->frame_group = NULL;
NULL              155 libavcodec/rkmppdec.c     RKMPPDecoder *decoder = NULL;
NULL              171 libavcodec/rkmppdec.c                                                NULL, AV_BUFFER_FLAG_READONLY);
NULL              279 libavcodec/rkmppdec.c         ret = rkmpp_write_data(avctx, NULL, 0, 0);
NULL              324 libavcodec/rkmppdec.c     RKMPPFrameContext *framecontext = NULL;
NULL              325 libavcodec/rkmppdec.c     AVBufferRef *framecontextref = NULL;
NULL              327 libavcodec/rkmppdec.c     MppFrame mppframe = NULL;
NULL              328 libavcodec/rkmppdec.c     MppBuffer buffer = NULL;
NULL              329 libavcodec/rkmppdec.c     AVDRMFrameDescriptor *desc = NULL;
NULL              330 libavcodec/rkmppdec.c     AVDRMLayerDescriptor *layer = NULL;
NULL              353 libavcodec/rkmppdec.c             decoder->mpi->control(decoder->ctx, MPP_DEC_SET_INFO_CHANGE_READY, NULL);
NULL              553 libavcodec/rkmppdec.c     NULL
NULL              585 libavcodec/rkmppdec.c RKMPP_DEC(vp8,   AV_CODEC_ID_VP8,           NULL)
NULL              586 libavcodec/rkmppdec.c RKMPP_DEC(vp9,   AV_CODEC_ID_VP9,           NULL)
NULL              130 libavcodec/roqaudioenc.c     const int16_t *in = frame ? (const int16_t *)frame->data[0] : NULL;
NULL             1116 libavcodec/roqvideoenc.c     { NULL },
NULL              157 libavcodec/rscc.c     uint8_t *inflated_tiles = NULL;
NULL              714 libavcodec/rv10.c     const uint8_t *slices_hdr = NULL;
NULL              788 libavcodec/rv10.c         s->current_picture_ptr = NULL;
NULL              151 libavcodec/rv34.c             rv34_gen_vlc(rv34_table_intra_cbppat   [i][j], CBPPAT_VLC_SIZE,   &intra_vlcs[i].cbppattern[j],     NULL, 19*i + 0 + j);
NULL              152 libavcodec/rv34.c             rv34_gen_vlc(rv34_table_intra_secondpat[i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].second_pattern[j], NULL, 19*i + 2 + j);
NULL              153 libavcodec/rv34.c             rv34_gen_vlc(rv34_table_intra_thirdpat [i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].third_pattern[j],  NULL, 19*i + 4 + j);
NULL              159 libavcodec/rv34.c             rv34_gen_vlc(rv34_table_intra_firstpat[i][j], FIRSTBLK_VLC_SIZE, &intra_vlcs[i].first_pattern[j], NULL, 19*i + 14 + j);
NULL              161 libavcodec/rv34.c         rv34_gen_vlc(rv34_intra_coeff[i], COEFF_VLC_SIZE, &intra_vlcs[i].coefficient, NULL, 19*i + 18);
NULL              165 libavcodec/rv34.c         rv34_gen_vlc(rv34_inter_cbppat[i], CBPPAT_VLC_SIZE, &inter_vlcs[i].cbppattern[0], NULL, i*12 + 95);
NULL              170 libavcodec/rv34.c             rv34_gen_vlc(rv34_table_inter_firstpat [i][j], FIRSTBLK_VLC_SIZE, &inter_vlcs[i].first_pattern[j],  NULL, i*12 + 100 + j);
NULL              171 libavcodec/rv34.c             rv34_gen_vlc(rv34_table_inter_secondpat[i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].second_pattern[j], NULL, i*12 + 102 + j);
NULL              172 libavcodec/rv34.c             rv34_gen_vlc(rv34_table_inter_thirdpat [i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].third_pattern[j],  NULL, i*12 + 104 + j);
NULL              174 libavcodec/rv34.c         rv34_gen_vlc(rv34_inter_coeff[i], COEFF_VLC_SIZE, &inter_vlcs[i].coefficient, NULL, i*12 + 106);
NULL             1367 libavcodec/rv34.c     r->intra_types = NULL;
NULL             1625 libavcodec/rv34.c     const uint8_t *slices_hdr = NULL;
NULL             1636 libavcodec/rv34.c             s->next_picture_ptr = NULL;
NULL              211 libavcodec/s302m.c     {NULL}
NULL               45 libavcodec/samidec.c     char *tag = NULL;
NULL               58 libavcodec/samidec.c         char *saveptr = NULL;
NULL              146 libavcodec/samidec.c         ret = ff_ass_add_rect(sub, sami->full.str, sami->readorder++, 0, NULL, NULL);
NULL              168 libavcodec/samidec.c     av_bprint_finalize(&sami->source,  NULL);
NULL              169 libavcodec/samidec.c     av_bprint_finalize(&sami->content, NULL);
NULL              170 libavcodec/samidec.c     av_bprint_finalize(&sami->encoded_source,  NULL);
NULL              171 libavcodec/samidec.c     av_bprint_finalize(&sami->encoded_content, NULL);
NULL              172 libavcodec/samidec.c     av_bprint_finalize(&sami->full,    NULL);
NULL             1478 libavcodec/sanm.c         if ((ret = copy_output(ctx, NULL)))
NULL              106 libavcodec/sbc_parser.c             *poutbuf      = NULL;
NULL              333 libavcodec/sbcenc.c     FF_AVCTX_PROFILE_OPTION("msbc", NULL, AUDIO, FF_PROFILE_SBC_MSBC)
NULL              334 libavcodec/sbcenc.c     { NULL },
NULL              281 libavcodec/sbrdsp_fixed.c                 av_log(NULL, AV_LOG_ERROR, "Overflow in sbr_hf_apply_noise, shift=%d\n", shift);
NULL              294 libavcodec/sbrdsp_fixed.c                 av_log(NULL, AV_LOG_ERROR, "Overflow in sbr_hf_apply_noise, shift=%d\n", shift);
NULL              269 libavcodec/sgienc.c     { NULL },
NULL              792 libavcodec/shorten.c         s->decoded[i] = NULL;
NULL               63 libavcodec/sinewin_tablegen.h     NULL, NULL, NULL, NULL, NULL, // unused
NULL               59 libavcodec/sipr_parser.c         *poutbuf = NULL;
NULL              460 libavcodec/siren.c     int *min_rate_ptr = NULL;
NULL              461 libavcodec/siren.c     int *max_rate_ptr = NULL;
NULL              101 libavcodec/smacker.c         av_log(NULL, AV_LOG_ERROR, "Maximum tree recursion level exceeded.\n");
NULL              107 libavcodec/smacker.c             av_log(NULL, AV_LOG_ERROR, "Tree size exceeded!\n");
NULL              140 libavcodec/smacker.c         av_log(NULL, AV_LOG_ERROR, "Maximum bigtree recursion level exceeded.\n");
NULL              145 libavcodec/smacker.c         av_log(NULL, AV_LOG_ERROR, "Tree size exceeded!\n");
NULL               84 libavcodec/smvjpegdec.c     jpg->picture_ptr = NULL;
NULL               96 libavcodec/smvjpegdec.c     AVDictionary *thread_opt = NULL;
NULL              192 libavcodec/smvjpegdec.c         s->picture[1]->extended_data = NULL;
NULL              418 libavcodec/snow.c     mc_block(NULL, dst, src-(HTAPS_MAX/2-1)-(HTAPS_MAX/2-1)*stride, stride, b_w, b_w, dx, dy);\
NULL              650 libavcodec/snow.c                 s->halfpel_plane[s->max_ref_frames-1][1+i/3][i%3] = NULL;
NULL              703 libavcodec/snow.c     s->m.me.temp= NULL;
NULL              444 libavcodec/snow.h         add_yblock(s, 0, NULL, buf, dst8, obmc,
NULL              610 libavcodec/snow.h     x_and_coeff *prev_xc= NULL;
NULL              612 libavcodec/snow.h     x_and_coeff *parent_xc= parent ? parent->x_coeff : NULL;
NULL               88 libavcodec/snow_dwt.c     buf->line[line]                      = NULL;
NULL              335 libavcodec/snowenc.c         init_ref(c, current_data, s->last_picture[ref]->data, NULL, block_w*x, block_w*y, 0);
NULL              545 libavcodec/snowenc.c         add_yblock(s, 0, NULL, dst + (i&1)*block_w + (i>>1)*obmc_stride*block_h, NULL, obmc,
NULL              739 libavcodec/snowenc.c         add_yblock(s, 0, NULL, zero_dst, dst, obmc,
NULL             1026 libavcodec/snowenc.c                 BlockNode *tb =                   mb_y            ? &s->block[index-b_stride  ] : NULL;
NULL             1027 libavcodec/snowenc.c                 BlockNode *lb = mb_x                              ? &s->block[index         -1] : NULL;
NULL             1028 libavcodec/snowenc.c                 BlockNode *rb = mb_x+1<b_width                    ? &s->block[index         +1] : NULL;
NULL             1029 libavcodec/snowenc.c                 BlockNode *bb =                   mb_y+1<b_height ? &s->block[index+b_stride  ] : NULL;
NULL             1030 libavcodec/snowenc.c                 BlockNode *tlb= mb_x           && mb_y            ? &s->block[index-b_stride-1] : NULL;
NULL             1031 libavcodec/snowenc.c                 BlockNode *trb= mb_x+1<b_width && mb_y            ? &s->block[index-b_stride+1] : NULL;
NULL             1032 libavcodec/snowenc.c                 BlockNode *blb= mb_x           && mb_y+1<b_height ? &s->block[index+b_stride-1] : NULL;
NULL             1033 libavcodec/snowenc.c                 BlockNode *brb= mb_x+1<b_width && mb_y+1<b_height ? &s->block[index+b_stride+1] : NULL;
NULL             1819 libavcodec/snowenc.c                     encode_subband(s, b, b->ibuf, b->parent ? b->parent->ibuf : NULL, b->stride, orientation);
NULL             1820 libavcodec/snowenc.c                     av_assert0(b->parent==NULL || b->parent->stride == b->stride*2);
NULL             1939 libavcodec/snowenc.c     { "zero", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_ZERO }, 0, 0, VE, "motion_est" },
NULL             1940 libavcodec/snowenc.c     { "epzs", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_EPZS }, 0, 0, VE, "motion_est" },
NULL             1941 libavcodec/snowenc.c     { "xone", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_XONE }, 0, 0, VE, "motion_est" },
NULL             1942 libavcodec/snowenc.c     { "iter", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_ITER }, 0, 0, VE, "motion_est" },
NULL             1949 libavcodec/snowenc.c         { "dwt97", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "pred" },
NULL             1950 libavcodec/snowenc.c         { "dwt53", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "pred" },
NULL             1951 libavcodec/snowenc.c     { NULL },
NULL              168 libavcodec/sonic.c         put_symbol(c, state, buf[i], 1, NULL, NULL);
NULL              830 libavcodec/sonic.c         put_symbol(&c, state, quant, 0, NULL, NULL);
NULL              172 libavcodec/speedhq.c         av_log(NULL, AV_LOG_ERROR, "invalid dc code at\n");
NULL               79 libavcodec/srtdec.c         ret = ff_ass_add_rect(sub, buffer.str, s->readorder++, 0, NULL, NULL);
NULL               80 libavcodec/srtdec.c     av_bprint_finalize(&buffer, NULL);
NULL              302 libavcodec/srtenc.c     av_bprint_finalize(&s->buffer, NULL);
NULL               60 libavcodec/subviewerdec.c         ret = ff_ass_add_rect(sub, buf.str, s->readorder++, 0, NULL, NULL);
NULL               61 libavcodec/subviewerdec.c     av_bprint_finalize(&buf, NULL);
NULL               36 libavcodec/sunrast.c     uint8_t *ptr, *ptr2 = NULL;
NULL              217 libavcodec/sunrastenc.c     { NULL },
NULL              230 libavcodec/sunrastenc.c      { NULL },
NULL              779 libavcodec/svq1_cb.h     NULL, NULL,
NULL             1522 libavcodec/svq1_cb.h     NULL, NULL,
NULL              194 libavcodec/svq1dec.c             ff_dlog(NULL,
NULL              258 libavcodec/svq1dec.c             ff_dlog(NULL,
NULL              110 libavcodec/svq1enc.c         codebook_sum   = level < 4 ? svq1_intra_codebook_sum[level] : NULL;
NULL              124 libavcodec/svq1enc.c         codebook_sum   = level < 4 ? svq1_inter_codebook_sum[level] : NULL;
NULL              350 libavcodec/svq1enc.c         ff_fix_long_mvs(&s->m, NULL, 0, s->m.p_mv_table, s->m.f_code,
NULL              395 libavcodec/svq1enc.c                 score[0] += encode_block(s, src + 16 * x, NULL, temp, stride,
NULL              444 libavcodec/svq1enc.c                     score[2]  = s->mecc.sse[0](NULL, src + 16 * x, ref,
NULL              494 libavcodec/svq1enc.c     s->m.mb_type = NULL;
NULL              629 libavcodec/svq1enc.c     ff_side_data_set_encoder_stats(pkt, pict->quality, NULL, 0, s->pict_type);
NULL              671 libavcodec/svq1enc.c         { "zero", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_ZERO }, 0, 0, FF_MPV_OPT_FLAGS, "motion-est" },
NULL              672 libavcodec/svq1enc.c         { "epzs", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_EPZS }, 0, 0, FF_MPV_OPT_FLAGS, "motion-est" },
NULL              673 libavcodec/svq1enc.c         { "xone", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FF_ME_XONE }, 0, 0, FF_MPV_OPT_FLAGS, "motion-est" },
NULL              675 libavcodec/svq1enc.c     { NULL },
NULL              659 libavcodec/svq3.c                 topright = NULL;
NULL             1587 libavcodec/svq3.c                            s->last_pic->f->data[0] ? s->last_pic->f : NULL,
NULL               31 libavcodec/tableprint_vlc.h #define av_malloc(s) NULL
NULL               32 libavcodec/tableprint_vlc.h #define av_malloc_array(a, b) NULL
NULL               33 libavcodec/tableprint_vlc.h #define av_realloc_f(p, o, n) NULL
NULL              120 libavcodec/tak_parser.c     *poutbuf      = NULL;
NULL              749 libavcodec/takdec.c         int buf_size = av_samples_get_buffer_size(NULL, avctx->channels,
NULL              757 libavcodec/takdec.c         ret = av_samples_fill_arrays((uint8_t **)s->decoded, NULL,
NULL               45 libavcodec/targa.c             return NULL;
NULL              209 libavcodec/targaenc.c     { NULL },
NULL              128 libavcodec/tdsc.c     ret = ff_codec_open2_recursive(ctx->jpeg_avctx, codec, NULL);
NULL               30 libavcodec/tests/avpacket.c     const uint8_t *data_name = NULL;
NULL               32 libavcodec/tests/avpacket.c     uint8_t *extra_data = NULL;
NULL               86 libavcodec/tests/avpacket.c     AVPacket *avpkt_clone = NULL;
NULL               97 libavcodec/tests/avpacket.c         av_log(NULL, AV_LOG_ERROR,"av_packet_clone failed to clone AVPacket\n");
NULL              102 libavcodec/tests/avpacket.c         av_log(NULL, AV_LOG_ERROR, "av_grow_packet failed\n");
NULL              148 libavcodec/tests/cabac.c             av_log(NULL, AV_LOG_ERROR, "CABAC bypass failure at %d\n", i);
NULL              155 libavcodec/tests/cabac.c             av_log(NULL, AV_LOG_ERROR, "CABAC failure at %d\n", i);
NULL              160 libavcodec/tests/cabac.c         av_log(NULL, AV_LOG_ERROR, "where's the Terminator?\n");
NULL               23 libavcodec/tests/codec_desc.c     const AVCodecDescriptor *old_desc = NULL, *desc;
NULL               27 libavcodec/tests/codec_desc.c             av_log(NULL, AV_LOG_FATAL, "Unsorted codec_descriptors '%s' and '%s'.\n", old_desc->name, desc->name);
NULL               32 libavcodec/tests/codec_desc.c             av_log(NULL, AV_LOG_FATAL, "avcodec_descriptor_get() failed with '%s'.\n", desc->name);
NULL               37 libavcodec/tests/codec_desc.c             av_log(NULL, AV_LOG_FATAL, "avcodec_descriptor_get_by_name() failed with '%s'.\n", desc->name);
NULL              211 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_ERROR, "ERROR %5d: "FMT" "FMT"\n",
NULL              219 libavcodec/tests/fft.c     av_log(NULL, AV_LOG_INFO, "max:%f e:%g\n", max, sqrt(error / n));
NULL              353 libavcodec/tests/fft.c     av_log(NULL, AV_LOG_INFO,
NULL              458 libavcodec/tests/fft.c         av_log(NULL, AV_LOG_INFO, "Scale factor is set to %f\n", scale);
NULL              460 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "IMDCT");
NULL              462 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "MDCT");
NULL              468 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "IFFT");
NULL              470 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "FFT");
NULL              479 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "IDFT_C2R");
NULL              481 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "DFT_R2C");
NULL              490 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "DCT_III");
NULL              492 libavcodec/tests/fft.c             av_log(NULL, AV_LOG_INFO, "DCT_II");
NULL              498 libavcodec/tests/fft.c         av_log(NULL, AV_LOG_ERROR, "Requested transform not supported\n");
NULL              501 libavcodec/tests/fft.c     av_log(NULL, AV_LOG_INFO, " %d test\n", fft_size);
NULL              511 libavcodec/tests/fft.c     av_log(NULL, AV_LOG_INFO, "Checking...\n");
NULL              591 libavcodec/tests/fft.c         av_log(NULL, AV_LOG_INFO, "Speed test...\n");
NULL              625 libavcodec/tests/fft.c         av_log(NULL, AV_LOG_INFO,
NULL              184 libavcodec/tests/h264_levels.c             av_log(NULL, AV_LOG_ERROR, "Incorrect level for " \
NULL              251 libavcodec/tests/h265_levels.c             av_log(NULL, AV_LOG_ERROR, "Incorrect level for " \
NULL               43 libavcodec/tests/htmlsubtitles.c         int ret = ff_htmlmarkup_to_ass(NULL, &dst, test_cases[i]);
NULL               49 libavcodec/tests/htmlsubtitles.c     av_bprint_finalize(&dst, NULL);
NULL               32 libavcodec/tests/iirfilter.c     struct FFIIRFilterCoeffs *fcoeffs = NULL;
NULL               33 libavcodec/tests/iirfilter.c     struct FFIIRFilterState  *fstate  = NULL;
NULL               38 libavcodec/tests/iirfilter.c     fcoeffs = ff_iir_filter_init_coeffs(NULL, FF_FILTER_TYPE_BUTTERWORTH,
NULL               38 libavcodec/tests/imgconvert.c             av_log(NULL, AV_LOG_INFO, "%3d unused pixel format values\n", skip);
NULL               41 libavcodec/tests/imgconvert.c         av_log(NULL, AV_LOG_INFO, "pix fmt %s yuv_plan:%d avg_bpp:%d\n", desc->name, is_yuv_planar(desc), av_get_padded_bits_per_pixel(desc));
NULL               83 libavcodec/tests/motion.c                 d1 = test_func(NULL, img1, ptr, WIDTH, 8);
NULL               84 libavcodec/tests/motion.c                 d2 = ref_func(NULL, img1, ptr, WIDTH, 8);
NULL              100 libavcodec/tests/motion.c                 d1 += test_func(NULL, img1, ptr, WIDTH, 8);
NULL              129 libavcodec/tests/motion.c     ctx = avcodec_alloc_context3(NULL);
NULL               31 libavcodec/tests/mpeg12framerate.c             av_log(NULL, AV_LOG_ERROR, "Failed to match %d/%d: " \
NULL               43 libavcodec/tests/mpeg12framerate.c             av_log(NULL, AV_LOG_ERROR, "Failed to find exact %d/%d: " \
NULL               61 libavcodec/tests/options.c     { NULL },
NULL              131 libavcodec/tests/options.c         char *str = NULL;
NULL              158 libavcodec/tests/options.c         ret = avcodec_open2(ctx1, ctx1->codec, NULL);
NULL              183 libavcodec/tests/options.c         NULL,
NULL               60 libavcodec/tests/rangecoder.c                     av_log(NULL, AV_LOG_ERROR, "rac failure at %d pass %d version %d\n", i, p, version);
NULL               65 libavcodec/tests/rangecoder.c                 av_log(NULL, AV_LOG_ERROR, "rac failure at termination pass %d version %d\n", p, version);
NULL               69 libavcodec/tests/rangecoder.c                 av_log(NULL, AV_LOG_ERROR, "rac failure at pass %d version %d\n", p, version);
NULL               22 libavcodec/tests/utils.c     void *iter = NULL;
NULL               23 libavcodec/tests/utils.c     const AVCodec *codec = NULL;
NULL               30 libavcodec/tests/utils.c                     av_log(NULL, AV_LOG_FATAL, "Encoder %s is missing the sample_fmts field\n", codec->name);
NULL               42 libavcodec/textdec.c     { NULL }
NULL               57 libavcodec/textdec.c         ret = ff_ass_add_rect(sub, buf.str, text->readorder++, 0, NULL, NULL);
NULL               59 libavcodec/textdec.c     av_bprint_finalize(&buf, NULL);
NULL               51 libavcodec/tiertexseqv.c             return NULL;
NULL               63 libavcodec/tiertexseqv.c                 return NULL;
NULL               67 libavcodec/tiertexseqv.c                 return NULL;
NULL               88 libavcodec/tiertexseqv.c         return NULL;
NULL              110 libavcodec/tiertexseqv.c             return NULL;
NULL              113 libavcodec/tiertexseqv.c             return NULL;
NULL              135 libavcodec/tiertexseqv.c         return NULL;
NULL              155 libavcodec/tiertexseqv.c             return NULL;
NULL              144 libavcodec/tiff.c     return NULL;
NULL              168 libavcodec/tiff.c     return NULL;
NULL              247 libavcodec/tiff.c         return NULL;
NULL              250 libavcodec/tiff.c         return NULL;
NULL              257 libavcodec/tiff.c             return NULL;
NULL              402 libavcodec/tiff.c         av_log(NULL, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
NULL              469 libavcodec/tiff.c         av_log(NULL, AV_LOG_ERROR, "LZMA init error: %d\n", ret);
NULL              579 libavcodec/tiff.c         if (s->yuv_line == NULL) {
NULL              596 libavcodec/tiff.c         if (s->yuv_line == NULL) {
NULL              759 libavcodec/tiff.c                                     dst, 0, NULL, c, code, pixels);
NULL             1569 libavcodec/tiff.c         ADD_METADATA(count, "ModelPixelScaleTag", NULL);
NULL             1572 libavcodec/tiff.c         ADD_METADATA(count, "ModelTransformationTag", NULL);
NULL             1575 libavcodec/tiff.c         ADD_METADATA(count, "ModelTiepointTag", NULL);
NULL             1582 libavcodec/tiff.c         ADD_METADATA(1, "GeoTIFF_Version", NULL);
NULL             1687 libavcodec/tiff.c         ADD_METADATA(count, "artist", NULL);
NULL             1690 libavcodec/tiff.c         ADD_METADATA(count, "copyright", NULL);
NULL             1693 libavcodec/tiff.c         ADD_METADATA(count, "date", NULL);
NULL             1696 libavcodec/tiff.c         ADD_METADATA(count, "document_name", NULL);
NULL             1699 libavcodec/tiff.c         ADD_METADATA(count, "computer", NULL);
NULL             1702 libavcodec/tiff.c         ADD_METADATA(count, "description", NULL);
NULL             1705 libavcodec/tiff.c         ADD_METADATA(count, "make", NULL);
NULL             1708 libavcodec/tiff.c         ADD_METADATA(count, "model", NULL);
NULL             1711 libavcodec/tiff.c         ADD_METADATA(count, "page_name", NULL);
NULL             1723 libavcodec/tiff.c         ADD_METADATA(count, "software", NULL);
NULL             1973 libavcodec/tiff.c         uint8_t *five_planes = NULL;
NULL             2159 libavcodec/tiff.c     ret = ff_codec_open2_recursive(s->avctx_mjpeg, codec, NULL);
NULL             2190 libavcodec/tiff.c     { NULL },
NULL              370 libavcodec/tiffenc.c         if (s->yuv_line == NULL) {
NULL              562 libavcodec/tiffenc.c     { "compression_algo", NULL, OFFSET(compr), AV_OPT_TYPE_INT,   { .i64 = TIFF_PACKBITS }, TIFF_RAW, TIFF_DEFLATE, VE, "compression_algo" },
NULL              563 libavcodec/tiffenc.c     { "packbits",         NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_PACKBITS }, 0,        0,            VE, "compression_algo" },
NULL              564 libavcodec/tiffenc.c     { "raw",              NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_RAW      }, 0,        0,            VE, "compression_algo" },
NULL              565 libavcodec/tiffenc.c     { "lzw",              NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_LZW      }, 0,        0,            VE, "compression_algo" },
NULL              566 libavcodec/tiffenc.c     { "deflate",          NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_DEFLATE  }, 0,        0,            VE, "compression_algo" },
NULL              567 libavcodec/tiffenc.c     { NULL },
NULL               48 libavcodec/truemotion1data.h static const int16_t * const ydts[] = { ydt1, ydt2, ydt3, ydt4, NULL };
NULL               49 libavcodec/truemotion1data.h static const int16_t * const fat_ydts[] = { fat_ydt3, fat_ydt3, fat_ydt3, fat_ydt4, NULL };
NULL               50 libavcodec/truemotion1data.h static const int16_t * const cdts[] = { cdt1, cdt1, cdt2, cdt3, NULL };
NULL               51 libavcodec/truemotion1data.h static const int16_t * const fat_cdts[] = { fat_cdt2, fat_cdt2, fat_cdt2, fat_ydt4, NULL };
NULL              980 libavcodec/truemotion2.c         l->tokens[i] = NULL;
NULL              113 libavcodec/tta.c         s->decode_buffer = NULL;
NULL              377 libavcodec/tta.c         s->decode_buffer = NULL;
NULL              388 libavcodec/tta.c         s->decode_buffer = NULL;
NULL              397 libavcodec/tta.c     s->decode_buffer = NULL;
NULL              406 libavcodec/tta.c     { "password", "Set decoding password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, DEC },
NULL              407 libavcodec/tta.c     { NULL },
NULL              484 libavcodec/twinvq.c     float **out = NULL;
NULL             11137 libavcodec/twinvq_data.h     {  0, NULL         },
NULL              382 libavcodec/utils.c     needed_size = av_samples_get_buffer_size(NULL, nb_channels,
NULL              552 libavcodec/utils.c     AVDictionary *tmp = NULL;
NULL              616 libavcodec/utils.c         avctx->priv_data = NULL;
NULL              718 libavcodec/utils.c         ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
NULL             1053 libavcodec/utils.c     avctx->internal = NULL;
NULL             1054 libavcodec/utils.c     avctx->codec = NULL;
NULL             1178 libavcodec/utils.c     avctx->codec = NULL;
NULL             1194 libavcodec/utils.c     av_log(NULL, AV_LOG_WARNING, "Codec 0x%x is not in the full list.\n", id);
NULL             1228 libavcodec/utils.c     const char *profile = NULL;
NULL             1423 libavcodec/utils.c         return NULL;
NULL             1429 libavcodec/utils.c     return NULL;
NULL             1438 libavcodec/utils.c         return NULL;
NULL             1444 libavcodec/utils.c     return NULL;
NULL             1807 libavcodec/utils.c         return NULL;
NULL             1810 libavcodec/utils.c             return NULL;
NULL             1817 libavcodec/utils.c     return NULL;
NULL             1982 libavcodec/utils.c         return NULL;
NULL             2005 libavcodec/utils.c         return NULL;
NULL             2010 libavcodec/utils.c         return NULL;
NULL             2048 libavcodec/utils.c         return NULL;
NULL             2069 libavcodec/utils.c     dst->extradata      = NULL;
NULL             2199 libavcodec/utils.c     AVFrameSideData *side_data = NULL;
NULL             2206 libavcodec/utils.c         *data = NULL;
NULL              655 libavcodec/utvideoenc.c     { "none",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRED_NONE }, INT_MIN, INT_MAX, VE, "pred" },
NULL              656 libavcodec/utvideoenc.c     { "left",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRED_LEFT }, INT_MIN, INT_MAX, VE, "pred" },
NULL              657 libavcodec/utvideoenc.c     { "gradient", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRED_GRADIENT }, INT_MIN, INT_MAX, VE, "pred" },
NULL              658 libavcodec/utvideoenc.c     { "median",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PRED_MEDIAN }, INT_MIN, INT_MAX, VE, "pred" },
NULL              660 libavcodec/utvideoenc.c     { NULL},
NULL              189 libavcodec/v210dec.c     avctx->execute2(avctx, v210_decode_slice, &td, NULL, s->thread_count);
NULL              207 libavcodec/v210dec.c     {NULL}
NULL              112 libavcodec/v410dec.c     avctx->execute2(avctx, v410_decode_slice, &td, NULL, thread_count);
NULL              530 libavcodec/v4l2_buffers.c             avbuf->plane_info[i].mm_addr = mmap(NULL, avbuf->buf.m.planes[i].length,
NULL              535 libavcodec/v4l2_buffers.c             avbuf->plane_info[i].mm_addr = mmap(NULL, avbuf->buf.length,
NULL              319 libavcodec/v4l2_context.c         return NULL;
NULL              337 libavcodec/v4l2_context.c         return NULL;
NULL              353 libavcodec/v4l2_context.c         return NULL;
NULL              362 libavcodec/v4l2_context.c             return NULL;
NULL              368 libavcodec/v4l2_context.c             return NULL;
NULL              384 libavcodec/v4l2_context.c                 return NULL;
NULL              405 libavcodec/v4l2_context.c             return NULL;
NULL              413 libavcodec/v4l2_context.c                 return NULL;
NULL              431 libavcodec/v4l2_context.c     return NULL;
NULL              450 libavcodec/v4l2_context.c     return NULL;
NULL              351 libavcodec/v4l2_m2m.c     s->self_ref = NULL;
NULL              402 libavcodec/v4l2_m2m.c                                          &v4l2_m2m_destroy_context, NULL, 0);
NULL              215 libavcodec/v4l2_m2m_dec.c         s->self_ref = NULL;
NULL              239 libavcodec/v4l2_m2m_dec.c     { NULL},
NULL              270 libavcodec/v4l2_m2m_dec.c M2MDEC(mpeg1, "MPEG1", AV_CODEC_ID_MPEG1VIDEO, NULL);
NULL              271 libavcodec/v4l2_m2m_dec.c M2MDEC(mpeg2, "MPEG2", AV_CODEC_ID_MPEG2VIDEO, NULL);
NULL              272 libavcodec/v4l2_m2m_dec.c M2MDEC(mpeg4, "MPEG4", AV_CODEC_ID_MPEG4,      NULL);
NULL              273 libavcodec/v4l2_m2m_dec.c M2MDEC(h263,  "H.263", AV_CODEC_ID_H263,       NULL);
NULL              274 libavcodec/v4l2_m2m_dec.c M2MDEC(vc1 ,  "VC1",   AV_CODEC_ID_VC1,        NULL);
NULL              275 libavcodec/v4l2_m2m_dec.c M2MDEC(vp8,   "VP8",   AV_CODEC_ID_VP8,        NULL);
NULL              276 libavcodec/v4l2_m2m_dec.c M2MDEC(vp9,   "VP9",   AV_CODEC_ID_VP9,        NULL);
NULL              382 libavcodec/v4l2_m2m_enc.c     { NULL },
NULL              387 libavcodec/v4l2_m2m_enc.c     { NULL },
NULL              393 libavcodec/v4l2_m2m_enc.c     { NULL },
NULL              294 libavcodec/vaapi_decode.c                                    NULL, &nb_attr);
NULL              335 libavcodec/vaapi_decode.c                                                 source_format, 0, NULL);
NULL              425 libavcodec/vaapi_decode.c     AVVAAPIHWConfig       *hwconfig    = NULL;
NULL              426 libavcodec/vaapi_decode.c     AVHWFramesConstraints *constraints = NULL;
NULL              430 libavcodec/vaapi_decode.c     VAProfile *profile_list = NULL, matched_va_profile, va_profile;
NULL              515 libavcodec/vaapi_decode.c                          VAEntrypointVLD, NULL, 0,
NULL               32 libavcodec/vaapi_encode.c     NULL,
NULL              595 libavcodec/vaapi_encode.c     buf_list = NULL;
NULL              674 libavcodec/vaapi_encode.c         return NULL;
NULL              680 libavcodec/vaapi_encode.c             return NULL;
NULL              852 libavcodec/vaapi_encode.c     VAAPIEncodePicture *pic = NULL, *next, *start;
NULL              880 libavcodec/vaapi_encode.c     start = NULL;
NULL             1002 libavcodec/vaapi_encode.c     prev = NULL;
NULL             1126 libavcodec/vaapi_encode.c     pic = NULL;
NULL             1219 libavcodec/vaapi_encode.c     VAProfile    *va_profiles    = NULL;
NULL             1220 libavcodec/vaapi_encode.c     VAEntrypoint *va_entrypoints = NULL;
NULL             1516 libavcodec/vaapi_encode.c             rc_mode = NULL; \
NULL             2105 libavcodec/vaapi_encode.c         return NULL;
NULL             2116 libavcodec/vaapi_encode.c         return NULL;
NULL             2125 libavcodec/vaapi_encode.c     AVVAAPIHWConfig *hwconfig = NULL;
NULL             2126 libavcodec/vaapi_encode.c     AVHWFramesConstraints *constraints = NULL;
NULL             2213 libavcodec/vaapi_encode.c     AVVAAPIFramesContext *recon_hwctx = NULL;
NULL             2302 libavcodec/vaapi_encode.c                              &vaapi_encode_alloc_output_buffer, NULL);
NULL              143 libavcodec/vaapi_encode_h264.c                                      header->nal_unit_type, nal_unit, NULL);
NULL              627 libavcodec/vaapi_encode_h264.c     VAAPIEncodeH264Picture         *hprev = prev ? prev->priv_data : NULL;
NULL             1119 libavcodec/vaapi_encode_h264.c         len = snprintf(NULL, 0, "%s / VAAPI %s / %s", lavc, vaapi, driver);
NULL             1264 libavcodec/vaapi_encode_h264.c         { "cavlc", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS, "coder" },
NULL             1265 libavcodec/vaapi_encode_h264.c         { "cabac", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, FLAGS, "coder" },
NULL             1266 libavcodec/vaapi_encode_h264.c         { "vlc",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS, "coder" },
NULL             1267 libavcodec/vaapi_encode_h264.c         { "ac",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, FLAGS, "coder" },
NULL             1290 libavcodec/vaapi_encode_h264.c #define PROFILE(name, value)  name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL             1301 libavcodec/vaapi_encode_h264.c #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL             1324 libavcodec/vaapi_encode_h264.c     { NULL },
NULL             1337 libavcodec/vaapi_encode_h264.c     { NULL },
NULL              124 libavcodec/vaapi_encode_h265.c                                      header->nal_unit_type, nal_unit, NULL);
NULL              679 libavcodec/vaapi_encode_h265.c     VAAPIEncodeH265Picture         *hprev = prev ? prev->priv_data : NULL;
NULL             1213 libavcodec/vaapi_encode_h265.c #define PROFILE(name, value)  name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL             1223 libavcodec/vaapi_encode_h265.c     { "main", NULL, 0, AV_OPT_TYPE_CONST,
NULL             1225 libavcodec/vaapi_encode_h265.c     { "high", NULL, 0, AV_OPT_TYPE_CONST,
NULL             1232 libavcodec/vaapi_encode_h265.c #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL             1260 libavcodec/vaapi_encode_h265.c     { NULL },
NULL             1273 libavcodec/vaapi_encode_h265.c     { NULL },
NULL               95 libavcodec/vaapi_encode_mjpeg.c                                          &priv->jfif_header, NULL);
NULL              102 libavcodec/vaapi_encode_mjpeg.c                                      &priv->quant_tables, NULL);
NULL              108 libavcodec/vaapi_encode_mjpeg.c                                      &priv->frame_header, NULL);
NULL              115 libavcodec/vaapi_encode_mjpeg.c                                          &priv->huffman_tables, NULL);
NULL              122 libavcodec/vaapi_encode_mjpeg.c                                      &priv->scan, NULL);
NULL              291 libavcodec/vaapi_encode_mjpeg.c         app->Ap_ref = NULL;
NULL              540 libavcodec/vaapi_encode_mjpeg.c     { NULL },
NULL              545 libavcodec/vaapi_encode_mjpeg.c     { NULL },
NULL               99 libavcodec/vaapi_encode_mpeg2.c     err = ff_cbs_insert_unit_content(priv->cbc, frag, -1, type, header, NULL);
NULL              652 libavcodec/vaapi_encode_mpeg2.c #define PROFILE(name, value)  name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL              662 libavcodec/vaapi_encode_mpeg2.c #define LEVEL(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, \
NULL              670 libavcodec/vaapi_encode_mpeg2.c     { NULL },
NULL              683 libavcodec/vaapi_encode_mpeg2.c     { NULL },
NULL              229 libavcodec/vaapi_encode_vp8.c     { NULL },
NULL              238 libavcodec/vaapi_encode_vp8.c     { NULL },
NULL              263 libavcodec/vaapi_encode_vp9.c     { NULL },
NULL              272 libavcodec/vaapi_encode_vp9.c     { NULL },
NULL              100 libavcodec/vaapi_hevc.c         const HEVCFrame *frame = NULL;
NULL              126 libavcodec/vaapi_hevc.c     const ScalingList *scaling_list = NULL;
NULL              415 libavcodec/vaapi_hevc.c         pic->last_buffer = NULL;
NULL              402 libavcodec/vaapi_vc1.c             ff_bp[0] = pic_param.bitplane_present.flags.bp_direct_mb  ? v->direct_mb_plane    : NULL;
NULL              403 libavcodec/vaapi_vc1.c             ff_bp[1] = pic_param.bitplane_present.flags.bp_skip_mb    ? s->mbskip_table       : NULL;
NULL              404 libavcodec/vaapi_vc1.c             ff_bp[2] = pic_param.bitplane_present.flags.bp_mv_type_mb ? v->mv_type_mb_plane   : NULL;
NULL              408 libavcodec/vaapi_vc1.c                 ff_bp[0] = pic_param.bitplane_present.flags.bp_direct_mb  ? v->direct_mb_plane  : NULL;
NULL              409 libavcodec/vaapi_vc1.c                 ff_bp[1] = pic_param.bitplane_present.flags.bp_skip_mb    ? s->mbskip_table     : NULL;
NULL              410 libavcodec/vaapi_vc1.c                 ff_bp[2] = pic_param.bitplane_present.flags.bp_forward_mb ? v->forward_mb_plane : NULL;
NULL              415 libavcodec/vaapi_vc1.c             ff_bp[0] = pic_param.bitplane_present.flags.bp_field_tx   ? v->fieldtx_plane      : NULL;
NULL              416 libavcodec/vaapi_vc1.c             ff_bp[1] = pic_param.bitplane_present.flags.bp_ac_pred    ? v->acpred_plane       : NULL;
NULL              417 libavcodec/vaapi_vc1.c             ff_bp[2] = pic_param.bitplane_present.flags.bp_overflags  ? v->over_flags_plane   : NULL;
NULL              420 libavcodec/vaapi_vc1.c             ff_bp[0] = NULL;
NULL              421 libavcodec/vaapi_vc1.c             ff_bp[1] = NULL;
NULL              422 libavcodec/vaapi_vc1.c             ff_bp[2] = NULL;
NULL             1590 libavcodec/vc1.c     v->hrd_rate = v->hrd_buffer = NULL;
NULL              727 libavcodec/vc1_block.c     int16_t *dc_val = NULL;
NULL              922 libavcodec/vc1_block.c     int16_t *dc_val = NULL;
NULL             2009 libavcodec/vc1_block.c                                          CONFIG_GRAY && (i & 4) && (s->avctx->flags & AV_CODEC_FLAG_GRAY), NULL);
NULL              237 libavcodec/vc1_parser.c             *poutbuf = NULL;
NULL              470 libavcodec/vc1dec.c         uint8_t *buf2 = NULL;
NULL              642 libavcodec/vc1dec.c     uint8_t *buf2 = NULL;
NULL              643 libavcodec/vc1dec.c     const uint8_t *buf_start = buf, *buf_start_second_field = NULL;
NULL              651 libavcodec/vc1dec.c     } *slices = NULL, *tmp;
NULL              664 libavcodec/vc1dec.c             s->next_picture_ptr = NULL;
NULL             1239 libavcodec/vc1dec.c                         NULL
NULL             1276 libavcodec/vc1dec.c                         NULL
NULL              929 libavcodec/vc1dsp.c     sprite_v_template(dst, src1a, src1b, offset, 0, NULL, NULL, 0, 0, 1, width);
NULL              936 libavcodec/vc1dsp.c     sprite_v_template(dst, src1a, NULL, 0, 1, src2a, NULL, 0, alpha, 0, width);
NULL              946 libavcodec/vc1dsp.c     sprite_v_template(dst, src1a, src1b, offset1, 1, src2a, NULL, 0, alpha, 1,
NULL              650 libavcodec/vc2enc.c     SliceArgs *top_loc[SLICE_REDIST_TOTAL] = {NULL};
NULL              667 libavcodec/vc2enc.c     s->avctx->execute(s->avctx, rate_control, enc_args, NULL, s->num_x*s->num_y,
NULL              795 libavcodec/vc2enc.c     s->avctx->execute(s->avctx, encode_hq_slice, enc_args, NULL, s->num_x*s->num_y,
NULL              911 libavcodec/vc2enc.c     s->avctx->execute(s->avctx, dwt_plane, s->transform_args, NULL, 3,
NULL             1207 libavcodec/vc2enc.c     {NULL}
NULL             1220 libavcodec/vc2enc.c     { NULL },
NULL              280 libavcodec/vc2enc_dwt.c     s->buffer = NULL;
NULL              328 libavcodec/vdpau.c     pic_ctx->bitstream_buffers           = NULL;
NULL              114 libavcodec/videotoolbox.c     uint8_t    *data = NULL;
NULL              115 libavcodec/videotoolbox.c     AVBufferRef *buf = NULL;
NULL              124 libavcodec/videotoolbox.c     buf = av_buffer_create(data, size, videotoolbox_buffer_release, NULL, 0);
NULL              147 libavcodec/videotoolbox.c     CFDataRef data = NULL;
NULL              152 libavcodec/videotoolbox.c         return NULL;
NULL              192 libavcodec/videotoolbox.c     CFDataRef data = NULL;
NULL              212 libavcodec/videotoolbox.c         return NULL;
NULL              456 libavcodec/videotoolbox.c     vtctx->frame = NULL;
NULL              521 libavcodec/videotoolbox.c         return NULL;
NULL              569 libavcodec/videotoolbox.c     block_buf  = NULL;
NULL              570 libavcodec/videotoolbox.c     sample_buf = NULL;
NULL              576 libavcodec/videotoolbox.c                                                 NULL,               // customBlockSource
NULL              591 libavcodec/videotoolbox.c                                       NULL,                 // sampleTimingArray
NULL              593 libavcodec/videotoolbox.c                                       NULL,                 // sampleSizeArray
NULL              616 libavcodec/videotoolbox.c         vtctx->frame = NULL;
NULL              644 libavcodec/videotoolbox.c                                                NULL,    // sourceFrameRefCon
NULL              670 libavcodec/videotoolbox.c         return NULL;
NULL              732 libavcodec/videotoolbox.c     CFDataRef data = NULL;
NULL              833 libavcodec/videotoolbox.c     status = VTDecompressionSessionCreate(NULL,                      // allocator
NULL              877 libavcodec/videotoolbox.c         videotoolbox->cm_fmt_desc = NULL;
NULL              883 libavcodec/videotoolbox.c         videotoolbox->session = NULL;
NULL             1237 libavcodec/videotoolbox.c     return av_videotoolbox_default_init2(avctx, NULL);
NULL              247 libavcodec/videotoolboxenc.c     *refPtr = NULL;
NULL              259 libavcodec/videotoolboxenc.c     vtctx->q_head = vtctx->q_tail = NULL;
NULL              288 libavcodec/videotoolboxenc.c         *buf = NULL;
NULL              300 libavcodec/videotoolboxenc.c         *buf = NULL;
NULL              307 libavcodec/videotoolboxenc.c         vtctx->q_tail = NULL;
NULL              337 libavcodec/videotoolboxenc.c     info->next = NULL;
NULL              422 libavcodec/videotoolboxenc.c                                        NULL,
NULL              423 libavcodec/videotoolboxenc.c                                        NULL,
NULL              425 libavcodec/videotoolboxenc.c                                        NULL);
NULL              439 libavcodec/videotoolboxenc.c                                            NULL,
NULL              440 libavcodec/videotoolboxenc.c                                            NULL);
NULL              478 libavcodec/videotoolboxenc.c                                        NULL,
NULL              479 libavcodec/videotoolboxenc.c                                        NULL,
NULL              481 libavcodec/videotoolboxenc.c                                        NULL);
NULL              498 libavcodec/videotoolboxenc.c                                            NULL,
NULL              499 libavcodec/videotoolboxenc.c                                            NULL);
NULL              616 libavcodec/videotoolboxenc.c                                        NULL,
NULL              617 libavcodec/videotoolboxenc.c                                        NULL,
NULL              618 libavcodec/videotoolboxenc.c                                        NULL,
NULL              646 libavcodec/videotoolboxenc.c     *profile_level_val = NULL;
NULL              746 libavcodec/videotoolboxenc.c     *profile_level_val = NULL;
NULL              824 libavcodec/videotoolboxenc.c     CFNumberRef cv_color_format_num = NULL;
NULL              825 libavcodec/videotoolboxenc.c     CFNumberRef width_num = NULL;
NULL              826 libavcodec/videotoolboxenc.c     CFNumberRef height_num = NULL;
NULL              827 libavcodec/videotoolboxenc.c     CFMutableDictionaryRef pixel_buffer_info = NULL;
NULL              833 libavcodec/videotoolboxenc.c                                      NULL);
NULL              894 libavcodec/videotoolboxenc.c             *primaries = NULL;
NULL              915 libavcodec/videotoolboxenc.c             *primaries = NULL;
NULL              928 libavcodec/videotoolboxenc.c     *gamma_level = NULL;
NULL              932 libavcodec/videotoolboxenc.c             *transfer_fnc = NULL;
NULL              962 libavcodec/videotoolboxenc.c             *gamma_level = CFNumberCreate(NULL, kCFNumberFloat32Type, &gamma);
NULL              968 libavcodec/videotoolboxenc.c             *gamma_level = CFNumberCreate(NULL, kCFNumberFloat32Type, &gamma);
NULL              977 libavcodec/videotoolboxenc.c             *transfer_fnc = NULL;
NULL              992 libavcodec/videotoolboxenc.c             *matrix = NULL;
NULL             1328 libavcodec/videotoolboxenc.c     CFNumberRef            gamma_level = NULL;
NULL             1390 libavcodec/videotoolboxenc.c         pixel_buffer_info = NULL;
NULL             1439 libavcodec/videotoolboxenc.c     pthread_mutex_init(&vtctx->lock, NULL);
NULL             1440 libavcodec/videotoolboxenc.c     pthread_cond_init(&vtctx->cv_sample_sent, NULL);
NULL             1442 libavcodec/videotoolboxenc.c     vtctx->session = NULL;
NULL             1507 libavcodec/videotoolboxenc.c     *sei_end = NULL;
NULL             1851 libavcodec/videotoolboxenc.c                                        NULL,
NULL             2233 libavcodec/videotoolboxenc.c             vtctx->session = NULL;
NULL             2247 libavcodec/videotoolboxenc.c     status = CVPixelBufferPoolCreatePixelBuffer(NULL,
NULL             2260 libavcodec/videotoolboxenc.c         *cv_img = NULL;
NULL             2270 libavcodec/videotoolboxenc.c     CFDictionaryRef dict = NULL;
NULL             2275 libavcodec/videotoolboxenc.c         dict = CFDictionaryCreate(NULL, keys, vals, 1, NULL, NULL);
NULL             2289 libavcodec/videotoolboxenc.c     CVPixelBufferRef cv_img = NULL;
NULL             2290 libavcodec/videotoolboxenc.c     AVFrameSideData *side_data = NULL;
NULL             2291 libavcodec/videotoolboxenc.c     ExtraSEI *sei = NULL;
NULL             2312 libavcodec/videotoolboxenc.c                 sei = NULL;
NULL             2325 libavcodec/videotoolboxenc.c         NULL
NULL             2348 libavcodec/videotoolboxenc.c     CMSampleBufferRef buf = NULL;
NULL             2349 libavcodec/videotoolboxenc.c     ExtraSEI *sei = NULL;
NULL             2415 libavcodec/videotoolboxenc.c     CVPixelBufferPoolRef pool = NULL;
NULL             2416 libavcodec/videotoolboxenc.c     CVPixelBufferRef pix_buf = NULL;
NULL             2418 libavcodec/videotoolboxenc.c     CMSampleBufferRef buf = NULL;
NULL             2436 libavcodec/videotoolboxenc.c     status = CVPixelBufferPoolCreatePixelBuffer(NULL,
NULL             2450 libavcodec/videotoolboxenc.c                                              NULL,
NULL             2451 libavcodec/videotoolboxenc.c                                              NULL,
NULL             2452 libavcodec/videotoolboxenc.c                                              NULL);
NULL             2470 libavcodec/videotoolboxenc.c     status = vtenc_q_pop(vtctx, 0, &buf, NULL);
NULL             2484 libavcodec/videotoolboxenc.c     vtctx->session = NULL;
NULL             2505 libavcodec/videotoolboxenc.c     vtctx->session = NULL;
NULL             2509 libavcodec/videotoolboxenc.c         vtctx->color_primaries = NULL;
NULL             2514 libavcodec/videotoolboxenc.c         vtctx->transfer_function = NULL;
NULL             2519 libavcodec/videotoolboxenc.c         vtctx->ycbcr_matrix = NULL;
NULL             2582 libavcodec/videotoolboxenc.c     { NULL },
NULL             2614 libavcodec/videotoolboxenc.c     { NULL },
NULL               45 libavcodec/vlc.h                        NULL, 0, 0, flags)
NULL               76 libavcodec/vlc.h     INIT_VLC_SPARSE_STATIC(vlc, bits, a, b, c, d, e, f, g, NULL, 0, 0, static_size)
NULL               79 libavcodec/vlc.h     INIT_LE_VLC_SPARSE_STATIC(vlc, bits, a, b, c, d, e, f, g, NULL, 0, 0, static_size)
NULL              267 libavcodec/vorbis_parser.c     return av_vorbis_parse_frame_flags(s, buf, buf_size, NULL);
NULL              288 libavcodec/vorbis_parser.c         return NULL;
NULL              293 libavcodec/vorbis_parser.c         return NULL;
NULL              241 libavcodec/vorbisdec.c     uint8_t  *tmp_vlc_bits  = NULL;
NULL              242 libavcodec/vorbisdec.c     uint32_t *tmp_vlc_codes = NULL;
NULL              244 libavcodec/vorbisdec.c     uint16_t *codebook_multiplicands = NULL;
NULL              249 libavcodec/vorbisdec.c     ff_dlog(NULL, " Codebooks: %d \n", vc->codebook_count);
NULL              265 libavcodec/vorbisdec.c         ff_dlog(NULL, " %u. Codebook\n", cb);
NULL              293 libavcodec/vorbisdec.c         ff_dlog(NULL, " codebook_dimensions %d, codebook_entries %u\n",
NULL              300 libavcodec/vorbisdec.c             ff_dlog(NULL, " not ordered \n");
NULL              303 libavcodec/vorbisdec.c                 ff_dlog(NULL, " sparse \n");
NULL              315 libavcodec/vorbisdec.c                 ff_dlog(NULL, " not sparse \n");
NULL              325 libavcodec/vorbisdec.c             ff_dlog(NULL, " ordered, current length: %u\n", current_length);  //FIXME
NULL              331 libavcodec/vorbisdec.c                 ff_dlog(NULL, " number bits: %u ", ilog(entries - current_entry));
NULL              335 libavcodec/vorbisdec.c                 ff_dlog(NULL, " number: %u\n", number);
NULL              352 libavcodec/vorbisdec.c         ff_dlog(NULL, " lookup type: %d : %s \n", codebook_setup->lookup_type,
NULL              366 libavcodec/vorbisdec.c             ff_dlog(NULL, " We expect %d numbers for building the codevectors. \n",
NULL              368 libavcodec/vorbisdec.c             ff_dlog(NULL, "  delta %f minmum %f \n",
NULL              374 libavcodec/vorbisdec.c                 ff_dlog(NULL, " multiplicands*delta+minmum : %e \n",
NULL              376 libavcodec/vorbisdec.c                 ff_dlog(NULL, " multiplicand %u\n", codebook_multiplicands[i]);
NULL              389 libavcodec/vorbisdec.c                 codebook_setup->codevectors = NULL;
NULL              481 libavcodec/vorbisdec.c         ff_dlog(NULL, " Vorbis time domain transform %u: %u\n",
NULL              515 libavcodec/vorbisdec.c         ff_dlog(NULL, " %d. floor type %d \n", i, floor_setup->floor_type);
NULL              525 libavcodec/vorbisdec.c             ff_dlog(NULL, " %d.floor: %d partitions \n",
NULL              533 libavcodec/vorbisdec.c                 ff_dlog(NULL, " %d. floor %d partition class %d \n",
NULL              538 libavcodec/vorbisdec.c             ff_dlog(NULL, " maximum class %d \n", maximum_class);
NULL              544 libavcodec/vorbisdec.c                 ff_dlog(NULL, " %d floor %d class dim: %d subclasses %d \n", i, j,
NULL              551 libavcodec/vorbisdec.c                     ff_dlog(NULL, "   masterbook: %d \n", floor_setup->data.t1.class_masterbook[j]);
NULL              560 libavcodec/vorbisdec.c                     ff_dlog(NULL, "    book %d. : %d \n", k, floor_setup->data.t1.subclass_books[j][k]);
NULL              595 libavcodec/vorbisdec.c                     ff_dlog(NULL, " %u. floor1 Y coord. %d\n", floor1_values,
NULL              660 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 order: %u\n", floor_setup->data.t0.order);
NULL              661 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 rate: %u\n", floor_setup->data.t0.rate);
NULL              662 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 bark map size: %u\n",
NULL              664 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 amplitude bits: %u\n",
NULL              666 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 amplitude offset: %u\n",
NULL              668 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 number of books: %u\n",
NULL              670 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 book list pointer: %p\n",
NULL              675 libavcodec/vorbisdec.c                     ff_dlog(NULL, "  Book %d: %u\n", idx + 1,
NULL              699 libavcodec/vorbisdec.c     ff_dlog(NULL, " There are %d residues. \n", vc->residue_count);
NULL              708 libavcodec/vorbisdec.c         ff_dlog(NULL, " %u. residue type %d\n", i, res_setup->type);
NULL              734 libavcodec/vorbisdec.c         ff_dlog(NULL, "    begin %"PRIu32" end %"PRIu32" part.size %u classif.s %"PRIu8" classbook %"PRIu8"\n",
NULL              745 libavcodec/vorbisdec.c             ff_dlog(NULL, "     %u class cascade depth: %d\n", j, ilog(cascade[j]));
NULL              754 libavcodec/vorbisdec.c                     ff_dlog(NULL, "     %u class cascade depth %u book: %d\n",
NULL              780 libavcodec/vorbisdec.c     ff_dlog(NULL, " There are %d mappings. \n", vc->mapping_count);
NULL              817 libavcodec/vorbisdec.c         ff_dlog(NULL, "   %u mapping coupling steps: %d\n",
NULL              840 libavcodec/vorbisdec.c             ff_dlog(NULL, "   %u mapping %u submap : floor %d, residue %d\n", i, j,
NULL              879 libavcodec/vorbisdec.c         ff_dlog(NULL, "floor0 map: map at pos %d is %"PRId32"\n", idx, map[idx]);
NULL              895 libavcodec/vorbisdec.c     ff_dlog(NULL, " There are %d modes.\n", vc->mode_count);
NULL              905 libavcodec/vorbisdec.c         ff_dlog(NULL, " %u mode: blockflag %d, windowtype %d, transformtype %d, mapping %d\n",
NULL             1015 libavcodec/vorbisdec.c     ff_dlog(NULL, " vorbis version %"PRIu32" \n audio_channels %"PRIu8" \n audio_samplerate %"PRIu32" \n bitrate_max %"PRIu32" \n bitrate_nom %"PRIu32" \n bitrate_min %"PRIu32" \n blk_0 %"PRIu32" blk_1 %"PRIu32" \n ",
NULL             1118 libavcodec/vorbisdec.c         ff_dlog(NULL, "floor0 dec: booknumber: %u\n", book_idx);
NULL             1127 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 dec: book dimension: %d\n", codebook.dimensions);
NULL             1128 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 dec: maximum depth: %d\n", codebook.maxdepth);
NULL             1135 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 dec: vector offset: %d\n", vec_off);
NULL             1147 libavcodec/vorbisdec.c                 ff_dlog(NULL, "floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
NULL             1159 libavcodec/vorbisdec.c             ff_dlog(NULL, "floor0 synth: map_size = %"PRIu32"; m = %d; wstep = %f\n",
NULL             1204 libavcodec/vorbisdec.c     ff_dlog(NULL, " Floor0 decoded\n");
NULL             1231 libavcodec/vorbisdec.c     ff_dlog(NULL, "floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
NULL             1241 libavcodec/vorbisdec.c         ff_dlog(NULL, "Cbits %u\n", cbits);
NULL             1250 libavcodec/vorbisdec.c             ff_dlog(NULL, "book %d Cbits %u cval %u  bits:%d\n",
NULL             1264 libavcodec/vorbisdec.c             ff_dlog(NULL, " floor(%d) = %d \n",
NULL             1323 libavcodec/vorbisdec.c         ff_dlog(NULL, " Decoded floor(%d) = %u / val %u\n",
NULL             1331 libavcodec/vorbisdec.c     ff_dlog(NULL, " Floor decoded\n");
NULL             1354 libavcodec/vorbisdec.c             ff_dlog(NULL, "Classword: %u\n", temp);
NULL             1424 libavcodec/vorbisdec.c     ff_dlog(NULL, " residue type 0/1/2 decode begin, ch: %d  cpc %d  \n", ch, c_p_c);
NULL             1471 libavcodec/vorbisdec.c                                         ff_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d  \n",
NULL             1508 libavcodec/vorbisdec.c                                         ff_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d+%d  \n",
NULL             1528 libavcodec/vorbisdec.c                                         ff_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d+%d  \n",
NULL             1634 libavcodec/vorbisdec.c     ff_dlog(NULL, " Mode number: %u , mapping: %d , blocktype %d\n", mode_number,
NULL             1778 libavcodec/vorbisdec.c     ff_dlog(NULL, "packet length %d \n", buf_size);
NULL             1851 libavcodec/vorbisdec.c     ff_dlog(NULL, "parsed %d bytes %d bits, returned %d samples (*ch*bits) \n",
NULL              180 libavcodec/vorbisenc.c         cb->pow2 = cb->dimensions = NULL;
NULL              314 libavcodec/vorbisenc.c             cb->quantlist = NULL;
NULL              901 libavcodec/vorbisenc.c         return NULL;
NULL             1032 libavcodec/vorbisenc.c         return NULL;
NULL             1040 libavcodec/vorbisenc.c         return NULL;
NULL             1053 libavcodec/vorbisenc.c     AVFrame *cur = NULL;
NULL              408 libavcodec/vp3data.h     NULL,
NULL              409 libavcodec/vp3data.h     NULL,
NULL              410 libavcodec/vp3data.h     NULL,
NULL              411 libavcodec/vp3data.h     NULL,
NULL              412 libavcodec/vp3data.h     NULL,
NULL              413 libavcodec/vp3data.h     NULL,
NULL              414 libavcodec/vp3data.h     NULL,
NULL              808 libavcodec/vp56.c     s->edge_emu_buffer_alloc = NULL;
NULL              810 libavcodec/vp56.c     s->above_blocks = NULL;
NULL              811 libavcodec/vp56.c     s->macroblocks = NULL;
NULL              816 libavcodec/vp56.c     s->filter = NULL;
NULL               67 libavcodec/vp8.c     s->macroblocks = NULL;
NULL               99 libavcodec/vp8.c     f->hwaccel_picture_private = NULL;
NULL              148 libavcodec/vp8.c     VP8Frame *frame = NULL;
NULL              238 libavcodec/vp8.c         pthread_mutex_init(&s->thread_data[i].lock, NULL);
NULL              239 libavcodec/vp8.c         pthread_cond_init(&s->thread_data[i].cond, NULL);
NULL             2301 libavcodec/vp8.c                            prev_frame->seg_map->data + mb_xy : NULL, 1, is_vp7);
NULL             2432 libavcodec/vp8.c                            prev_frame->seg_map->data + mb_xy : NULL, 0, is_vp7);
NULL             2466 libavcodec/vp8.c                                  NULL, NULL, s->linesize, 0, 1);
NULL             2542 libavcodec/vp8.c                                  NULL, NULL, s->linesize, 0, 1);
NULL             2578 libavcodec/vp8.c     VP8ThreadData *next_td = NULL, *prev_td = NULL;
NULL             2778 libavcodec/vp8.c             avctx->execute2(avctx, vp7_decode_mb_row_sliced, s->thread_data, NULL,
NULL             2781 libavcodec/vp8.c             avctx->execute2(avctx, vp8_decode_mb_row_sliced, s->thread_data, NULL,
NULL             2897 libavcodec/vp8.c #define REBASE(pic) ((pic) ? (pic) - &s_src->frames[0] + &s->frames[0] : NULL)
NULL             2972 libavcodec/vp8.c                                NULL
NULL               70 libavcodec/vp9.c         pthread_mutex_init(&s->progress_mutex, NULL);
NULL               71 libavcodec/vp9.c         pthread_cond_init(&s->progress_cond, NULL);
NULL              109 libavcodec/vp9.c     f->segmentation_map = NULL;
NULL              110 libavcodec/vp9.c     f->hwaccel_picture_private = NULL;
NULL              125 libavcodec/vp9.c         s->frame_extradata_pool = av_buffer_pool_init(sz * (1 + sizeof(VP9mvrefPair)), NULL);
NULL             1631 libavcodec/vp9.c         ret = avctx->hwaccel->start_frame(avctx, NULL, 0);
NULL             1730 libavcodec/vp9.c             ff_slice_thread_execute_with_mainfunc(avctx, decode_tiles_mt, loopfilter_proc, s->td, NULL, s->s.h.tiling.tile_cols);
NULL             1913 libavcodec/vp9.c                                NULL
NULL              153 libavcodec/vp9_metadata_bsf.c     { NULL }
NULL               70 libavcodec/vp9_raw_reorder_bsf.c             ctx->slot[s] = NULL;
NULL              291 libavcodec/vp9_raw_reorder_bsf.c                 return vp9_raw_reorder_make_output(bsf, out, NULL);
NULL              370 libavcodec/vp9_raw_reorder_bsf.c             ctx->next_frame = NULL;
NULL              375 libavcodec/vp9_raw_reorder_bsf.c             ctx->next_frame = NULL;
NULL              380 libavcodec/vp9_raw_reorder_bsf.c     ctx->next_frame = NULL;
NULL              394 libavcodec/vp9_raw_reorder_bsf.c     ctx->next_frame = NULL;
NULL              579 libavcodec/vp9recon.c             av_log(NULL, AV_LOG_ERROR, "Bitstream not supported, "
NULL              642 libavcodec/vqavideo.c     { NULL },
NULL              989 libavcodec/wavpack.c     s->dsdctx = NULL;
NULL             1028 libavcodec/wavpack.c     fdst->dsdctx = NULL;
NULL             1087 libavcodec/wavpack.c     void *samples_l = NULL, *samples_r = NULL;
NULL             1590 libavcodec/wavpack.c                 ret = wv_unpack_dsd_high(s, samples_l, NULL);
NULL             1592 libavcodec/wavpack.c                 ret = wv_unpack_dsd_fast(s, samples_l, NULL);
NULL             1594 libavcodec/wavpack.c                 ret = wv_unpack_dsd_copy(s, samples_l, NULL);
NULL             1639 libavcodec/wavpack.c     s->frame     = NULL;
NULL             1682 libavcodec/wavpack.c         avctx->execute2(avctx, dsd_channel, s->frame, NULL, avctx->channels);
NULL             2950 libavcodec/wavpackenc.c     { NULL },
NULL              365 libavcodec/webp.c     int *code_lengths = NULL;
NULL             1489 libavcodec/webp.c             AVDictionary *exif_metadata = NULL;
NULL               46 libavcodec/webp_parser.c     *poutbuf      = NULL;
NULL               93 libavcodec/webvttdec.c         ret = ff_ass_add_rect(sub, buf.str, s->readorder++, 0, NULL, NULL);
NULL               94 libavcodec/webvttdec.c     av_bprint_finalize(&buf, NULL);
NULL              148 libavcodec/webvttenc.c     .color            = NULL,
NULL              149 libavcodec/webvttenc.c     .font_name        = NULL,
NULL              150 libavcodec/webvttenc.c     .font_size        = NULL,
NULL              151 libavcodec/webvttenc.c     .alignment        = NULL,
NULL              153 libavcodec/webvttenc.c     .move             = NULL,
NULL              214 libavcodec/webvttenc.c     av_bprint_finalize(&s->buffer, NULL);
NULL              226 libavcodec/wma.c                 table = NULL;
NULL              595 libavcodec/wmaprodata.h     NULL,
NULL              553 libavcodec/wmavoice.c                 *best_hist_ptr = NULL;
NULL               54 libavcodec/wmv2.c     s->idsp.idct     = NULL;
NULL              495 libavcodec/wmv2dec.c             if ((ret = ff_msmpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, NULL)) < 0) {
NULL               60 libavcodec/wrapped_avframe.c                                 wrapped_avframe_release_buffer, NULL,
NULL              132 libavcodec/x86/idctdsp_init.c                 c->idct_add  = NULL;
NULL              139 libavcodec/x86/idctdsp_init.c                 c->idct_add  = NULL;
NULL              150 libavcodec/x86/idctdsp_init.c                 c->idct_add  = NULL;
NULL              156 libavcodec/x86/idctdsp_init.c                 c->idct_add  = NULL;
NULL              343 libavcodec/x86/vc1dsp_mmx.c          { NULL, vc1_put_ver_16b_shift1_mmx, ff_vc1_put_ver_16b_shift2_mmx, vc1_put_ver_16b_shift3_mmx };\
NULL              345 libavcodec/x86/vc1dsp_mmx.c          { NULL, OP ## vc1_hor_16b_shift1_mmx, ff_vc1_ ## OP ## hor_16b_shift2_ ## INSTR, OP ## vc1_hor_16b_shift3_mmx };\
NULL              347 libavcodec/x86/vc1dsp_mmx.c          { NULL, OP ## vc1_shift1_mmx, OP ## vc1_shift2_mmx, OP ## vc1_shift3_mmx };\
NULL              139 libavcodec/xwddec.c     if ((ret = av_image_check_size(avctx->width, avctx->height, 0, NULL)) < 0)
NULL              185 libavcodec/yop.c         s->low_nibble = NULL;
NULL              217 libavcodec/yop.c     s->low_nibble = NULL;
NULL              438 libavcodec/zmbv.c         c->decode_xor = NULL;
NULL              490 libavcodec/zmbv.c             c->decode_xor = NULL;
NULL              190 libavcodec/zmbvenc.c     palptr = (avctx->pix_fmt == AV_PIX_FMT_PAL8) ? (uint32_t *)p->data[1] : NULL;
NULL              254 libavdevice/alsa.c     snd_pcm_hw_params_get_period_size_min(hw_params, &period_size, NULL);
NULL              257 libavdevice/alsa.c     res = snd_pcm_hw_params_set_period_size_near(h, hw_params, &period_size, NULL);
NULL              356 libavdevice/alsa.c     char *name = NULL, *descr = NULL, *io = NULL, *tmp;
NULL              357 libavdevice/alsa.c     AVDeviceInfo *new_device = NULL;
NULL              388 libavdevice/alsa.c             new_device = NULL;
NULL               67 libavdevice/alsa_dec.c     st = avformat_new_stream(s1, NULL);
NULL              147 libavdevice/alsa_dec.c     { NULL },
NULL               53 libavdevice/alsa_enc.c     AVStream *st = NULL;
NULL              617 libavdevice/android_camera.c     ret = ACameraCaptureSession_setRepeatingRequest(ctx->capture_session, NULL, 1, &ctx->capture_request, NULL);
NULL              670 libavdevice/android_camera.c     st = avformat_new_stream(avctx, NULL);
NULL              707 libavdevice/android_camera.c         ctx->capture_session = NULL;
NULL              713 libavdevice/android_camera.c         ctx->capture_request = NULL;
NULL              718 libavdevice/android_camera.c         ctx->camera_output_target = NULL;
NULL              725 libavdevice/android_camera.c         ctx->capture_session_output = NULL;
NULL              730 libavdevice/android_camera.c         ctx->image_reader_window = NULL;
NULL              735 libavdevice/android_camera.c         ctx->capture_session_output_container = NULL;
NULL              740 libavdevice/android_camera.c         ctx->camera_dev = NULL;
NULL              745 libavdevice/android_camera.c         ctx->image_reader = NULL;
NULL              750 libavdevice/android_camera.c         ctx->camera_metadata = NULL;
NULL              757 libavdevice/android_camera.c         ctx->camera_mgr = NULL;
NULL              847 libavdevice/android_camera.c     { "video_size", "set video size given as a string such as 640x480 or hd720", OFFSET(requested_width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
NULL              851 libavdevice/android_camera.c     { NULL },
NULL               50 libavdevice/avdevice.c         {.str = NULL}, -1, INT_MAX, E|D|V },
NULL               52 libavdevice/avdevice.c         {.str = NULL}, -1, INT_MAX, E|D|V },
NULL               55 libavdevice/avdevice.c     { NULL }
NULL              195 libavdevice/avdevice.c         *device_list = NULL;
NULL              215 libavdevice/avdevice.c     AVDictionary *tmp = NULL;
NULL              231 libavdevice/avdevice.c     AVFormatContext *s = NULL;
NULL              242 libavdevice/avdevice.c     AVFormatContext *s = NULL;
NULL              245 libavdevice/avdevice.c     if ((ret = avformat_alloc_output_context2(&s, device, device_name, NULL)) < 0)
NULL              144 libavdevice/bktr.c         av_log(NULL, AV_LOG_ERROR, "Warning. Tuner not opened, continuing: %s\n", strerror(errno));
NULL              150 libavdevice/bktr.c         av_log(NULL, AV_LOG_ERROR, "%s: %s\n", video_device, errbuf);
NULL              175 libavdevice/bktr.c         av_log(NULL, AV_LOG_ERROR, "METEORSETGEO: %s\n", errbuf);
NULL              182 libavdevice/bktr.c         av_log(NULL, AV_LOG_ERROR, "BT848SFMT: %s\n", errbuf);
NULL              190 libavdevice/bktr.c         av_log(NULL, AV_LOG_ERROR, "METEORSINPUT: %s\n", errbuf);
NULL              201 libavdevice/bktr.c         av_log(NULL, AV_LOG_ERROR, "mmap: %s\n", errbuf);
NULL              208 libavdevice/bktr.c             av_log(NULL, AV_LOG_ERROR, "TVTUNER_SETFREQ: %s\n", strerror(errno));
NULL              213 libavdevice/bktr.c         av_log(NULL, AV_LOG_ERROR, "TVTUNER_SAUDIO: %s\n", strerror(errno));
NULL              233 libavdevice/bktr.c                 av_log(NULL, AV_LOG_INFO,
NULL              281 libavdevice/bktr.c     st = avformat_new_stream(s1, NULL);
NULL              339 libavdevice/bktr.c     { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL              340 libavdevice/bktr.c     { NULL },
NULL               52 libavdevice/caca.c         c->display = NULL;
NULL               56 libavdevice/caca.c         c->dither = NULL;
NULL               60 libavdevice/caca.c         c->canvas = NULL;
NULL              206 libavdevice/caca.c     { "window_size",  "set window forced size",  OFFSET(window_width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL }, 0, 0, ENC},
NULL              207 libavdevice/caca.c     { "window_title", "set window title",        OFFSET(window_title), AV_OPT_TYPE_STRING,     {.str = NULL }, 0, 0, ENC },
NULL              208 libavdevice/caca.c     { "driver",       "set display driver",      OFFSET(driver),    AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, ENC },
NULL              214 libavdevice/caca.c     { "list_dither", "list available dither options", OFFSET(list_dither), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 1, ENC, "list_dither" },
NULL              215 libavdevice/caca.c     { "algorithms",   NULL, 0, AV_OPT_TYPE_CONST, {.str = "algorithms"}, 0, 0, ENC, "list_dither" },
NULL              216 libavdevice/caca.c     { "antialiases",  NULL, 0, AV_OPT_TYPE_CONST, {.str = "antialiases"},0, 0, ENC, "list_dither" },
NULL              217 libavdevice/caca.c     { "charsets",     NULL, 0, AV_OPT_TYPE_CONST, {.str = "charsets"},   0, 0, ENC, "list_dither" },
NULL              218 libavdevice/caca.c     { "colors",       NULL, 0, AV_OPT_TYPE_CONST, {.str = "colors"},     0, 0, ENC, "list_dither" },
NULL              219 libavdevice/caca.c     { NULL },
NULL               61 libavdevice/decklink_common.cpp     if (CoInitialize(NULL) < 0) {
NULL               63 libavdevice/decklink_common.cpp         return NULL;
NULL               66 libavdevice/decklink_common.cpp     if (CoCreateInstance(CLSID_CDeckLinkIterator, NULL, CLSCTX_ALL,
NULL               68 libavdevice/decklink_common.cpp         iter = NULL;
NULL               85 libavdevice/decklink_common.cpp     *s = NULL;
NULL              153 libavdevice/decklink_common.cpp         IDeckLinkProfileManager *manager = NULL;
NULL              163 libavdevice/decklink_common.cpp             IDeckLinkProfile *profile = NULL;
NULL              308 libavdevice/decklink_common.cpp                                            &support, NULL) != S_OK)
NULL              313 libavdevice/decklink_common.cpp                                                                   &support, NULL) != S_OK || support != bmdDisplayModeSupported) {
NULL              317 libavdevice/decklink_common.cpp                                                &support, NULL) != S_OK) {
NULL              339 libavdevice/decklink_common.cpp     IDeckLink *dl = NULL;
NULL              349 libavdevice/decklink_common.cpp         const char *display_name = NULL;
NULL              350 libavdevice/decklink_common.cpp         const char *unique_name = NULL;
NULL              351 libavdevice/decklink_common.cpp         AVDeviceInfo *new_device = NULL;
NULL              411 libavdevice/decklink_common.cpp     struct AVDeviceInfoList *device_list = NULL;
NULL              501 libavdevice/decklink_common.cpp     IDeckLink *dl = NULL;
NULL              507 libavdevice/decklink_common.cpp         const char *display_name = NULL;
NULL              508 libavdevice/decklink_common.cpp         const char *unique_name = NULL;
NULL               47 libavdevice/decklink_common.h     char *s = NULL;
NULL              337 libavdevice/decklink_dec.cpp         return NULL;
NULL              344 libavdevice/decklink_dec.cpp         return NULL;
NULL              353 libavdevice/decklink_dec.cpp         return NULL;
NULL              359 libavdevice/decklink_dec.cpp         return NULL;
NULL              364 libavdevice/decklink_dec.cpp         return NULL;
NULL              369 libavdevice/decklink_dec.cpp         return NULL;
NULL              375 libavdevice/decklink_dec.cpp         return NULL;
NULL              381 libavdevice/decklink_dec.cpp         return NULL;
NULL              387 libavdevice/decklink_dec.cpp         return NULL;
NULL              392 libavdevice/decklink_dec.cpp         return NULL;
NULL              398 libavdevice/decklink_dec.cpp         return NULL;
NULL              402 libavdevice/decklink_dec.cpp     if (cc == NULL) {
NULL              404 libavdevice/decklink_dec.cpp         return NULL;
NULL              474 libavdevice/decklink_dec.cpp     pthread_mutex_init(&q->mutex, NULL);
NULL              475 libavdevice/decklink_dec.cpp     pthread_cond_init(&q->cond, NULL);
NULL              485 libavdevice/decklink_dec.cpp     for (pkt = q->first_pkt; pkt != NULL; pkt = pkt1) {
NULL              490 libavdevice/decklink_dec.cpp     q->last_pkt   = NULL;
NULL              491 libavdevice/decklink_dec.cpp     q->first_pkt  = NULL;
NULL              535 libavdevice/decklink_dec.cpp     pkt1->next = NULL;
NULL              567 libavdevice/decklink_dec.cpp                 q->last_pkt = NULL;
NULL              770 libavdevice/decklink_dec.cpp                     const char *tc = NULL;
NULL              778 libavdevice/decklink_dec.cpp                         AVDictionary* metadata_dict = NULL;
NULL             1123 libavdevice/decklink_dec.cpp     st = avformat_new_stream(avctx, NULL);
NULL             1136 libavdevice/decklink_dec.cpp     st = avformat_new_stream(avctx, NULL);
NULL             1206 libavdevice/decklink_dec.cpp         st = avformat_new_stream(avctx, NULL);
NULL             1261 libavdevice/decklink_dec.cpp     if (ctx->tc_format && !(av_dict_get(ctx->video_st->metadata, "timecode", NULL, 0))) {
NULL               35 libavdevice/decklink_dec_c.c     { "format_code",  "set format by fourcc"    , OFFSET(format_code),  AV_OPT_TYPE_STRING, { .str = NULL}, 0, 0, DEC },
NULL               37 libavdevice/decklink_dec_c.c     { "uyvy422",       NULL,   0,  AV_OPT_TYPE_CONST, { .i64 = MKBETAG('2','v','u','y') }, 0, 0, DEC, "raw_format"},
NULL               38 libavdevice/decklink_dec_c.c     { "yuv422p10",     NULL,   0,  AV_OPT_TYPE_CONST, { .i64 = MKBETAG('v','2','1','0') }, 0, 0, DEC, "raw_format"},
NULL               39 libavdevice/decklink_dec_c.c     { "argb",          NULL,   0,  AV_OPT_TYPE_CONST, { .i64 = 32                       }, 0, 0, DEC, "raw_format"},
NULL               40 libavdevice/decklink_dec_c.c     { "bgra",          NULL,   0,  AV_OPT_TYPE_CONST, { .i64 = MKBETAG('B','G','R','A') }, 0, 0, DEC, "raw_format"},
NULL               41 libavdevice/decklink_dec_c.c     { "rgb10",         NULL,   0,  AV_OPT_TYPE_CONST, { .i64 = MKBETAG('r','2','1','0') }, 0, 0, DEC, "raw_format"},
NULL               43 libavdevice/decklink_dec_c.c     { "standard",     NULL,                                           0,  AV_OPT_TYPE_CONST, { .i64 = 0x7fff9fffeLL}, 0, 0,    DEC, "teletext_lines"},
NULL               44 libavdevice/decklink_dec_c.c     { "all",          NULL,                                           0,  AV_OPT_TYPE_CONST, { .i64 = 0x7ffffffffLL}, 0, 0,    DEC, "teletext_lines"},
NULL               47 libavdevice/decklink_dec_c.c     { "unset",         NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 0}, 0, 0,    DEC, "duplex_mode"},
NULL               48 libavdevice/decklink_dec_c.c     { "half",          NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 1}, 0, 0,    DEC, "duplex_mode"},
NULL               49 libavdevice/decklink_dec_c.c     { "full",          NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 2}, 0, 0,    DEC, "duplex_mode"},
NULL               51 libavdevice/decklink_dec_c.c     { "none",          NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 0}, 0, 0,    DEC, "tc_format"},
NULL               52 libavdevice/decklink_dec_c.c     { "rp188vitc",     NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 1}, 0, 0,    DEC, "tc_format"},
NULL               53 libavdevice/decklink_dec_c.c     { "rp188vitc2",    NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 2}, 0, 0,    DEC, "tc_format"},
NULL               54 libavdevice/decklink_dec_c.c     { "rp188ltc",      NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 3}, 0, 0,    DEC, "tc_format"},
NULL               55 libavdevice/decklink_dec_c.c     { "rp188any",      NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 4}, 0, 0,    DEC, "tc_format"},
NULL               56 libavdevice/decklink_dec_c.c     { "vitc",          NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 5}, 0, 0,    DEC, "tc_format"},
NULL               57 libavdevice/decklink_dec_c.c     { "vitc2",         NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 6}, 0, 0,    DEC, "tc_format"},
NULL               58 libavdevice/decklink_dec_c.c     { "serial",        NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 7}, 0, 0,    DEC, "tc_format"},
NULL               60 libavdevice/decklink_dec_c.c     { "unset",         NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 0}, 0, 0,    DEC, "video_input"},
NULL               61 libavdevice/decklink_dec_c.c     { "sdi",           NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 1}, 0, 0,    DEC, "video_input"},
NULL               62 libavdevice/decklink_dec_c.c     { "hdmi",          NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 2}, 0, 0,    DEC, "video_input"},
NULL               63 libavdevice/decklink_dec_c.c     { "optical_sdi",   NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 3}, 0, 0,    DEC, "video_input"},
NULL               64 libavdevice/decklink_dec_c.c     { "component",     NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 4}, 0, 0,    DEC, "video_input"},
NULL               65 libavdevice/decklink_dec_c.c     { "composite",     NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 5}, 0, 0,    DEC, "video_input"},
NULL               66 libavdevice/decklink_dec_c.c     { "s_video",       NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 6}, 0, 0,    DEC, "video_input"},
NULL               68 libavdevice/decklink_dec_c.c     { "unset",         NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 0}, 0, 0,    DEC, "audio_input"},
NULL               69 libavdevice/decklink_dec_c.c     { "embedded",      NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 1}, 0, 0,    DEC, "audio_input"},
NULL               70 libavdevice/decklink_dec_c.c     { "aes_ebu",       NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 2}, 0, 0,    DEC, "audio_input"},
NULL               71 libavdevice/decklink_dec_c.c     { "analog",        NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 3}, 0, 0,    DEC, "audio_input"},
NULL               72 libavdevice/decklink_dec_c.c     { "analog_xlr",    NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 4}, 0, 0,    DEC, "audio_input"},
NULL               73 libavdevice/decklink_dec_c.c     { "analog_rca",    NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 5}, 0, 0,    DEC, "audio_input"},
NULL               74 libavdevice/decklink_dec_c.c     { "microphone",    NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = 6}, 0, 0,    DEC, "audio_input"},
NULL               77 libavdevice/decklink_dec_c.c     { "audio",         NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = PTS_SRC_AUDIO    }, 0, 0, DEC, "pts_source"},
NULL               78 libavdevice/decklink_dec_c.c     { "video",         NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = PTS_SRC_VIDEO    }, 0, 0, DEC, "pts_source"},
NULL               79 libavdevice/decklink_dec_c.c     { "reference",     NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = PTS_SRC_REFERENCE}, 0, 0, DEC, "pts_source"},
NULL               80 libavdevice/decklink_dec_c.c     { "wallclock",     NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = PTS_SRC_WALLCLOCK}, 0, 0, DEC, "pts_source"},
NULL               81 libavdevice/decklink_dec_c.c     { "abs_wallclock", NULL,                                          0,  AV_OPT_TYPE_CONST, { .i64 = PTS_SRC_ABS_WALLCLOCK}, 0, 0, DEC, "pts_source"},
NULL               88 libavdevice/decklink_dec_c.c     { NULL },
NULL               52 libavdevice/decklink_enc.cpp         _ctx(ctx), _avframe(avframe), _avpacket(NULL), _codec_id(codec_id), _ancillary(NULL), _height(height), _width(width),  _refs(1) { }
NULL               54 libavdevice/decklink_enc.cpp         _ctx(ctx), _avframe(NULL), _avpacket(avpacket), _codec_id(codec_id), _ancillary(NULL), _height(height), _width(width), _refs(1) { }
NULL              220 libavdevice/decklink_enc.cpp     pthread_mutex_init(&ctx->mutex, NULL);
NULL              221 libavdevice/decklink_enc.cpp     pthread_cond_init(&ctx->cond, NULL);
NULL              436 libavdevice/decklink_enc.cpp     AVFrame *avframe = NULL, *tmp = (AVFrame *)pkt->data;
NULL              437 libavdevice/decklink_enc.cpp     AVPacket *avpacket = NULL;
NULL              536 libavdevice/decklink_enc.cpp                                        bmdAudioSampleRate48kHz, NULL) != S_OK) {
NULL               35 libavdevice/decklink_enc_c.c     { "unset"       ,  NULL                     , 0                   , AV_OPT_TYPE_CONST , { .i64 = 0   }, 0, 0, ENC, "duplex_mode"},
NULL               36 libavdevice/decklink_enc_c.c     { "half"        ,  NULL                     , 0                   , AV_OPT_TYPE_CONST , { .i64 = 1   }, 0, 0, ENC, "duplex_mode"},
NULL               37 libavdevice/decklink_enc_c.c     { "full"        ,  NULL                     , 0                   , AV_OPT_TYPE_CONST , { .i64 = 2   }, 0, 0, ENC, "duplex_mode"},
NULL               39 libavdevice/decklink_enc_c.c     { "unset"       ,  NULL                     , 0                        , AV_OPT_TYPE_CONST, { .i64 = INT_MIN },       0,       0, ENC, "timing_offset"},
NULL               40 libavdevice/decklink_enc_c.c     { NULL },
NULL               78 libavdevice/dshow.c             while (IEnumFilters_Next(fenum, 1, &f, NULL) == S_OK) {
NULL              134 libavdevice/dshow.c     char *s = NULL;
NULL              212 libavdevice/dshow.c     IBaseFilter *device_filter = NULL;
NULL              213 libavdevice/dshow.c     IEnumMoniker *classenum = NULL;
NULL              214 libavdevice/dshow.c     IMoniker *m = NULL;
NULL              233 libavdevice/dshow.c     while (!device_filter && IEnumMoniker_Next(classenum, 1, &m, NULL) == S_OK) {
NULL              234 libavdevice/dshow.c         IPropertyBag *bag = NULL;
NULL              235 libavdevice/dshow.c         char *friendly_name = NULL;
NULL              236 libavdevice/dshow.c         char *unique_name = NULL;
NULL              238 libavdevice/dshow.c         IBindCtx *bind_ctx = NULL;
NULL              239 libavdevice/dshow.c         LPOLESTR olestr = NULL;
NULL              240 libavdevice/dshow.c         LPMALLOC co_malloc = NULL;
NULL              250 libavdevice/dshow.c         r = IMoniker_GetDisplayName(m, bind_ctx, NULL, &olestr);
NULL              265 libavdevice/dshow.c         r = IPropertyBag_Read(bag, L"FriendlyName", &var, NULL);
NULL              281 libavdevice/dshow.c                 unique_name = NULL;
NULL              326 libavdevice/dshow.c     IAMStreamConfig *config = NULL;
NULL              327 libavdevice/dshow.c     AM_MEDIA_TYPE *type = NULL;
NULL              329 libavdevice/dshow.c     void *caps = NULL;
NULL              353 libavdevice/dshow.c             const AVCodecTag *const tags[] = { avformat_get_riff_video_tags(), NULL };
NULL              472 libavdevice/dshow.c     IAMBufferNegotiation *buffer_negotiation = NULL;
NULL              474 libavdevice/dshow.c     IAMStreamConfig *config = NULL;
NULL              475 libavdevice/dshow.c     AM_MEDIA_TYPE *type = NULL;
NULL              514 libavdevice/dshow.c     ISpecifyPropertyPages *property_pages = NULL;
NULL              515 libavdevice/dshow.c     IUnknown *device_filter_iunknown = NULL;
NULL              537 libavdevice/dshow.c     hr = OleCreatePropertyFrame(NULL, 0, 0, filter_info.achName, 1, &device_filter_iunknown, ca_guid.cElems,
NULL              538 libavdevice/dshow.c         ca_guid.pElems, 0, 0, NULL);
NULL              568 libavdevice/dshow.c     IPin *device_pin = NULL;
NULL              598 libavdevice/dshow.c     while (!device_pin && IEnumPins_Next(pins, 1, &pin, NULL) == S_OK) {
NULL              599 libavdevice/dshow.c         IKsPropertySet *p = NULL;
NULL              600 libavdevice/dshow.c         IEnumMediaTypes *types = NULL;
NULL              605 libavdevice/dshow.c         char *name_buf = NULL;
NULL              606 libavdevice/dshow.c         wchar_t *pin_id = NULL;
NULL              607 libavdevice/dshow.c         char *pin_buf = NULL;
NULL              618 libavdevice/dshow.c                                NULL, 0, &category, sizeof(GUID), &r2) != S_OK)
NULL              633 libavdevice/dshow.c             dshow_cycle_formats(avctx, devtype, pin, NULL);
NULL              662 libavdevice/dshow.c         while (!device_pin && IEnumMediaTypes_Next(types, 1, &type, NULL) == S_OK) {
NULL              712 libavdevice/dshow.c     IBaseFilter *device_filter = NULL;
NULL              713 libavdevice/dshow.c     char *device_unique_name = NULL;
NULL              719 libavdevice/dshow.c     if ((r = dshow_cycle_pins(avctx, devtype, sourcetype, device_filter, NULL)) < 0)
NULL              730 libavdevice/dshow.c     IBaseFilter *device_filter = NULL;
NULL              731 libavdevice/dshow.c     char *device_filter_unique_name = NULL;
NULL              733 libavdevice/dshow.c     IPin *device_pin = NULL;
NULL              734 libavdevice/dshow.c     libAVPin *capture_pin = NULL;
NULL              735 libavdevice/dshow.c     libAVFilter *capture_filter = NULL;
NULL              736 libavdevice/dshow.c     ICaptureGraphBuilder2 *graph_builder2 = NULL;
NULL              739 libavdevice/dshow.c     IStream *ifile_stream = NULL;
NULL              740 libavdevice/dshow.c     IStream *ofile_stream = NULL;
NULL              741 libavdevice/dshow.c     IPersistStream *pers_stream = NULL;
NULL              750 libavdevice/dshow.c         char *filename = NULL;
NULL              797 libavdevice/dshow.c     r = IGraphBuilder_AddFilter(graph, device_filter, NULL);
NULL              821 libavdevice/dshow.c         char *filename = NULL;
NULL              870 libavdevice/dshow.c     r = CoCreateInstance(&CLSID_CaptureGraphBuilder2, NULL, CLSCTX_INPROC_SERVER,
NULL              882 libavdevice/dshow.c     r = ICaptureGraphBuilder2_RenderStream(graph_builder2, NULL, NULL, (IUnknown *) device_pin, NULL /* no intermediate filter */,
NULL              900 libavdevice/dshow.c     if (graph_builder2 != NULL)
NULL              945 libavdevice/dshow.c     type.pbFormat = NULL;
NULL              947 libavdevice/dshow.c     st = avformat_new_stream(avctx, NULL);
NULL              960 libavdevice/dshow.c         BITMAPINFOHEADER *bih = NULL;
NULL              990 libavdevice/dshow.c             const AVCodecTag *const tags[] = { avformat_get_riff_video_tags(), NULL };
NULL             1015 libavdevice/dshow.c         WAVEFORMATEX *fx = NULL;
NULL             1052 libavdevice/dshow.c         char *token = strtok(NULL, ":");
NULL             1053 libavdevice/dshow.c         tmp = NULL;
NULL             1060 libavdevice/dshow.c             device_name[0] = NULL;
NULL             1061 libavdevice/dshow.c             device_name[1] = NULL;
NULL             1082 libavdevice/dshow.c     IGraphBuilder *graph = NULL;
NULL             1083 libavdevice/dshow.c     ICreateDevEnum *devenum = NULL;
NULL             1084 libavdevice/dshow.c     IMediaControl *control = NULL;
NULL             1085 libavdevice/dshow.c     IMediaEvent *media_event = NULL;
NULL             1116 libavdevice/dshow.c     r = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER,
NULL             1124 libavdevice/dshow.c     r = CoCreateInstance(&CLSID_SystemDeviceEnum, NULL, CLSCTX_INPROC_SERVER,
NULL             1133 libavdevice/dshow.c         dshow_cycle_devices(avctx, devenum, VideoDevice, VideoSourceDevice, NULL, NULL);
NULL             1135 libavdevice/dshow.c         dshow_cycle_devices(avctx, devenum, AudioDevice, AudioSourceDevice, NULL, NULL);
NULL             1181 libavdevice/dshow.c     ctx->mutex = CreateMutex(NULL, 0, NULL);
NULL             1186 libavdevice/dshow.c     ctx->event[1] = CreateEvent(NULL, 1, 0, NULL);
NULL             1265 libavdevice/dshow.c     AVPacketList *pktl = NULL;
NULL             1295 libavdevice/dshow.c     { "video_size", "set video size given a string such as 640x480 or hd720.", OFFSET(requested_width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
NULL             1297 libavdevice/dshow.c     { "framerate", "set video frame rate", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL             1306 libavdevice/dshow.c     { "video_pin_name", "select video capture pin by name", OFFSET(video_pin_name),AV_OPT_TYPE_STRING, {.str = NULL},  0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL             1307 libavdevice/dshow.c     { "audio_pin_name", "select audio capture pin by name", OFFSET(audio_pin_name),AV_OPT_TYPE_STRING, {.str = NULL},  0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL             1316 libavdevice/dshow.c     { "audio_device_load", "load audio capture filter device (and properties) from file", OFFSET(audio_filter_load_file), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL             1317 libavdevice/dshow.c     { "audio_device_save", "save audio capture filter device (and properties) to file", OFFSET(audio_filter_save_file), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL             1318 libavdevice/dshow.c     { "video_device_load", "load video capture filter device (and properties) from file", OFFSET(video_filter_load_file), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL             1319 libavdevice/dshow.c     { "video_device_save", "save video capture filter device (and properties) to file", OFFSET(video_filter_save_file), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL             1320 libavdevice/dshow.c     { NULL },
NULL               91 libavdevice/dshow_capture.h     *ppvObject = NULL;                                                       \
NULL              142 libavdevice/dshow_capture.h     return NULL;                                                             \
NULL               26 libavdevice/dshow_common.c     uint8_t *pbFormat = NULL;
NULL               36 libavdevice/dshow_common.c     dst->pUnk = NULL;
NULL              162 libavdevice/dshow_common.c         dump_bih(NULL, &v->bmiHeader);
NULL              178 libavdevice/dshow_common.c         dump_bih(NULL, &v->bmiHeader);
NULL              144 libavdevice/dshow_crossbar.c     IAMCrossbar *cross_bar = NULL;
NULL              145 libavdevice/dshow_crossbar.c     IBaseFilter *cross_bar_base_filter = NULL;
NULL              146 libavdevice/dshow_crossbar.c     IAMTVTuner *tv_tuner_filter = NULL;
NULL              147 libavdevice/dshow_crossbar.c     IBaseFilter *tv_tuner_base_filter = NULL;
NULL              148 libavdevice/dshow_crossbar.c     IAMAudioInputMixer *tv_audio_filter = NULL;
NULL              149 libavdevice/dshow_crossbar.c     IBaseFilter *tv_audio_base_filter = NULL;
NULL              152 libavdevice/dshow_crossbar.c     hr = ICaptureGraphBuilder2_FindInterface(graph_builder2, &LOOK_UPSTREAM_ONLY, (const GUID *) NULL,
NULL              170 libavdevice/dshow_crossbar.c         hr = ICaptureGraphBuilder2_FindInterface(graph_builder2, &LOOK_UPSTREAM_ONLY, NULL,
NULL              182 libavdevice/dshow_crossbar.c         hr = ICaptureGraphBuilder2_FindInterface(graph_builder2, &LOOK_UPSTREAM_ONLY, NULL,
NULL              113 libavdevice/dshow_filter.c     libAVPin *found = NULL;
NULL               77 libavdevice/dshow_pin.c     this->connectedto = NULL;
NULL              154 libavdevice/dshow_pin.c     const AM_MEDIA_TYPE *type = NULL;
NULL              261 libavdevice/dshow_pin.c         this->type.pbFormat = NULL;
NULL              348 libavdevice/dshow_pin.c             av_log(NULL, AV_LOG_DEBUG,
NULL              362 libavdevice/dshow_pin.c     av_log(NULL, AV_LOG_VERBOSE, "dshow passing through packet of type %s size %8d "
NULL               77 libavdevice/fbdev_common.c     AVDeviceInfo *device = NULL;
NULL               90 libavdevice/fbdev_common.c                 av_log(NULL, AV_LOG_ERROR, "Could not open framebuffer device '%s': %s\n",
NULL              117 libavdevice/fbdev_common.c             default_device = NULL;
NULL               68 libavdevice/fbdev_dec.c     AVStream *st = NULL;
NULL               73 libavdevice/fbdev_dec.c     if (!(st = avformat_new_stream(avctx, NULL)))
NULL              122 libavdevice/fbdev_dec.c     fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_READ, MAP_SHARED, fbdev->fd, 0);
NULL              224 libavdevice/fbdev_dec.c     { NULL },
NULL               88 libavdevice/fbdev_enc.c     fbdev->data = mmap(NULL, fbdev->fixinfo.smem_len, PROT_WRITE, MAP_SHARED, fbdev->fd, 0);
NULL              197 libavdevice/fbdev_enc.c     { NULL }
NULL              125 libavdevice/gdigrab.c     HRGN region = NULL;
NULL              126 libavdevice/gdigrab.c     HRGN region_interior = NULL;
NULL              138 libavdevice/gdigrab.c     hwnd = CreateWindowEx(ex, WC_DIALOG, NULL, style, rect.left, rect.top,
NULL              140 libavdevice/gdigrab.c             NULL, NULL, NULL, NULL);
NULL              159 libavdevice/gdigrab.c     region = NULL;
NULL              191 libavdevice/gdigrab.c     gdigrab->region_hwnd = NULL;
NULL              227 libavdevice/gdigrab.c     HDC source_hdc = NULL;
NULL              228 libavdevice/gdigrab.c     HDC dest_hdc   = NULL;
NULL              230 libavdevice/gdigrab.c     HBITMAP hbmp   = NULL;
NULL              231 libavdevice/gdigrab.c     void *buffer   = NULL;
NULL              234 libavdevice/gdigrab.c     const char *name     = NULL;
NULL              235 libavdevice/gdigrab.c     AVStream   *st       = NULL;
NULL              249 libavdevice/gdigrab.c         hwnd = FindWindow(NULL, name);
NULL              262 libavdevice/gdigrab.c         hwnd = NULL;
NULL              370 libavdevice/gdigrab.c             &buffer, NULL, 0);
NULL              386 libavdevice/gdigrab.c     st = avformat_new_stream(s1, NULL);
NULL              464 libavdevice/gdigrab.c         info.hbmMask = NULL;
NULL              465 libavdevice/gdigrab.c         info.hbmColor = NULL;
NULL              474 libavdevice/gdigrab.c             icon = CopyCursor(LoadCursor(NULL, IDC_ARROW));
NULL              639 libavdevice/gdigrab.c     { "video_size", "set video frame size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
NULL              642 libavdevice/gdigrab.c     { NULL },
NULL              110 libavdevice/iec61883.c         av_log(NULL, AV_LOG_ERROR, "DV packet queue overrun, dropping.\n");
NULL              162 libavdevice/iec61883.c                 av_log(NULL, AV_LOG_ERROR, "Raw1394 poll error occurred.\n");
NULL              164 libavdevice/iec61883.c                 return NULL;
NULL              172 libavdevice/iec61883.c             av_log(NULL, AV_LOG_ERROR, "No more input data available\n");
NULL              181 libavdevice/iec61883.c             return NULL;
NULL              185 libavdevice/iec61883.c     return NULL;
NULL              366 libavdevice/iec61883.c         avformat_new_stream(context, NULL);
NULL              404 libavdevice/iec61883.c     if (pthread_mutex_init(&dv->mutex, NULL))
NULL              406 libavdevice/iec61883.c     if (pthread_cond_init(&dv->cond, NULL))
NULL              408 libavdevice/iec61883.c     if (pthread_create(&dv->receive_task_thread, NULL, iec61883_receive_task, dv))
NULL              454 libavdevice/iec61883.c     pthread_join(dv->receive_task_thread, NULL);
NULL              490 libavdevice/iec61883.c     { "dvguid", "select one of multiple DV devices by its GUID", offsetof(struct iec61883_data, device_guid), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
NULL              491 libavdevice/iec61883.c     { NULL },
NULL               90 libavdevice/jack.c     av_fifo_generic_read(self->new_pkts, &pkt, sizeof(pkt), NULL);
NULL              109 libavdevice/jack.c     av_fifo_generic_write(self->filled_pkts, &pkt, sizeof(pkt), NULL);
NULL              118 libavdevice/jack.c     self->client = NULL;
NULL              142 libavdevice/jack.c         av_fifo_generic_write(self->new_pkts, &pkt, sizeof(pkt), NULL);
NULL              216 libavdevice/jack.c         av_fifo_generic_read(*fifo, &pkt, sizeof(pkt), NULL);
NULL              245 libavdevice/jack.c     stream = avformat_new_stream(context, NULL);
NULL              316 libavdevice/jack.c     av_fifo_generic_read(self->filled_pkts, pkt, sizeof(*pkt), NULL);
NULL              334 libavdevice/jack.c     { NULL },
NULL              239 libavdevice/kmsgrab.c     drmModePlaneRes *plane_res = NULL;
NULL              240 libavdevice/kmsgrab.c     drmModePlane *plane = NULL;
NULL              241 libavdevice/kmsgrab.c     drmModeFB *fb = NULL;
NULL              258 libavdevice/kmsgrab.c                                  ctx->device_path, NULL, 0);
NULL              319 libavdevice/kmsgrab.c                 plane = NULL;
NULL              367 libavdevice/kmsgrab.c     stream = avformat_new_stream(avctx, NULL);
NULL              446 libavdevice/kmsgrab.c     { NULL },
NULL               73 libavdevice/lavfi.c         return NULL;
NULL              108 libavdevice/lavfi.c             if (!(st = avformat_new_stream(avctx, NULL)))
NULL              122 libavdevice/lavfi.c     AVFilterInOut *input_links = NULL, *output_links = NULL, *inout;
NULL              144 libavdevice/lavfi.c         AVIOContext *avio = NULL;
NULL              145 libavdevice/lavfi.c         AVDictionary *options = NULL;
NULL              149 libavdevice/lavfi.c         av_dict_set(&options, "protocol_whitelist", NULL, 0);
NULL              159 libavdevice/lavfi.c             av_bprint_finalize(&graph_file_pb, NULL);
NULL              241 libavdevice/lavfi.c         if (!(st = avformat_new_stream(avctx, NULL)))
NULL              264 libavdevice/lavfi.c                                                inout->name, NULL,
NULL              265 libavdevice/lavfi.c                                                NULL, lavfi->graph);
NULL              278 libavdevice/lavfi.c                                                inout->name, NULL,
NULL              279 libavdevice/lavfi.c                                                NULL, lavfi->graph);
NULL              305 libavdevice/lavfi.c         if (dump != NULL) {
NULL              398 libavdevice/lavfi.c         lavfi->subcc_packet.data = NULL;
NULL              455 libavdevice/lavfi.c         AVDictionaryEntry *e = NULL;
NULL              468 libavdevice/lavfi.c             av_bprint_finalize(&meta_buf, NULL);
NULL              472 libavdevice/lavfi.c         av_bprint_finalize(&meta_buf, NULL);
NULL              494 libavdevice/lavfi.c     { "graph",     "set libavfilter graph", OFFSET(graph_str),  AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL              495 libavdevice/lavfi.c     { "graph_file","set libavfilter graph filename", OFFSET(graph_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC},
NULL              496 libavdevice/lavfi.c     { "dumpgraph", "dump graph to stderr",  OFFSET(dump_graph), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL              497 libavdevice/lavfi.c     { NULL },
NULL               59 libavdevice/libcdio.c     char *err = NULL;
NULL               61 libavdevice/libcdio.c     if (!(st = avformat_new_stream(ctx, NULL)))
NULL              119 libavdevice/libcdio.c     char *err = NULL;
NULL              124 libavdevice/libcdio.c     buf = cdio_paranoia_read(s->paranoia, NULL);
NULL              131 libavdevice/libcdio.c         err = NULL;
NULL              136 libavdevice/libcdio.c         err = NULL;
NULL              174 libavdevice/libcdio.c     { NULL },
NULL               85 libavdevice/libdc1394.c     { NULL },
NULL              141 libavdevice/libdc1394.c     vst = avformat_new_stream(c, NULL);
NULL              172 libavdevice/libdc1394.c     const struct dc1394_frame_format *fmt = NULL;
NULL              173 libavdevice/libdc1394.c     const struct dc1394_frame_rate *fps = NULL;
NULL              112 libavdevice/openal-dec.c     if (!(devices = alcGetString(NULL, ALC_CAPTURE_DEVICE_SPECIFIER)))
NULL              130 libavdevice/openal-dec.c     AVStream *st = NULL;
NULL              131 libavdevice/openal-dec.c     AVCodecParameters *par = NULL;
NULL              142 libavdevice/openal-dec.c         alcCaptureOpenDevice(ctx->url[0] ? ctx->url : NULL,
NULL              150 libavdevice/openal-dec.c     if (!(st = avformat_new_stream(ctx, NULL))) {
NULL              240 libavdevice/openal-dec.c     {NULL},
NULL              255 libavdevice/openal-dec.c     .read_probe = NULL,
NULL              276 libavdevice/opengl_enc.c     { AV_PIX_FMT_NONE,       NULL }
NULL              317 libavdevice/opengl_enc.c             (ret = avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER, NULL , 0)) < 0) {
NULL              323 libavdevice/opengl_enc.c         ret = opengl_draw(h, NULL, 1, 0);
NULL              584 libavdevice/opengl_enc.c         { NULL,                          0, 0 }
NULL              637 libavdevice/opengl_enc.c     return NULL;
NULL              750 libavdevice/opengl_enc.c     opengl->glprocs.glShaderSource(shader, 1, &source, NULL);
NULL              759 libavdevice/opengl_enc.c                 opengl->glprocs.glGetShaderInfoLog(shader, result, NULL, log);
NULL              813 libavdevice/opengl_enc.c             opengl->glprocs.glGetProgramInfoLog(opengl->program, result, NULL, log);
NULL              854 libavdevice/opengl_enc.c                      opengl->format, opengl->type, NULL);
NULL              855 libavdevice/opengl_enc.c         OPENGL_ERROR_CHECK(NULL);
NULL              957 libavdevice/opengl_enc.c         if ((ret = avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER, NULL , 0)) < 0) {
NULL              975 libavdevice/opengl_enc.c     } else if ((ret = avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_DESTROY_WINDOW_BUFFER, NULL , 0)) < 0) {
NULL              987 libavdevice/opengl_enc.c         avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER, NULL , 0) < 0)
NULL             1112 libavdevice/opengl_enc.c         (ret = avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_DISPLAY_WINDOW_BUFFER, NULL , 0)) < 0) {
NULL             1152 libavdevice/opengl_enc.c         return NULL;
NULL             1207 libavdevice/opengl_enc.c         (ret = avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER, NULL , 0)) < 0) {
NULL             1248 libavdevice/opengl_enc.c         (ret = avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_DISPLAY_WINDOW_BUFFER, NULL , 0)) < 0) {
NULL             1282 libavdevice/opengl_enc.c     { "window_title", "set window title",       OFFSET(window_title), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, ENC },
NULL             1283 libavdevice/opengl_enc.c     { "window_size",  "set window size",        OFFSET(window_width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, ENC },
NULL             1284 libavdevice/opengl_enc.c     { NULL }
NULL               50 libavdevice/oss_dec.c     st = avformat_new_stream(s1, NULL);
NULL              124 libavdevice/oss_dec.c     { NULL },
NULL               83 libavdevice/pulse_audio_common.c         pa_context_set_state_callback(*pa_ctx, NULL, NULL);
NULL               89 libavdevice/pulse_audio_common.c     *pa_ml = NULL;
NULL               90 libavdevice/pulse_audio_common.c     *pa_ctx = NULL;
NULL               97 libavdevice/pulse_audio_common.c     pa_mainloop_api *pa_mlapi = NULL;
NULL              103 libavdevice/pulse_audio_common.c     *pa_ml = NULL;
NULL              104 libavdevice/pulse_audio_common.c     *pa_ctx = NULL;
NULL              117 libavdevice/pulse_audio_common.c     if (pa_context_connect(*pa_ctx, server, 0, NULL) < 0) {
NULL              123 libavdevice/pulse_audio_common.c         pa_mainloop_iterate(*pa_ml, 1, NULL);
NULL              139 libavdevice/pulse_audio_common.c     AVDeviceInfo *new_device = NULL;
NULL              199 libavdevice/pulse_audio_common.c     pa_mainloop *pa_ml = NULL;
NULL              200 libavdevice/pulse_audio_common.c     pa_operation *pa_op = NULL;
NULL              201 libavdevice/pulse_audio_common.c     pa_context *pa_ctx = NULL;
NULL              211 libavdevice/pulse_audio_common.c     devices->devices = NULL;
NULL              221 libavdevice/pulse_audio_common.c         pa_mainloop_iterate(pa_ml, 1, NULL);
NULL              230 libavdevice/pulse_audio_common.c         pa_mainloop_iterate(pa_ml, 1, NULL);
NULL              120 libavdevice/pulse_audio_dec.c     pd->stream = NULL;
NULL              126 libavdevice/pulse_audio_dec.c     pd->context = NULL;
NULL              130 libavdevice/pulse_audio_dec.c     pd->mainloop = NULL;
NULL              133 libavdevice/pulse_audio_dec.c     pd->timefilter = NULL;
NULL              142 libavdevice/pulse_audio_dec.c     char *device = NULL;
NULL              155 libavdevice/pulse_audio_dec.c     st = avformat_new_stream(s, NULL);
NULL              179 libavdevice/pulse_audio_dec.c     if (pa_context_connect(pd->context, pd->server, 0, NULL) < 0) {
NULL              276 libavdevice/pulse_audio_dec.c     const void *read_data = NULL;
NULL              308 libavdevice/pulse_audio_dec.c     pa_operation_unref(pa_stream_update_timing_info(pd->stream, NULL, NULL));
NULL              350 libavdevice/pulse_audio_dec.c     { "server",        "set PulseAudio server",                             OFFSET(server),        AV_OPT_TYPE_STRING, {.str = NULL},     0, 0, D },
NULL              358 libavdevice/pulse_audio_dec.c     { NULL },
NULL              122 libavdevice/pulse_audio_enc.c     pa_mainloop *ml = NULL;
NULL              123 libavdevice/pulse_audio_enc.c     pa_context *ctx = NULL;
NULL              136 libavdevice/pulse_audio_enc.c         pa_mainloop_iterate(ml, 1, NULL);
NULL              182 libavdevice/pulse_audio_enc.c     avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_BUFFER_OVERFLOW, NULL, 0);
NULL              188 libavdevice/pulse_audio_enc.c     avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_BUFFER_UNDERFLOW, NULL, 0);
NULL              418 libavdevice/pulse_audio_enc.c             pa_stream_set_state_callback(s->stream, NULL, NULL);
NULL              419 libavdevice/pulse_audio_enc.c             pa_stream_set_write_callback(s->stream, NULL, NULL);
NULL              420 libavdevice/pulse_audio_enc.c             pa_stream_set_overflow_callback(s->stream, NULL, NULL);
NULL              421 libavdevice/pulse_audio_enc.c             pa_stream_set_underflow_callback(s->stream, NULL, NULL);
NULL              423 libavdevice/pulse_audio_enc.c             s->stream = NULL;
NULL              427 libavdevice/pulse_audio_enc.c             pa_context_set_state_callback(s->ctx, NULL, NULL);
NULL              428 libavdevice/pulse_audio_enc.c             pa_context_set_subscribe_callback(s->ctx, NULL, NULL);
NULL              430 libavdevice/pulse_audio_enc.c             s->ctx = NULL;
NULL              435 libavdevice/pulse_audio_enc.c         s->mainloop = NULL;
NULL              444 libavdevice/pulse_audio_enc.c     AVStream *st = NULL;
NULL              525 libavdevice/pulse_audio_enc.c         s->mainloop = NULL;
NULL              547 libavdevice/pulse_audio_enc.c     if ((ret = pa_context_connect(s->ctx, s->server, 0, NULL)) < 0) {
NULL              559 libavdevice/pulse_audio_enc.c                               channel_map.channels ? &channel_map : NULL);
NULL              577 libavdevice/pulse_audio_enc.c                                           stream_flags, NULL, NULL)) < 0) {
NULL              658 libavdevice/pulse_audio_enc.c     if ((ret = pa_stream_write(s->stream, pkt->data, pkt->size, NULL, 0, PA_SEEK_RELATIVE)) < 0) {
NULL              762 libavdevice/pulse_audio_enc.c     { "server",          "set PulseAudio server",            OFFSET(server),          AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
NULL              764 libavdevice/pulse_audio_enc.c     { "stream_name",     "set stream description",           OFFSET(stream_name),     AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
NULL              765 libavdevice/pulse_audio_enc.c     { "device",          "set device name",                  OFFSET(device),          AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
NULL              770 libavdevice/pulse_audio_enc.c     { NULL }
NULL              143 libavdevice/sdl2.c     sdl->texture = NULL;
NULL              147 libavdevice/sdl2.c     sdl->renderer = NULL;
NULL              151 libavdevice/sdl2.c     sdl->window = NULL;
NULL              303 libavdevice/sdl2.c         ret = SDL_UpdateYUVTexture(sdl->texture, NULL,
NULL              324 libavdevice/sdl2.c         ret = SDL_UpdateTexture(sdl->texture, NULL, data[0], linesize[0]);
NULL              327 libavdevice/sdl2.c         av_log(NULL, AV_LOG_FATAL, "Unsupported pixel format\n");
NULL              332 libavdevice/sdl2.c     SDL_RenderCopy(sdl->renderer, sdl->texture, NULL, &sdl->texture_rect);
NULL              340 libavdevice/sdl2.c     { "window_title",      "set SDL window title",       OFFSET(window_title), AV_OPT_TYPE_STRING,     { .str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL              341 libavdevice/sdl2.c     { "window_size",       "set SDL window forced size", OFFSET(window_width), AV_OPT_TYPE_IMAGE_SIZE, { .str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL              347 libavdevice/sdl2.c     { NULL },
NULL               40 libavdevice/sndio_dec.c     st = avformat_new_stream(s1, NULL);
NULL              101 libavdevice/sndio_dec.c     { NULL },
NULL               54 libavdevice/timefilter.c         return NULL;
NULL               28 libavdevice/utils.c     *avctx = NULL;
NULL               52 libavdevice/utils.c         s->priv_data = NULL;
NULL              389 libavdevice/v4l2.c         s->buf_start[i] = v4l2_mmap(NULL, buf.length,
NULL              409 libavdevice/v4l2.c         av_log(NULL, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", av_err2str(res));
NULL              821 libavdevice/v4l2.c     if (av_strstart(p->filename, "/dev/video", NULL))
NULL              836 libavdevice/v4l2.c     st = avformat_new_stream(ctx, NULL);
NULL             1035 libavdevice/v4l2.c     AVDeviceInfo *device = NULL;
NULL             1103 libavdevice/v4l2.c     { "standard",     "set TV standard, used only by analog frame grabber",       OFFSET(standard),     AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0,       DEC },
NULL             1105 libavdevice/v4l2.c     { "video_size",   "set frame size",                                           OFFSET(width),        AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL},  0, 0,   DEC },
NULL             1106 libavdevice/v4l2.c     { "pixel_format", "set preferred pixel format",                               OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       DEC },
NULL             1107 libavdevice/v4l2.c     { "input_format", "set preferred pixel format (for raw video) or codec name", OFFSET(pixel_format), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       DEC },
NULL             1108 libavdevice/v4l2.c     { "framerate",    "set frame rate",                                           OFFSET(framerate),    AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       DEC },
NULL             1124 libavdevice/v4l2.c     { NULL },
NULL              252 libavdevice/vfwcap.c     BITMAPINFO *bi = NULL;
NULL              275 libavdevice/vfwcap.c     ctx->hwnd = capCreateCaptureWindow(NULL, 0, 0, 0, 0, 0, HWND_MESSAGE, 0);
NULL              303 libavdevice/vfwcap.c     st = avformat_new_stream(s, NULL);
NULL              414 libavdevice/vfwcap.c     ctx->mutex = CreateMutex(NULL, 0, NULL);
NULL              419 libavdevice/vfwcap.c     ctx->event = CreateEvent(NULL, 1, 0, NULL);
NULL              442 libavdevice/vfwcap.c     AVPacketList *pktl = NULL;
NULL              471 libavdevice/vfwcap.c     { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
NULL              473 libavdevice/vfwcap.c     { NULL },
NULL               87 libavdevice/xcbgrab.c     { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL }, 0, 0, D },
NULL               95 libavdevice/xcbgrab.c     { NULL },
NULL              158 libavdevice/xcbgrab.c     xcb_generic_error_t *e = NULL;
NULL              222 libavdevice/xcbgrab.c     reply = xcb_shm_query_version_reply(conn, cookie, NULL);
NULL              246 libavdevice/xcbgrab.c         return NULL;
NULL              250 libavdevice/xcbgrab.c     data = shmat(id, NULL, 0);
NULL              253 libavdevice/xcbgrab.c         return NULL;
NULL              268 libavdevice/xcbgrab.c     xcb_generic_error_t *e = NULL;
NULL              319 libavdevice/xcbgrab.c     reply  = xcb_xfixes_query_version_reply(conn, cookie, NULL);
NULL              344 libavdevice/xcbgrab.c     ci = xcb_xfixes_get_cursor_image_reply(gr->conn, cc, NULL);
NULL              417 libavdevice/xcbgrab.c     xcb_query_pointer_reply_t *p  = NULL;
NULL              418 libavdevice/xcbgrab.c     xcb_get_geometry_reply_t *geo = NULL;
NULL              427 libavdevice/xcbgrab.c         p   = xcb_query_pointer_reply(c->conn, pc, NULL);
NULL              428 libavdevice/xcbgrab.c         geo = xcb_get_geometry_reply(c->conn, gc, NULL);
NULL              475 libavdevice/xcbgrab.c     xcb_screen_t *screen     = NULL;
NULL              542 libavdevice/xcbgrab.c     AVStream *st      = avformat_new_stream(s, NULL);
NULL              558 libavdevice/xcbgrab.c     geo = xcb_get_geometry_reply(c->conn, gc, NULL);
NULL              598 libavdevice/xcbgrab.c                                            c->conn, allocate_shm_buffer, NULL);
NULL              686 libavdevice/xcbgrab.c     c->conn = xcb_connect(display_name[0] ? display_name : NULL, &screen_num);
NULL              361 libavdevice/xv.c     { "display_name", "set display name",       OFFSET(display_name), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL              363 libavdevice/xv.c     { "window_size",  "set window forced size", OFFSET(window_width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL              364 libavdevice/xv.c     { "window_title", "set window title",       OFFSET(window_title), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL              367 libavdevice/xv.c     { NULL }
NULL               43 libavfilter/aeval.c     NULL
NULL               82 libavfilter/aeval.c static double (* const aeval_func1[])(void *, double) = { val, NULL };
NULL               83 libavfilter/aeval.c static const char * const aeval_func1_names[] = { "val", NULL };
NULL               89 libavfilter/aeval.c     { "exprs",       "set the '|'-separated list of channels expressions", OFFSET(exprs), AV_OPT_TYPE_STRING, {.str = NULL}, .flags = FLAGS },
NULL               96 libavfilter/aeval.c     { "channel_layout", "set channel layout", OFFSET(chlayout_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               97 libavfilter/aeval.c     { "c",              "set channel layout", OFFSET(chlayout_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               98 libavfilter/aeval.c     { NULL }
NULL              108 libavfilter/aeval.c     char *expr, *last_expr = NULL, *buf;
NULL              109 libavfilter/aeval.c     double (* const *func1)(void *, double) = NULL;
NULL              110 libavfilter/aeval.c     const char * const *func1_names = NULL;
NULL              128 libavfilter/aeval.c                               sizeof(*eval->expr), NULL)) {             \
NULL              132 libavfilter/aeval.c         eval->expr[eval->nb_channels-1] = NULL;                         \
NULL              135 libavfilter/aeval.c                             NULL, NULL, 0, ctx);                        \
NULL              143 libavfilter/aeval.c         eval->expr[i] = NULL;
NULL              181 libavfilter/aeval.c             ret = ff_parse_channel_layout(&eval->chlayout, NULL, eval->chlayout_str, ctx);
NULL              217 libavfilter/aeval.c         eval->expr[i] = NULL;
NULL              303 libavfilter/aeval.c                 av_expr_eval(eval->expr[j], eval->var_values, NULL);
NULL              322 libavfilter/aeval.c     { NULL }
NULL              332 libavfilter/aeval.c     .inputs        = NULL,
NULL              343 libavfilter/aeval.c     { "exprs", "set the '|'-separated list of channels expressions", OFFSET(exprs), AV_OPT_TYPE_STRING, {.str = NULL}, .flags = FLAGS },
NULL              344 libavfilter/aeval.c     { "channel_layout", "set channel layout", OFFSET(chlayout_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              345 libavfilter/aeval.c     { "c",              "set channel layout", OFFSET(chlayout_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              346 libavfilter/aeval.c     { NULL }
NULL              353 libavfilter/aeval.c     AVFilterFormats *formats = NULL;
NULL              374 libavfilter/aeval.c         layouts = NULL;
NULL              466 libavfilter/aeval.c     { NULL }
NULL              475 libavfilter/aeval.c     { NULL }
NULL               40 libavfilter/af_acontrast.c     { NULL }
NULL               47 libavfilter/af_acontrast.c     AVFilterFormats *formats = NULL;
NULL               48 libavfilter/af_acontrast.c     AVFilterChannelLayouts *layouts = NULL;
NULL              200 libavfilter/af_acontrast.c     { NULL }
NULL              208 libavfilter/af_acontrast.c     { NULL }
NULL               54 libavfilter/af_acopy.c     { NULL }
NULL               62 libavfilter/af_acopy.c     { NULL }
NULL               78 libavfilter/af_acrossover.c     { NULL }
NULL               86 libavfilter/af_acrossover.c     char *p, *arg, *saveptr = NULL;
NULL              100 libavfilter/af_acrossover.c         p = NULL;
NULL              323 libavfilter/af_acrossover.c     ctx->internal->execute(ctx, filter_channels, NULL, NULL, FFMIN(inlink->channels,
NULL              328 libavfilter/af_acrossover.c         frames[i] = NULL;
NULL              337 libavfilter/af_acrossover.c     s->input_frame = NULL;
NULL              361 libavfilter/af_acrossover.c     { NULL }
NULL              373 libavfilter/af_acrossover.c     .outputs        = NULL,
NULL               87 libavfilter/af_acrusher.c     { NULL }
NULL              342 libavfilter/af_acrusher.c     { NULL }
NULL              350 libavfilter/af_acrusher.c     { NULL }
NULL              103 libavfilter/af_adeclick.c     { NULL }
NULL              110 libavfilter/af_adeclick.c     AVFilterFormats *formats = NULL;
NULL              111 libavfilter/af_adeclick.c     AVFilterChannelLayouts *layouts = NULL;
NULL              567 libavfilter/af_adeclick.c     AVFrame *out = NULL;
NULL              581 libavfilter/af_adeclick.c     ret = ctx->internal->execute(ctx, filter_channel, &td, NULL, inlink->channels);
NULL              746 libavfilter/af_adeclick.c     { NULL }
NULL              754 libavfilter/af_adeclick.c     { NULL }
NULL              780 libavfilter/af_adeclick.c     { NULL }
NULL               57 libavfilter/af_adelay.c     { "delays", "set list of delays for each channel", OFFSET(delays), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, A },
NULL               59 libavfilter/af_adelay.c     { NULL }
NULL              134 libavfilter/af_adelay.c     char *p, *arg, *saveptr = NULL;
NULL              153 libavfilter/af_adelay.c         p = NULL;
NULL              254 libavfilter/af_adelay.c     AVFrame *frame = NULL;
NULL              337 libavfilter/af_adelay.c     { NULL }
NULL              345 libavfilter/af_adelay.c     { NULL }
NULL               32 libavfilter/af_aderivative.c     AVFilterFormats *formats = NULL;
NULL               33 libavfilter/af_aderivative.c     AVFilterChannelLayouts *layouts = NULL;
NULL              178 libavfilter/af_aderivative.c     { NULL }
NULL              186 libavfilter/af_aderivative.c     { NULL }
NULL               56 libavfilter/af_aecho.c     { NULL }
NULL               75 libavfilter/af_aecho.c     char *p, *saveptr = NULL;
NULL               81 libavfilter/af_aecho.c         p = NULL;
NULL              269 libavfilter/af_aecho.c     return av_samples_alloc_array_and_samples(&s->delayptrs, NULL,
NULL              367 libavfilter/af_aecho.c     { NULL }
NULL              376 libavfilter/af_aecho.c     { NULL }
NULL               55 libavfilter/af_aemphasis.c     { "reproduction",              NULL,            0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "mode" },
NULL               56 libavfilter/af_aemphasis.c     { "production",                NULL,            0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "mode" },
NULL               67 libavfilter/af_aemphasis.c     { NULL }
NULL              349 libavfilter/af_aemphasis.c     { NULL }
NULL              357 libavfilter/af_aemphasis.c     { NULL }
NULL              267 libavfilter/af_afade.c     { NULL }
NULL              333 libavfilter/af_afade.c     { NULL }
NULL              342 libavfilter/af_afade.c     { NULL }
NULL              390 libavfilter/af_afade.c     { NULL }
NULL              449 libavfilter/af_afade.c     AVFrame *in = NULL, *out, *cf[2] = { NULL };
NULL              618 libavfilter/af_afade.c     { NULL }
NULL              627 libavfilter/af_afade.c     { NULL }
NULL              163 libavfilter/af_afftdn.c     { NULL }
NULL              552 libavfilter/af_afftdn.c     char *p, *arg, *saveptr = NULL;
NULL              566 libavfilter/af_afftdn.c         p = NULL;
NULL             1163 libavfilter/af_afftdn.c     AVFrame *out = NULL, *in = NULL;
NULL             1221 libavfilter/af_afftdn.c     ctx->internal->execute(ctx, filter_channel, &td, NULL,
NULL             1276 libavfilter/af_afftdn.c     AVFrame *frame = NULL;
NULL             1335 libavfilter/af_afftdn.c             dnch->fft = NULL;
NULL             1337 libavfilter/af_afftdn.c             dnch->ifft = NULL;
NULL             1347 libavfilter/af_afftdn.c     AVFilterFormats *formats = NULL;
NULL             1348 libavfilter/af_afftdn.c     AVFilterChannelLayouts *layouts = NULL;
NULL             1410 libavfilter/af_afftdn.c     { NULL }
NULL             1418 libavfilter/af_afftdn.c     { NULL }
NULL               57 libavfilter/af_afftfilt.c static const char *const var_names[] = {            "sr",     "b",       "nb",        "ch",        "chs",   "pts",     "re",     "im", NULL };
NULL               90 libavfilter/af_afftfilt.c     { NULL },
NULL              120 libavfilter/af_afftfilt.c static const char *const func2_names[]    = { "real", "imag", NULL };
NULL              121 libavfilter/af_afftfilt.c double (*func2[])(void *, double, double) = {  realf,  imagf, NULL };
NULL              127 libavfilter/af_afftfilt.c     char *saveptr = NULL;
NULL              176 libavfilter/af_afftfilt.c         char *arg = av_strtok(ch == 0 ? args : NULL, "|", &saveptr);
NULL              179 libavfilter/af_afftfilt.c                             NULL, NULL, func2_names, func2, 0, ctx);
NULL              193 libavfilter/af_afftfilt.c     saveptr = NULL;
NULL              196 libavfilter/af_afftfilt.c         char *arg = av_strtok(ch == 0 ? args : NULL, "|", &saveptr);
NULL              199 libavfilter/af_afftfilt.c                             NULL, NULL, func2_names, func2, 0, ctx);
NULL              242 libavfilter/af_afftfilt.c     AVFrame *out, *in = NULL;
NULL              350 libavfilter/af_afftfilt.c     AVFrame *in = NULL;
NULL              468 libavfilter/af_afftfilt.c     { NULL }
NULL              476 libavfilter/af_afftfilt.c     { NULL }
NULL              212 libavfilter/af_afir.c     AVFrame *out = NULL;
NULL              223 libavfilter/af_afir.c     ctx->internal->execute(ctx, fir_channels, out, NULL, FFMIN(outlink->channels,
NULL              231 libavfilter/af_afir.c     s->in = NULL;
NULL              628 libavfilter/af_afir.c     AVFrame *in = NULL;
NULL              635 libavfilter/af_afir.c         AVFrame *ir = NULL;
NULL              743 libavfilter/af_afir.c         AVFilterChannelLayouts *mono = NULL;
NULL              960 libavfilter/af_afir.c     { NULL }
NULL               58 libavfilter/af_aformat.c     { NULL }
NULL               96 libavfilter/af_aformat.c     int ret = strtol(samplerate, NULL, 0);
NULL              137 libavfilter/af_aformat.c     { NULL }
NULL              145 libavfilter/af_aformat.c     { NULL }
NULL               87 libavfilter/af_agate.c     { NULL }
NULL              192 libavfilter/af_agate.c     AVFilterFormats *formats = NULL;
NULL              252 libavfilter/af_agate.c     { NULL }
NULL              260 libavfilter/af_agate.c     { NULL }
NULL              283 libavfilter/af_agate.c     AVFrame *out = NULL, *in[2] = { NULL };
NULL              349 libavfilter/af_agate.c     AVFilterChannelLayouts *layouts = NULL;
NULL              426 libavfilter/af_agate.c     { NULL }
NULL              435 libavfilter/af_agate.c     { NULL }
NULL              259 libavfilter/af_aiir.c     char *p, *arg, *old_str, *prev_arg = NULL, *saveptr = NULL;
NULL              274 libavfilter/af_aiir.c         p = NULL;
NULL              291 libavfilter/af_aiir.c     char *p, *arg, *old_str, *saveptr = NULL;
NULL              301 libavfilter/af_aiir.c         p = NULL;
NULL              316 libavfilter/af_aiir.c     char *p, *arg, *old_str, *saveptr = NULL;
NULL              326 libavfilter/af_aiir.c         p = NULL;
NULL              344 libavfilter/af_aiir.c     char *p, *arg, *old_str, *prev_arg = NULL, *saveptr = NULL;
NULL              363 libavfilter/af_aiir.c         p = NULL;
NULL             1095 libavfilter/af_aiir.c     ctx->internal->execute(ctx, s->iir_channel, &td, NULL, outlink->channels);
NULL             1220 libavfilter/af_aiir.c     { NULL }
NULL             1260 libavfilter/af_aiir.c     { NULL },
NULL               78 libavfilter/af_alimiter.c     { NULL }
NULL              354 libavfilter/af_alimiter.c     { NULL }
NULL              362 libavfilter/af_alimiter.c     { NULL }
NULL               53 libavfilter/af_amerge.c     { NULL }
NULL              131 libavfilter/af_amerge.c         layouts = NULL;
NULL              137 libavfilter/af_amerge.c     layouts = NULL;
NULL              227 libavfilter/af_amerge.c     AVFrame *outbuf, *inbuf[SWR_CH_MAX] = { NULL };
NULL              342 libavfilter/af_amerge.c     { NULL }
NULL              354 libavfilter/af_amerge.c     .inputs        = NULL,
NULL               88 libavfilter/af_amix.c         frame_list->end        = NULL;
NULL              119 libavfilter/af_amix.c                     frame_list->end = NULL;
NULL              140 libavfilter/af_amix.c     info->next       = NULL;
NULL              198 libavfilter/af_amix.c     { NULL }
NULL              427 libavfilter/af_amix.c     AVFrame *buf = NULL;
NULL              591 libavfilter/af_amix.c     AVFilterFormats *formats = NULL;
NULL              641 libavfilter/af_amix.c     { NULL }
NULL              653 libavfilter/af_amix.c     .inputs         = NULL,
NULL              196 libavfilter/af_amultiply.c     { NULL }
NULL              205 libavfilter/af_amultiply.c     { NULL }
NULL               81 libavfilter/af_anequalizer.c     { "params", NULL,                             OFFSET(args),        AV_OPT_TYPE_STRING,     {.str=""}, 0, 0, A|F },
NULL               89 libavfilter/af_anequalizer.c     { NULL }
NULL               97 libavfilter/af_anequalizer.c     char *colors, *color, *saveptr = NULL;
NULL              111 libavfilter/af_anequalizer.c         color = av_strtok(ch == 0 ? colors : NULL, " |", &saveptr);
NULL              590 libavfilter/af_anequalizer.c     char *saveptr = NULL;
NULL              605 libavfilter/af_anequalizer.c         char *arg = av_strtok(s->nb_filters == 0 ? args : NULL, "|", &saveptr);
NULL              763 libavfilter/af_anequalizer.c     { NULL }
NULL              775 libavfilter/af_anequalizer.c     .outputs       = NULL,
NULL               87 libavfilter/af_anlmdn.c     { NULL }
NULL               94 libavfilter/af_anlmdn.c     AVFilterFormats *formats = NULL;
NULL               95 libavfilter/af_anlmdn.c     AVFilterChannelLayouts *layouts = NULL;
NULL              261 libavfilter/af_anlmdn.c     AVFrame *out = NULL;
NULL              286 libavfilter/af_anlmdn.c         ctx->internal->execute(ctx, filter_channel, out, NULL, inlink->channels);
NULL              349 libavfilter/af_anlmdn.c     { NULL }
NULL              359 libavfilter/af_anlmdn.c     { NULL }
NULL               75 libavfilter/af_anlms.c     { NULL }
NULL              220 libavfilter/af_anlms.c         ctx->internal->execute(ctx, process_channels, out, NULL, FFMIN(ctx->outputs[0]->channels,
NULL              305 libavfilter/af_anlms.c     { NULL }
NULL              314 libavfilter/af_anlms.c     { NULL }
NULL               35 libavfilter/af_anull.c     { NULL }
NULL               43 libavfilter/af_anull.c     { NULL }
NULL               57 libavfilter/af_apad.c     { NULL }
NULL              158 libavfilter/af_apad.c     { NULL }
NULL              168 libavfilter/af_apad.c     { NULL }
NULL               65 libavfilter/af_aphaser.c     { "triangular",  NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_TRI}, 0, 0, FLAGS, "type" },
NULL               66 libavfilter/af_aphaser.c     { "t",           NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_TRI}, 0, 0, FLAGS, "type" },
NULL               67 libavfilter/af_aphaser.c     { "sinusoidal",  NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_SIN}, 0, 0, FLAGS, "type" },
NULL               68 libavfilter/af_aphaser.c     { "s",           NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_SIN}, 0, 0, FLAGS, "type" },
NULL               69 libavfilter/af_aphaser.c     { NULL }
NULL              281 libavfilter/af_aphaser.c     { NULL }
NULL              290 libavfilter/af_aphaser.c     { NULL }
NULL               64 libavfilter/af_apulsator.c     {   "sine",                 NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=SINE},    0,            0, FLAGS, "mode" },
NULL               65 libavfilter/af_apulsator.c     {   "triangle",             NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=TRIANGLE},0,            0, FLAGS, "mode" },
NULL               66 libavfilter/af_apulsator.c     {   "square",               NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=SQUARE},  0,            0, FLAGS, "mode" },
NULL               67 libavfilter/af_apulsator.c     {   "sawup",                NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=SAWUP},   0,            0, FLAGS, "mode" },
NULL               68 libavfilter/af_apulsator.c     {   "sawdown",              NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=SAWDOWN}, 0,            0, FLAGS, "mode" },
NULL               74 libavfilter/af_apulsator.c     {   "bpm",                  NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=UNIT_BPM},  0,          0, FLAGS, "timing" },
NULL               75 libavfilter/af_apulsator.c     {   "ms",                   NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=UNIT_MS},   0,          0, FLAGS, "timing" },
NULL               76 libavfilter/af_apulsator.c     {   "hz",                   NULL, 0,                 AV_OPT_TYPE_CONST,  {.i64=UNIT_HZ},   0,          0, FLAGS, "timing" },
NULL               80 libavfilter/af_apulsator.c     { NULL }
NULL              188 libavfilter/af_apulsator.c     AVFilterChannelLayouts *layout = NULL;
NULL              189 libavfilter/af_apulsator.c     AVFilterFormats *formats = NULL;
NULL              238 libavfilter/af_apulsator.c     { NULL }
NULL              246 libavfilter/af_apulsator.c     { NULL }
NULL               59 libavfilter/af_aresample.c         AVDictionaryEntry *e = NULL;
NULL              251 libavfilter/af_aresample.c     n_out = swr_convert(aresample->swr, outsamplesref->extended_data, n_out, final ? NULL : (void*)outsamplesref->extended_data, 0);
NULL              298 libavfilter/af_aresample.c     return prev ? NULL : swr_get_class();
NULL              304 libavfilter/af_aresample.c     return prev ? NULL : s->swr;
NULL              311 libavfilter/af_aresample.c     {"sample_rate", NULL, OFFSET(sample_rate_arg), AV_OPT_TYPE_INT, {.i64=0},  0,        INT_MAX, FLAGS },
NULL              312 libavfilter/af_aresample.c     {NULL}
NULL              330 libavfilter/af_aresample.c     { NULL }
NULL              340 libavfilter/af_aresample.c     { NULL }
NULL              197 libavfilter/af_arnndn.c         return NULL;
NULL              201 libavfilter/af_arnndn.c         return NULL;
NULL              207 libavfilter/af_arnndn.c         return NULL; \
NULL              221 libavfilter/af_arnndn.c         return NULL; \
NULL              245 libavfilter/af_arnndn.c         return NULL; \
NULL              251 libavfilter/af_arnndn.c             return NULL; \
NULL              261 libavfilter/af_arnndn.c         return NULL; \
NULL              269 libavfilter/af_arnndn.c                     return NULL; \
NULL              305 libavfilter/af_arnndn.c         return NULL;
NULL              313 libavfilter/af_arnndn.c     AVFilterFormats *formats = NULL;
NULL              314 libavfilter/af_arnndn.c     AVFilterChannelLayouts *layouts = NULL;
NULL              366 libavfilter/af_arnndn.c         ret = av_tx_init(&st->tx, &st->tx_fn, AV_TX_FLOAT_FFT, 0, WINDOW_SIZE, NULL, 0);
NULL              370 libavfilter/af_arnndn.c         ret = av_tx_init(&st->txi, &st->txi_fn, AV_TX_FLOAT_FFT, 1, WINDOW_SIZE, NULL, 0);
NULL              741 libavfilter/af_arnndn.c     celt_autocorr(x_lp, ac, NULL, 0, 4, len>>1);
NULL             1413 libavfilter/af_arnndn.c     AVFrame *out = NULL;
NULL             1424 libavfilter/af_arnndn.c     ctx->internal->execute(ctx, rnnoise_channels, &td, NULL, FFMIN(outlink->channels,
NULL             1435 libavfilter/af_arnndn.c     AVFrame *in = NULL;
NULL             1495 libavfilter/af_arnndn.c     s->model = NULL;
NULL             1515 libavfilter/af_arnndn.c     { NULL }
NULL             1523 libavfilter/af_arnndn.c     { NULL }
NULL             1530 libavfilter/af_arnndn.c     { "model", "set model name", OFFSET(model_name), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, AF },
NULL             1531 libavfilter/af_arnndn.c     { "m",     "set model name", OFFSET(model_name), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, AF },
NULL             1532 libavfilter/af_arnndn.c     { NULL }
NULL               50 libavfilter/af_asetnsamples.c     { NULL }
NULL               60 libavfilter/af_asetnsamples.c     AVFrame *frame = NULL, *pad_frame;
NULL              110 libavfilter/af_asetnsamples.c     { NULL }
NULL              118 libavfilter/af_asetnsamples.c     { NULL }
NULL               44 libavfilter/af_asetrate.c     {NULL},
NULL               97 libavfilter/af_asetrate.c     { NULL }
NULL              106 libavfilter/af_asetrate.c     { NULL }
NULL              245 libavfilter/af_ashowinfo.c     { NULL }
NULL              253 libavfilter/af_ashowinfo.c     { NULL }
NULL               53 libavfilter/af_asoftclip.c     { "tanh",                NULL,            0, AV_OPT_TYPE_CONST,  {.i64=ASC_TANH},   0,          0, A, "types" },
NULL               54 libavfilter/af_asoftclip.c     { "atan",                NULL,            0, AV_OPT_TYPE_CONST,  {.i64=ASC_ATAN},   0,          0, A, "types" },
NULL               55 libavfilter/af_asoftclip.c     { "cubic",               NULL,            0, AV_OPT_TYPE_CONST,  {.i64=ASC_CUBIC},  0,          0, A, "types" },
NULL               56 libavfilter/af_asoftclip.c     { "exp",                 NULL,            0, AV_OPT_TYPE_CONST,  {.i64=ASC_EXP},    0,          0, A, "types" },
NULL               57 libavfilter/af_asoftclip.c     { "alg",                 NULL,            0, AV_OPT_TYPE_CONST,  {.i64=ASC_ALG},    0,          0, A, "types" },
NULL               58 libavfilter/af_asoftclip.c     { "quintic",             NULL,            0, AV_OPT_TYPE_CONST,  {.i64=ASC_QUINTIC},0,          0, A, "types" },
NULL               59 libavfilter/af_asoftclip.c     { "sin",                 NULL,            0, AV_OPT_TYPE_CONST,  {.i64=ASC_SIN},    0,          0, A, "types" },
NULL               61 libavfilter/af_asoftclip.c     { NULL }
NULL               68 libavfilter/af_asoftclip.c     AVFilterFormats *formats = NULL;
NULL               69 libavfilter/af_asoftclip.c     AVFilterChannelLayouts *layouts = NULL;
NULL              281 libavfilter/af_asoftclip.c     ctx->internal->execute(ctx, filter_channels, &td, NULL, FFMIN(channels,
NULL              297 libavfilter/af_asoftclip.c     { NULL }
NULL              305 libavfilter/af_asoftclip.c     { NULL }
NULL               52 libavfilter/af_asr.c     { "hmm",   "set directory containing acoustic model files", OFFSET(hmm),    AV_OPT_TYPE_STRING, {.str=NULL},              .flags = FLAGS },
NULL               53 libavfilter/af_asr.c     { "dict",  "set pronunciation dictionary",                  OFFSET(dict),   AV_OPT_TYPE_STRING, {.str=NULL},              .flags = FLAGS },
NULL               54 libavfilter/af_asr.c     { "lm",    "set language model file",                       OFFSET(lm),     AV_OPT_TYPE_STRING, {.str=NULL},              .flags = FLAGS },
NULL               55 libavfilter/af_asr.c     { "lmctl", "set language model set",                        OFFSET(lmctl),  AV_OPT_TYPE_STRING, {.str=NULL},              .flags = FLAGS },
NULL               56 libavfilter/af_asr.c     { "lmname","set which language model to use",               OFFSET(lmname), AV_OPT_TYPE_STRING, {.str=NULL},              .flags = FLAGS },
NULL               58 libavfilter/af_asr.c     { NULL }
NULL               77 libavfilter/af_asr.c         speech = ps_get_hyp(s->ps, NULL);
NULL               78 libavfilter/af_asr.c         if (speech != NULL)
NULL              109 libavfilter/af_asr.c                            NULL };
NULL              111 libavfilter/af_asr.c     s->config = cmd_ln_parse_r(NULL, ps_args(), 14, (char **)argv, 0);
NULL              130 libavfilter/af_asr.c     AVFilterFormats *formats = NULL;
NULL              131 libavfilter/af_asr.c     AVFilterChannelLayouts *layout = NULL;
NULL              148 libavfilter/af_asr.c     s->ps = NULL;
NULL              150 libavfilter/af_asr.c     s->config = NULL;
NULL              160 libavfilter/af_asr.c     { NULL }
NULL              168 libavfilter/af_asr.c     { NULL }
NULL              143 libavfilter/af_astats.c     { NULL }
NULL              582 libavfilter/af_astats.c         UPDATE_STATS_##planar(type, update_stat(s, p, sample, sample normalizer_suffix, int_sample), s->is_float ? update_float_stat(s, p, sample) : s->is_double ? update_double_stat(s, p, sample) : (void)NULL, ); \
NULL              648 libavfilter/af_astats.c     ctx->internal->execute(ctx, filter_channel, buf, NULL, FFMIN(inlink->channels, ff_filter_get_nb_threads(ctx)));
NULL              828 libavfilter/af_astats.c     { NULL }
NULL              837 libavfilter/af_astats.c     { NULL }
NULL               49 libavfilter/af_asubboost.c     AVFilterFormats *formats = NULL;
NULL               50 libavfilter/af_asubboost.c     AVFilterChannelLayouts *layouts = NULL;
NULL              199 libavfilter/af_asubboost.c     { NULL }
NULL              211 libavfilter/af_asubboost.c     { NULL }
NULL              219 libavfilter/af_asubboost.c     { NULL }
NULL              166 libavfilter/af_atempo.c     { NULL }
NULL              215 libavfilter/af_atempo.c     atempo->dst     = NULL;
NULL              216 libavfilter/af_atempo.c     atempo->dst_end = NULL;
NULL              239 libavfilter/af_atempo.c     atempo->real_to_complex = NULL;
NULL              242 libavfilter/af_atempo.c     atempo->complex_to_real = NULL;
NULL              296 libavfilter/af_atempo.c     atempo->real_to_complex = NULL;
NULL              299 libavfilter/af_atempo.c     atempo->complex_to_real = NULL;
NULL              925 libavfilter/af_atempo.c         yae_load_frag(atempo, NULL, NULL);
NULL              937 libavfilter/af_atempo.c                 yae_load_frag(atempo, NULL, NULL);
NULL              998 libavfilter/af_atempo.c     AVFilterChannelLayouts *layouts = NULL;
NULL              999 libavfilter/af_atempo.c     AVFilterFormats        *formats = NULL;
NULL             1067 libavfilter/af_atempo.c     atempo->dst_buffer = NULL;
NULL             1068 libavfilter/af_atempo.c     atempo->dst        = NULL;
NULL             1069 libavfilter/af_atempo.c     atempo->dst_end    = NULL;
NULL             1162 libavfilter/af_atempo.c         atempo->dst     = NULL;
NULL             1163 libavfilter/af_atempo.c         atempo->dst_end = NULL;
NULL             1193 libavfilter/af_atempo.c     { NULL }
NULL             1202 libavfilter/af_atempo.c     { NULL }
NULL              200 libavfilter/af_axcorrelate.c     AVFrame *frame = NULL;
NULL              343 libavfilter/af_axcorrelate.c     { NULL }
NULL              352 libavfilter/af_axcorrelate.c     { NULL }
NULL              363 libavfilter/af_axcorrelate.c     { NULL }
NULL              511 libavfilter/af_biquads.c     ctx->internal->execute(ctx, filter_channel, &td, NULL, FFMIN(outlink->channels, ff_filter_get_nb_threads(ctx)));
NULL              552 libavfilter/af_biquads.c     { NULL }
NULL              561 libavfilter/af_biquads.c     { NULL }
NULL              613 libavfilter/af_biquads.c     {NULL}
NULL              639 libavfilter/af_biquads.c     {NULL}
NULL              665 libavfilter/af_biquads.c     {NULL}
NULL              690 libavfilter/af_biquads.c     {NULL}
NULL              714 libavfilter/af_biquads.c     {NULL}
NULL              740 libavfilter/af_biquads.c     {NULL}
NULL              766 libavfilter/af_biquads.c     {NULL}
NULL              792 libavfilter/af_biquads.c     {NULL}
NULL              818 libavfilter/af_biquads.c     {NULL}
NULL              844 libavfilter/af_biquads.c     {NULL}
NULL              851 libavfilter/af_biquads.c     {"a0", NULL, OFFSET(a0), AV_OPT_TYPE_DOUBLE, {.dbl=1}, INT32_MIN, INT32_MAX, FLAGS},
NULL              852 libavfilter/af_biquads.c     {"a1", NULL, OFFSET(a1), AV_OPT_TYPE_DOUBLE, {.dbl=0}, INT32_MIN, INT32_MAX, FLAGS},
NULL              853 libavfilter/af_biquads.c     {"a2", NULL, OFFSET(a2), AV_OPT_TYPE_DOUBLE, {.dbl=0}, INT32_MIN, INT32_MAX, FLAGS},
NULL              854 libavfilter/af_biquads.c     {"b0", NULL, OFFSET(b0), AV_OPT_TYPE_DOUBLE, {.dbl=0}, INT32_MIN, INT32_MAX, FLAGS},
NULL              855 libavfilter/af_biquads.c     {"b1", NULL, OFFSET(b1), AV_OPT_TYPE_DOUBLE, {.dbl=0}, INT32_MIN, INT32_MAX, FLAGS},
NULL              856 libavfilter/af_biquads.c     {"b2", NULL, OFFSET(b2), AV_OPT_TYPE_DOUBLE, {.dbl=0}, INT32_MIN, INT32_MAX, FLAGS},
NULL              863 libavfilter/af_biquads.c     {NULL}
NULL               62 libavfilter/af_bs2b.c     { NULL },
NULL               95 libavfilter/af_bs2b.c     AVFilterFormats *formats = NULL;
NULL               96 libavfilter/af_bs2b.c     AVFilterChannelLayouts *layouts = NULL;
NULL              202 libavfilter/af_bs2b.c     { NULL }
NULL              211 libavfilter/af_bs2b.c     { NULL }
NULL               76 libavfilter/af_channelmap.c     { NULL }
NULL              284 libavfilter/af_channelmap.c     AVFilterChannelLayouts *channel_layouts = NULL;
NULL              400 libavfilter/af_channelmap.c     { NULL }
NULL              408 libavfilter/af_channelmap.c     { NULL }
NULL               52 libavfilter/af_channelsplit.c     { NULL }
NULL              112 libavfilter/af_channelsplit.c     AVFilterChannelLayouts *in_layouts = NULL;
NULL              124 libavfilter/af_channelsplit.c         AVFilterChannelLayouts *out_layouts = NULL;
NULL              168 libavfilter/af_channelsplit.c     { NULL }
NULL              179 libavfilter/af_channelsplit.c     .outputs        = NULL,
NULL               69 libavfilter/af_chorus.c     { "delays",   "set delays",      OFFSET(delays_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, A },
NULL               70 libavfilter/af_chorus.c     { "decays",   "set decays",      OFFSET(decays_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, A },
NULL               71 libavfilter/af_chorus.c     { "speeds",   "set speeds",      OFFSET(speeds_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, A },
NULL               72 libavfilter/af_chorus.c     { "depths",   "set depths",      OFFSET(depths_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, A },
NULL               73 libavfilter/af_chorus.c     { NULL }
NULL               92 libavfilter/af_chorus.c     char *p, *saveptr = NULL;
NULL               98 libavfilter/af_chorus.c         p = NULL;
NULL              232 libavfilter/af_chorus.c     return av_samples_alloc_array_and_samples(&s->chorusbuf, NULL,
NULL              359 libavfilter/af_chorus.c     { NULL }
NULL              369 libavfilter/af_chorus.c     { NULL }
NULL               82 libavfilter/af_compand.c     { NULL }
NULL              228 libavfilter/af_compand.c     AVFrame *out_frame   = NULL;
NULL              298 libavfilter/af_compand.c     AVFrame *frame       = NULL;
NULL              334 libavfilter/af_compand.c     char *p, *saveptr     = NULL;
NULL              376 libavfilter/af_compand.c         p = NULL;
NULL              392 libavfilter/af_compand.c         p = NULL;
NULL              418 libavfilter/af_compand.c         p = NULL;
NULL              574 libavfilter/af_compand.c     { NULL }
NULL              584 libavfilter/af_compand.c     { NULL }
NULL               52 libavfilter/af_compensationdelay.c     { NULL }
NULL              178 libavfilter/af_compensationdelay.c     { NULL }
NULL              186 libavfilter/af_compensationdelay.c     { NULL }
NULL               44 libavfilter/af_crossfeed.c     AVFilterFormats *formats = NULL;
NULL               45 libavfilter/af_crossfeed.c     AVFilterChannelLayouts *layout = NULL;
NULL              158 libavfilter/af_crossfeed.c     { NULL }
NULL              170 libavfilter/af_crossfeed.c     { NULL }
NULL              178 libavfilter/af_crossfeed.c     { NULL }
NULL               41 libavfilter/af_crystalizer.c     { NULL }
NULL               48 libavfilter/af_crystalizer.c     AVFilterFormats *formats = NULL;
NULL               49 libavfilter/af_crystalizer.c     AVFilterChannelLayouts *layouts = NULL;
NULL              272 libavfilter/af_crystalizer.c     ctx->internal->execute(ctx, s->filter, &td, NULL, FFMIN(inlink->channels,
NULL              295 libavfilter/af_crystalizer.c     { NULL }
NULL              303 libavfilter/af_crystalizer.c     { NULL }
NULL               41 libavfilter/af_dcshift.c     { NULL }
NULL              152 libavfilter/af_dcshift.c     { NULL }
NULL              160 libavfilter/af_dcshift.c     { NULL }
NULL               66 libavfilter/af_deesser.c     { NULL }
NULL               73 libavfilter/af_deesser.c     AVFilterFormats *formats = NULL;
NULL               74 libavfilter/af_deesser.c     AVFilterChannelLayouts *layouts = NULL;
NULL              223 libavfilter/af_deesser.c     { NULL }
NULL              231 libavfilter/af_deesser.c     { NULL }
NULL               51 libavfilter/af_drmeter.c     { NULL }
NULL              212 libavfilter/af_drmeter.c     { NULL }
NULL              221 libavfilter/af_drmeter.c     { NULL }
NULL              113 libavfilter/af_dynaudnorm.c     { NULL }
NULL              171 libavfilter/af_dynaudnorm.c         return NULL;
NULL              175 libavfilter/af_dynaudnorm.c         return NULL;
NULL              184 libavfilter/af_dynaudnorm.c         return NULL;
NULL              319 libavfilter/af_dynaudnorm.c     s->is_enabled = NULL;
NULL              784 libavfilter/af_dynaudnorm.c     AVFrame *in = NULL;
NULL              859 libavfilter/af_dynaudnorm.c     { NULL }
NULL              867 libavfilter/af_dynaudnorm.c     { NULL }
NULL               83 libavfilter/af_earwax.c     AVFilterFormats *formats = NULL;
NULL               84 libavfilter/af_earwax.c     AVFilterChannelLayouts *layout = NULL;
NULL              156 libavfilter/af_earwax.c     { NULL }
NULL              164 libavfilter/af_earwax.c     { NULL }
NULL               39 libavfilter/af_extrastereo.c     { NULL }
NULL               46 libavfilter/af_extrastereo.c     AVFilterFormats *formats = NULL;
NULL               47 libavfilter/af_extrastereo.c     AVFilterChannelLayouts *layout = NULL;
NULL              112 libavfilter/af_extrastereo.c     { NULL }
NULL              120 libavfilter/af_extrastereo.c     { NULL }
NULL              119 libavfilter/af_firequalizer.c     { "gain_entry", "set gain entry", OFFSET(gain_entry), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, TFLAGS },
NULL              141 libavfilter/af_firequalizer.c     { "dumpfile", "set dump file", OFFSET(dumpfile), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },
NULL              145 libavfilter/af_firequalizer.c     { NULL }
NULL              159 libavfilter/af_firequalizer.c     s->analysis_rdft = s->analysis_irdft = s->rdft = s->irdft = NULL;
NULL              160 libavfilter/af_firequalizer.c     s->fft_ctx = NULL;
NULL              161 libavfilter/af_firequalizer.c     s->cepstrum_rdft = NULL;
NULL              162 libavfilter/af_firequalizer.c     s->cepstrum_irdft = NULL;
NULL              541 libavfilter/af_firequalizer.c     NULL
NULL              606 libavfilter/af_firequalizer.c     const char *gain_entry_func_names[] = { "entry", NULL };
NULL              607 libavfilter/af_firequalizer.c     const char *gain_func_names[] = { "gain_interpolate", "cubic_interpolate", NULL };
NULL              608 libavfilter/af_firequalizer.c     double (*gain_entry_funcs[])(void *, double, double) = { entry_func, NULL };
NULL              609 libavfilter/af_firequalizer.c     double (*gain_funcs[])(void *, double) = { gain_interpolate_func, cubic_interpolate_func, NULL };
NULL              615 libavfilter/af_firequalizer.c     FILE *dump_fp = NULL;
NULL              621 libavfilter/af_firequalizer.c         ret = av_expr_parse_and_eval(&result, gain_entry, NULL, NULL, NULL, NULL,
NULL              632 libavfilter/af_firequalizer.c                         gain_func_names, gain_funcs, NULL, NULL, 0, ctx);
NULL              959 libavfilter/af_firequalizer.c     { NULL }
NULL              968 libavfilter/af_firequalizer.c     { NULL }
NULL               62 libavfilter/af_flanger.c     { "triangular",  NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_TRI}, 0, 0, A, "type" },
NULL               63 libavfilter/af_flanger.c     { "t",           NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_TRI}, 0, 0, A, "type" },
NULL               64 libavfilter/af_flanger.c     { "sinusoidal",  NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_SIN}, 0, 0, A, "type" },
NULL               65 libavfilter/af_flanger.c     { "s",           NULL, 0, AV_OPT_TYPE_CONST,  {.i64=WAVE_SIN}, 0, 0, A, "type" },
NULL               68 libavfilter/af_flanger.c     { "linear",     NULL, 0, AV_OPT_TYPE_CONST,  {.i64=INTERPOLATION_LINEAR},    0, 0, A, "itype" },
NULL               69 libavfilter/af_flanger.c     { "quadratic",  NULL, 0, AV_OPT_TYPE_CONST,  {.i64=INTERPOLATION_QUADRATIC}, 0, 0, A, "itype" },
NULL               70 libavfilter/af_flanger.c     { NULL }
NULL              136 libavfilter/af_flanger.c     return av_samples_alloc_array_and_samples(&s->delay_buffer, NULL,
NULL              225 libavfilter/af_flanger.c     { NULL }
NULL              233 libavfilter/af_flanger.c     { NULL }
NULL               77 libavfilter/af_haas.c     { NULL }
NULL               84 libavfilter/af_haas.c     AVFilterFormats *formats = NULL;
NULL               85 libavfilter/af_haas.c     AVFilterChannelLayouts *layout = NULL;
NULL              208 libavfilter/af_haas.c     { NULL }
NULL              216 libavfilter/af_haas.c     { NULL }
NULL             1007 libavfilter/af_hdcd.c     {NULL}
NULL             1612 libavfilter/af_hdcd.c     AVFilterChannelLayouts *layouts = NULL;
NULL             1764 libavfilter/af_hdcd.c     { NULL }
NULL             1772 libavfilter/af_hdcd.c     { NULL }
NULL              136 libavfilter/af_headphone.c         p = NULL;
NULL              375 libavfilter/af_headphone.c         ctx->internal->execute(ctx, headphone_convolute, &td, NULL, 2);
NULL              377 libavfilter/af_headphone.c         ctx->internal->execute(ctx, headphone_fast_convolute, &td, NULL, 2);
NULL              397 libavfilter/af_headphone.c     FFTComplex *data_hrtf_l = NULL;
NULL              398 libavfilter/af_headphone.c     FFTComplex *data_hrtf_r = NULL;
NULL              399 libavfilter/af_headphone.c     FFTComplex *fft_in_l = NULL;
NULL              400 libavfilter/af_headphone.c     FFTComplex *fft_in_r = NULL;
NULL              401 libavfilter/af_headphone.c     float *data_ir_l = NULL;
NULL              402 libavfilter/af_headphone.c     float *data_ir_r = NULL;
NULL              622 libavfilter/af_headphone.c     AVFrame *in = NULL;
NULL              684 libavfilter/af_headphone.c     AVFilterFormats *formats = NULL;
NULL              685 libavfilter/af_headphone.c     AVFilterChannelLayouts *layouts = NULL;
NULL              686 libavfilter/af_headphone.c     AVFilterChannelLayouts *stereo_layout = NULL;
NULL              687 libavfilter/af_headphone.c     AVFilterChannelLayouts *hrir_layouts = NULL;
NULL              848 libavfilter/af_headphone.c     { "map",       "set channels convolution mappings",  OFFSET(map),      AV_OPT_TYPE_STRING, {.str=NULL},            .flags = FLAGS },
NULL              858 libavfilter/af_headphone.c     { NULL }
NULL              869 libavfilter/af_headphone.c     { NULL }
NULL              881 libavfilter/af_headphone.c     .inputs        = NULL,
NULL               78 libavfilter/af_join.c     { NULL }
NULL              226 libavfilter/af_join.c     AVFilterChannelLayouts *layouts = NULL;
NULL              528 libavfilter/af_join.c     { NULL }
NULL              541 libavfilter/af_join.c     .inputs         = NULL,
NULL               84 libavfilter/af_ladspa.c     { NULL }
NULL              352 libavfilter/af_ladspa.c     void *ret = NULL;
NULL              402 libavfilter/af_ladspa.c     AVFilterPad pad = { NULL };
NULL              403 libavfilter/af_ladspa.c     char *p, *arg, *saveptr = NULL;
NULL              424 libavfilter/af_ladspa.c                 p = NULL;
NULL              549 libavfilter/af_ladspa.c         p = NULL;
NULL              639 libavfilter/af_ladspa.c         layouts = NULL;
NULL              653 libavfilter/af_ladspa.c             layouts = NULL;
NULL              671 libavfilter/af_ladspa.c             layouts = NULL;
NULL              731 libavfilter/af_ladspa.c     { NULL }
NULL              122 libavfilter/af_loudnorm.c     { NULL }
NULL              910 libavfilter/af_loudnorm.c     { NULL }
NULL              919 libavfilter/af_loudnorm.c     { NULL }
NULL              105 libavfilter/af_lv2.c     { NULL }
NULL              112 libavfilter/af_lv2.c     table->uris   = NULL;
NULL              165 libavfilter/af_lv2.c     return NULL;
NULL              259 libavfilter/af_lv2.c     { LV2_BUF_SIZE__powerOf2BlockLength, NULL },
NULL              260 libavfilter/af_lv2.c     { LV2_BUF_SIZE__fixedBlockLength,    NULL },
NULL              261 libavfilter/af_lv2.c     { LV2_BUF_SIZE__boundedBlockLength,  NULL },
NULL              268 libavfilter/af_lv2.c     char *p, *arg, *saveptr = NULL;
NULL              356 libavfilter/af_lv2.c         p = NULL;
NULL              359 libavfilter/af_lv2.c         if (vstr == NULL) {
NULL              395 libavfilter/af_lv2.c     AVFilterPad pad = { NULL };
NULL              511 libavfilter/af_lv2.c         layouts = NULL;
NULL              523 libavfilter/af_lv2.c             layouts = NULL;
NULL              541 libavfilter/af_lv2.c             layouts = NULL;
NULL              588 libavfilter/af_lv2.c     { NULL }
NULL               99 libavfilter/af_mcompand.c     { NULL }
NULL              202 libavfilter/af_mcompand.c     char *saveptr = NULL;
NULL              209 libavfilter/af_mcompand.c         p = NULL;
NULL              348 libavfilter/af_mcompand.c     char *p = s->args, *saveptr = NULL;
NULL              361 libavfilter/af_mcompand.c         char *p2, *p3, *saveptr2 = NULL, *saveptr3 = NULL;
NULL              368 libavfilter/af_mcompand.c         p = NULL;
NULL              378 libavfilter/af_mcompand.c         p2 = NULL;
NULL              394 libavfilter/af_mcompand.c             p3 = NULL;
NULL              665 libavfilter/af_mcompand.c     { NULL }
NULL              675 libavfilter/af_mcompand.c     { NULL }
NULL              130 libavfilter/af_pan.c     while ((arg = arg0 = av_strtok(NULL, "|", &tokenizer))) {
NULL              254 libavfilter/af_pan.c     AVFilterFormats *formats = NULL;
NULL              273 libavfilter/af_pan.c     layouts = NULL;
NULL              427 libavfilter/af_pan.c     { "args", NULL, OFFSET(args), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM },
NULL              428 libavfilter/af_pan.c     { NULL }
NULL              440 libavfilter/af_pan.c     { NULL }
NULL              448 libavfilter/af_pan.c     { NULL }
NULL              324 libavfilter/af_replaygain.c     AVFilterFormats *formats = NULL;
NULL              325 libavfilter/af_replaygain.c     AVFilterChannelLayouts *layout = NULL;
NULL              334 libavfilter/af_replaygain.c     formats = NULL;
NULL              596 libavfilter/af_replaygain.c     { NULL }
NULL              604 libavfilter/af_replaygain.c     { NULL }
NULL               55 libavfilter/af_resample.c     AVDictionaryEntry *e = NULL;
NULL               58 libavfilter/af_resample.c         if (av_opt_find(&avr_class, e->key, NULL, 0,
NULL               63 libavfilter/af_resample.c     e = NULL;
NULL               65 libavfilter/af_resample.c         av_dict_set(opts, e->key, NULL, 0);
NULL               68 libavfilter/af_resample.c     av_dict_set(&s->options,  "in_channel_layout", NULL, 0);
NULL               69 libavfilter/af_resample.c     av_dict_set(&s->options, "out_channel_layout", NULL, 0);
NULL               70 libavfilter/af_resample.c     av_dict_set(&s->options,  "in_sample_fmt",     NULL, 0);
NULL               71 libavfilter/af_resample.c     av_dict_set(&s->options, "out_sample_fmt",     NULL, 0);
NULL               72 libavfilter/af_resample.c     av_dict_set(&s->options,  "in_sample_rate",    NULL, 0);
NULL               73 libavfilter/af_resample.c     av_dict_set(&s->options, "out_sample_rate",    NULL, 0);
NULL              145 libavfilter/af_resample.c         AVDictionaryEntry *e = NULL;
NULL              210 libavfilter/af_resample.c                                  NULL, 0, 0);
NULL              311 libavfilter/af_resample.c     return prev ? NULL : avresample_get_class();
NULL              317 libavfilter/af_resample.c     return prev ? NULL : s->avr;
NULL              334 libavfilter/af_resample.c     { NULL }
NULL              344 libavfilter/af_resample.c     { NULL }
NULL               79 libavfilter/af_rubberband.c     { NULL },
NULL               94 libavfilter/af_rubberband.c     AVFilterFormats *formats = NULL;
NULL               95 libavfilter/af_rubberband.c     AVFilterChannelLayouts *layouts = NULL;
NULL              183 libavfilter/af_rubberband.c     AVFrame *in = NULL;
NULL              225 libavfilter/af_rubberband.c     { NULL }
NULL              233 libavfilter/af_rubberband.c     { NULL }
NULL               94 libavfilter/af_sidechaincompress.c     { NULL }
NULL              236 libavfilter/af_sidechaincompress.c     AVFrame *out = NULL, *in[2] = { NULL };
NULL              302 libavfilter/af_sidechaincompress.c     AVFilterChannelLayouts *layouts = NULL;
NULL              378 libavfilter/af_sidechaincompress.c     { NULL }
NULL              387 libavfilter/af_sidechaincompress.c     { NULL }
NULL              474 libavfilter/af_sidechaincompress.c     { NULL }
NULL              483 libavfilter/af_sidechaincompress.c     { NULL }
NULL               63 libavfilter/af_silencedetect.c     { NULL }
NULL              200 libavfilter/af_silencedetect.c     AVFilterFormats *formats = NULL;
NULL              201 libavfilter/af_silencedetect.c     AVFilterChannelLayouts *layouts = NULL;
NULL              238 libavfilter/af_silencedetect.c             update(s, NULL, 0, c, 0, s->time_base);
NULL              250 libavfilter/af_silencedetect.c     { NULL }
NULL              258 libavfilter/af_silencedetect.c     { NULL }
NULL              107 libavfilter/af_silenceremove.c     { "start_periods",   NULL,                                                 OFFSET(start_periods),       AV_OPT_TYPE_INT,      {.i64=0},     0,      9000, AF },
NULL              114 libavfilter/af_silenceremove.c     { "stop_periods",    NULL,                                                 OFFSET(stop_periods),        AV_OPT_TYPE_INT,      {.i64=0}, -9000,      9000, AF },
NULL              123 libavfilter/af_silenceremove.c     { NULL }
NULL              614 libavfilter/af_silenceremove.c     AVFilterFormats *formats = NULL;
NULL              615 libavfilter/af_silenceremove.c     AVFilterChannelLayouts *layouts = NULL;
NULL              659 libavfilter/af_silenceremove.c     { NULL }
NULL              668 libavfilter/af_silenceremove.c     { NULL }
NULL              121 libavfilter/af_sofalizer.c     sofa->neighborhood = NULL;
NULL              124 libavfilter/af_sofalizer.c     sofa->lookup = NULL;
NULL              127 libavfilter/af_sofalizer.c     sofa->hrtf = NULL;
NULL              162 libavfilter/af_sofalizer.c     if (s->sofa.lookup == NULL)
NULL              225 libavfilter/af_sofalizer.c         p = NULL;
NULL              592 libavfilter/af_sofalizer.c         ctx->internal->execute(ctx, sofalizer_convolute, &td, NULL, 2);
NULL              594 libavfilter/af_sofalizer.c         ctx->internal->execute(ctx, sofalizer_fast_convolute, &td, NULL, 2);
NULL              636 libavfilter/af_sofalizer.c     AVFilterFormats *formats = NULL;
NULL              637 libavfilter/af_sofalizer.c     AVFilterChannelLayouts *layouts = NULL;
NULL              659 libavfilter/af_sofalizer.c     layouts = NULL;
NULL              730 libavfilter/af_sofalizer.c     FFTComplex *data_hrtf_l = NULL;
NULL              731 libavfilter/af_sofalizer.c     FFTComplex *data_hrtf_r = NULL;
NULL              732 libavfilter/af_sofalizer.c     FFTComplex *fft_in_l = NULL;
NULL              733 libavfilter/af_sofalizer.c     FFTComplex *fft_in_r = NULL;
NULL              734 libavfilter/af_sofalizer.c     float *data_ir_l = NULL;
NULL              735 libavfilter/af_sofalizer.c     float *data_ir_r = NULL;
NULL             1021 libavfilter/af_sofalizer.c     s->ifft[0] = NULL;
NULL             1022 libavfilter/af_sofalizer.c     s->ifft[1] = NULL;
NULL             1023 libavfilter/af_sofalizer.c     s->fft[0] = NULL;
NULL             1024 libavfilter/af_sofalizer.c     s->fft[1] = NULL;
NULL             1048 libavfilter/af_sofalizer.c     { "sofa",      "sofa filename",  OFFSET(filename),  AV_OPT_TYPE_STRING, {.str=NULL},            .flags = FLAGS },
NULL             1064 libavfilter/af_sofalizer.c     { NULL }
NULL             1075 libavfilter/af_sofalizer.c     { NULL }
NULL             1083 libavfilter/af_sofalizer.c     { NULL }
NULL               95 libavfilter/af_stereotools.c     { NULL }
NULL              102 libavfilter/af_stereotools.c     AVFilterFormats *formats = NULL;
NULL              103 libavfilter/af_stereotools.c     AVFilterChannelLayouts *layout = NULL;
NULL              341 libavfilter/af_stereotools.c     { NULL }
NULL              349 libavfilter/af_stereotools.c     { NULL }
NULL               50 libavfilter/af_stereowiden.c     { NULL }
NULL               57 libavfilter/af_stereowiden.c     AVFilterFormats *formats = NULL;
NULL               58 libavfilter/af_stereowiden.c     AVFilterChannelLayouts *layout = NULL;
NULL              148 libavfilter/af_stereowiden.c     { NULL }
NULL              156 libavfilter/af_stereowiden.c     { NULL }
NULL              249 libavfilter/af_superequalizer.c     AVFrame *in = NULL;
NULL              338 libavfilter/af_superequalizer.c     { NULL }
NULL              347 libavfilter/af_superequalizer.c     { NULL }
NULL              372 libavfilter/af_superequalizer.c     { NULL }
NULL              162 libavfilter/af_surround.c     AVFilterFormats *formats = NULL;
NULL              163 libavfilter/af_surround.c     AVFilterChannelLayouts *layouts = NULL;
NULL              173 libavfilter/af_surround.c     layouts = NULL;
NULL              182 libavfilter/af_surround.c     layouts = NULL;
NULL             1592 libavfilter/af_surround.c     ctx->internal->execute(ctx, fft_channel, NULL, NULL, inlink->channels);
NULL             1600 libavfilter/af_surround.c     ctx->internal->execute(ctx, ifft_channel, out, NULL, outlink->channels);
NULL             1615 libavfilter/af_surround.c     AVFrame *in = NULL;
NULL             1765 libavfilter/af_surround.c     { NULL }
NULL             1776 libavfilter/af_surround.c     { NULL }
NULL             1785 libavfilter/af_surround.c     { NULL }
NULL               41 libavfilter/af_tremolo.c     { NULL }
NULL              152 libavfilter/af_tremolo.c     { NULL }
NULL              160 libavfilter/af_tremolo.c     { NULL }
NULL               48 libavfilter/af_vibrato.c     { NULL }
NULL              190 libavfilter/af_vibrato.c     { NULL }
NULL              198 libavfilter/af_vibrato.c     { NULL }
NULL               59 libavfilter/af_volume.c     NULL
NULL               88 libavfilter/af_volume.c     { NULL }
NULL               96 libavfilter/af_volume.c     AVExpr *old = NULL;
NULL              101 libavfilter/af_volume.c                         NULL, NULL, NULL, NULL, 0, log_ctx);
NULL              135 libavfilter/af_volume.c     AVFilterFormats *formats = NULL;
NULL              262 libavfilter/af_volume.c     vol->volume = av_expr_eval(vol->volume_pexpr, vol->var_values, NULL);
NULL              472 libavfilter/af_volume.c     { NULL }
NULL              481 libavfilter/af_volume.c     { NULL }
NULL              147 libavfilter/af_volumedetect.c     { NULL }
NULL              155 libavfilter/af_volumedetect.c     { NULL }
NULL              522 libavfilter/allfilters.c     const AVFilter *f = NULL;
NULL              526 libavfilter/allfilters.c         return NULL;
NULL              532 libavfilter/allfilters.c     return NULL;
NULL              542 libavfilter/allfilters.c     AVFilter *prev = NULL, *p;
NULL               37 libavfilter/asink_anullsink.c     { NULL },
NULL               45 libavfilter/asink_anullsink.c     .outputs     = NULL,
NULL               97 libavfilter/asrc_afirsrc.c     {NULL}
NULL              166 libavfilter/asrc_afirsrc.c     new_items = av_fast_realloc(NULL, items_size, 1 * sizeof(float));
NULL              317 libavfilter/asrc_afirsrc.c     { NULL }
NULL              327 libavfilter/asrc_afirsrc.c     .inputs        = NULL,
NULL               78 libavfilter/asrc_anoisesrc.c     {NULL}
NULL              246 libavfilter/asrc_anoisesrc.c     { NULL }
NULL              254 libavfilter/asrc_anoisesrc.c     .inputs        = NULL,
NULL               57 libavfilter/asrc_anullsrc.c     { NULL }
NULL               71 libavfilter/asrc_anullsrc.c     if ((ret = ff_parse_channel_layout(&null->channel_layout, NULL,
NULL              133 libavfilter/asrc_anullsrc.c     { NULL }
NULL              142 libavfilter/asrc_anullsrc.c     .inputs        = NULL,
NULL               57 libavfilter/asrc_flite.c     { "text",        "set text to speak",                 OFFSET(text),      AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               58 libavfilter/asrc_flite.c     { "textfile",    "set filename of the text to speak", OFFSET(textfile),  AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               61 libavfilter/asrc_flite.c     { NULL }
NULL              115 libavfilter/asrc_flite.c                 entry->voice = entry->register_fn(NULL);
NULL              201 libavfilter/asrc_flite.c     flite->voice = NULL;
NULL              202 libavfilter/asrc_flite.c     flite->voice_entry = NULL;
NULL              204 libavfilter/asrc_flite.c     flite->wave = NULL;
NULL              212 libavfilter/asrc_flite.c     AVFilterChannelLayouts *chlayouts = NULL;
NULL              214 libavfilter/asrc_flite.c     AVFilterFormats *sample_formats = NULL;
NULL              215 libavfilter/asrc_flite.c     AVFilterFormats *sample_rates = NULL;
NULL              274 libavfilter/asrc_flite.c     { NULL }
NULL              284 libavfilter/asrc_flite.c     .inputs        = NULL,
NULL               71 libavfilter/asrc_hilbert.c     {NULL}
NULL              187 libavfilter/asrc_hilbert.c     { NULL }
NULL              197 libavfilter/asrc_hilbert.c     .inputs        = NULL,
NULL               51 libavfilter/asrc_sinc.c     AVFrame *frame = NULL;
NULL              184 libavfilter/asrc_sinc.c         return NULL;
NULL              240 libavfilter/asrc_sinc.c     s->rdft = s->irdft = NULL;
NULL              401 libavfilter/asrc_sinc.c     s->rdft = s->irdft = NULL;
NULL              413 libavfilter/asrc_sinc.c     s->rdft = s->irdft = NULL;
NULL              423 libavfilter/asrc_sinc.c     { NULL }
NULL              442 libavfilter/asrc_sinc.c     { NULL }
NULL              454 libavfilter/asrc_sinc.c     .inputs        = NULL,
NULL               79 libavfilter/asrc_sine.c     {NULL}
NULL              133 libavfilter/asrc_sine.c     NULL
NULL              163 libavfilter/asrc_sine.c                         NULL, NULL, NULL, NULL, 0, sine);
NULL              175 libavfilter/asrc_sine.c     sine->samples_per_frame_expr = NULL;
NULL              269 libavfilter/asrc_sine.c     { NULL }
NULL              279 libavfilter/asrc_sine.c     .inputs        = NULL,
NULL               40 libavfilter/audio.c     AVFrame *frame = NULL;
NULL               49 libavfilter/audio.c             return NULL;
NULL               59 libavfilter/audio.c             return NULL;
NULL               69 libavfilter/audio.c                 return NULL;
NULL               75 libavfilter/audio.c         return NULL;
NULL               88 libavfilter/audio.c     AVFrame *ret = NULL;
NULL               56 libavfilter/avf_abitscope.c     { NULL }
NULL               63 libavfilter/avf_abitscope.c     AVFilterFormats *formats = NULL;
NULL               97 libavfilter/avf_abitscope.c     char *colors, *saveptr = NULL;
NULL              115 libavfilter/avf_abitscope.c         color = av_strtok(ch == 0 ? colors : NULL, " |", &saveptr);
NULL              252 libavfilter/avf_abitscope.c     { NULL }
NULL              261 libavfilter/avf_abitscope.c     { NULL }
NULL               86 libavfilter/avf_ahistogram.c     { NULL }
NULL               93 libavfilter/avf_ahistogram.c     AVFilterFormats *formats = NULL;
NULL               94 libavfilter/avf_ahistogram.c     AVFilterChannelLayouts *layouts = NULL;
NULL              103 libavfilter/avf_ahistogram.c         (layouts = ff_all_channel_counts()) == NULL ||
NULL              415 libavfilter/avf_ahistogram.c     { NULL }
NULL              424 libavfilter/avf_ahistogram.c     { NULL }
NULL               62 libavfilter/avf_aphasemeter.c     { NULL }
NULL               70 libavfilter/avf_aphasemeter.c     AVFilterFormats *formats = NULL;
NULL               71 libavfilter/avf_aphasemeter.c     AVFilterChannelLayouts *layout = NULL;
NULL              147 libavfilter/avf_aphasemeter.c     AVFilterLink *outlink = s->do_video ? ctx->outputs[1] : NULL;
NULL              280 libavfilter/avf_aphasemeter.c     { NULL }
NULL              291 libavfilter/avf_aphasemeter.c     .outputs       = NULL,
NULL              112 libavfilter/avf_avectorscope.c     { NULL }
NULL              184 libavfilter/avf_avectorscope.c     AVFilterFormats *formats = NULL;
NULL              185 libavfilter/avf_avectorscope.c     AVFilterChannelLayouts *layout = NULL;
NULL              406 libavfilter/avf_avectorscope.c     { NULL }
NULL              415 libavfilter/avf_avectorscope.c     { NULL }
NULL               70 libavfilter/avf_concat.c     { NULL }
NULL               79 libavfilter/avf_concat.c     AVFilterFormats *formats, *rates = NULL;
NULL               80 libavfilter/avf_concat.c     AVFilterChannelLayouts *layouts = NULL;
NULL              454 libavfilter/avf_concat.c     .inputs        = NULL,
NULL              455 libavfilter/avf_concat.c     .outputs       = NULL,
NULL               88 libavfilter/avf_showcqt.c     { "fontfile", "set axis font file", OFFSET(fontfile),  AV_OPT_TYPE_STRING, { .str = NULL },      0, 0, FLAGS },
NULL               89 libavfilter/avf_showcqt.c     { "font",          "set axis font", OFFSET(font),      AV_OPT_TYPE_STRING, { .str = NULL },      0, 0, FLAGS },
NULL               91 libavfilter/avf_showcqt.c     { "axisfile",     "set axis image", OFFSET(axisfile),  AV_OPT_TYPE_STRING, { .str = NULL },      0, 0, FLAGS },
NULL              103 libavfilter/avf_showcqt.c     { NULL }
NULL              142 libavfilter/avf_showcqt.c             s->axis_frame->data[k] = NULL;
NULL              148 libavfilter/avf_showcqt.c     s->fft_ctx = NULL;
NULL              174 libavfilter/avf_showcqt.c         return NULL;
NULL              230 libavfilter/avf_showcqt.c     const char *func_names[] = { "a_weighting", "b_weighting", "c_weighting", NULL };
NULL              231 libavfilter/avf_showcqt.c     const char *sono_names[] = { "timeclamp", "tc", "frequency", "freq", "f", "bar_v", NULL };
NULL              232 libavfilter/avf_showcqt.c     const char *bar_names[] = { "timeclamp", "tc", "frequency", "freq", "f", "sono_v", NULL };
NULL              234 libavfilter/avf_showcqt.c     AVExpr *sono = NULL, *bar = NULL;
NULL              242 libavfilter/avf_showcqt.c     if ((ret = av_expr_parse(&sono, s->sono_v, sono_names, func_names, funcs, NULL, NULL, 0, s->ctx)) < 0)
NULL              245 libavfilter/avf_showcqt.c     if ((ret = av_expr_parse(&bar, s->bar_v, bar_names, func_names, funcs, NULL, NULL, 0, s->ctx)) < 0)
NULL              250 libavfilter/avf_showcqt.c         double vol = clip_with_log(s->ctx, "sono_v", av_expr_eval(sono, vars, NULL), 0.0, VOLUME_MAX, 0.0, x);
NULL              252 libavfilter/avf_showcqt.c         vol = clip_with_log(s->ctx, "bar_v", av_expr_eval(bar, vars, NULL), 0.0, VOLUME_MAX, 0.0, x);
NULL              255 libavfilter/avf_showcqt.c         vol = clip_with_log(s->ctx, "sono_v", av_expr_eval(sono, vars, NULL), 0.0, VOLUME_MAX, 0.0, x);
NULL              299 libavfilter/avf_showcqt.c     const char *var_names[] = { "timeclamp", "tc", "frequency", "freq", "f", NULL };
NULL              300 libavfilter/avf_showcqt.c     AVExpr *expr = NULL;
NULL              305 libavfilter/avf_showcqt.c     if ((ret = av_expr_parse(&expr, s->tlength, var_names, NULL, NULL, NULL, NULL, 0, s->ctx)) < 0)
NULL              319 libavfilter/avf_showcqt.c         tlength = clip_with_log(s->ctx, "tlength", av_expr_eval(expr, vars, NULL),
NULL              364 libavfilter/avf_showcqt.c         return NULL;
NULL              370 libavfilter/avf_showcqt.c         return NULL;
NULL              405 libavfilter/avf_showcqt.c     uint8_t *tmp_data[4] = { NULL };
NULL              460 libavfilter/avf_showcqt.c     const char *var_names[] = { "timeclamp", "tc", "frequency", "freq", "f", NULL };
NULL              461 libavfilter/avf_showcqt.c     const char *func_names[] = { "midi", "r", "g", "b", NULL };
NULL              463 libavfilter/avf_showcqt.c     AVExpr *expr = NULL;
NULL              464 libavfilter/avf_showcqt.c     double *freq = NULL;
NULL              480 libavfilter/avf_showcqt.c     if ((ret = av_expr_parse(&expr, s->fontcolor, var_names, func_names, funcs, NULL, NULL, 0, s->ctx)) < 0) {
NULL              488 libavfilter/avf_showcqt.c         int color = (int) av_expr_eval(expr, vars, NULL);
NULL              511 libavfilter/avf_showcqt.c     FT_Library lib = NULL;
NULL              512 libavfilter/avf_showcqt.c     FT_Face face = NULL;
NULL              681 libavfilter/avf_showcqt.c     AVFrame *tmp = NULL;
NULL             1320 libavfilter/avf_showcqt.c     AVFilterFormats *formats = NULL;
NULL             1321 libavfilter/avf_showcqt.c     AVFilterChannelLayouts *layouts = NULL;
NULL             1407 libavfilter/avf_showcqt.c     s->permute_coeffs = NULL;
NULL             1488 libavfilter/avf_showcqt.c     AVFrame *out = NULL;
NULL             1542 libavfilter/avf_showcqt.c                 out = NULL;
NULL             1569 libavfilter/avf_showcqt.c         ret = filter_frame(inlink, NULL);
NULL             1579 libavfilter/avf_showcqt.c     { NULL }
NULL             1589 libavfilter/avf_showcqt.c     { NULL }
NULL              118 libavfilter/avf_showfreqs.c     { NULL }
NULL              125 libavfilter/avf_showfreqs.c     AVFilterFormats *formats = NULL;
NULL              126 libavfilter/avf_showfreqs.c     AVFilterChannelLayouts *layouts = NULL;
NULL              366 libavfilter/avf_showfreqs.c     char *colors, *color, *saveptr = NULL;
NULL              412 libavfilter/avf_showfreqs.c         color = av_strtok(ch == 0 ? colors : NULL, " |", &saveptr);
NULL              436 libavfilter/avf_showfreqs.c     AVFrame *fin = NULL;
NULL              465 libavfilter/avf_showfreqs.c     AVFrame *in = NULL;
NULL              516 libavfilter/avf_showfreqs.c     { NULL }
NULL              525 libavfilter/avf_showfreqs.c     { NULL }
NULL               86 libavfilter/avf_showspatial.c     { NULL }
NULL              108 libavfilter/avf_showspatial.c     AVFilterFormats *formats = NULL;
NULL              109 libavfilter/avf_showspatial.c     AVFilterChannelLayouts *layout = NULL;
NULL              291 libavfilter/avf_showspatial.c         AVFrame *frame = NULL;
NULL              321 libavfilter/avf_showspatial.c         ctx->internal->execute(ctx, run_channel_fft, fin, NULL, 2);
NULL              349 libavfilter/avf_showspatial.c     { NULL }
NULL              358 libavfilter/avf_showspatial.c     { NULL }
NULL              167 libavfilter/avf_showspectrum.c         { "vertical",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=VERTICAL},   0, 0, FLAGS, "orientation" },
NULL              168 libavfilter/avf_showspectrum.c         { "horizontal", NULL, 0, AV_OPT_TYPE_CONST, {.i64=HORIZONTAL}, 0, 0, FLAGS, "orientation" },
NULL              172 libavfilter/avf_showspectrum.c         { "magnitude", NULL, 0, AV_OPT_TYPE_CONST, {.i64=D_MAGNITUDE}, 0, 0, FLAGS, "data" },
NULL              173 libavfilter/avf_showspectrum.c         { "phase",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=D_PHASE},     0, 0, FLAGS, "data" },
NULL              179 libavfilter/avf_showspectrum.c     { NULL }
NULL              348 libavfilter/avf_showspectrum.c     AVFilterFormats *formats = NULL;
NULL              349 libavfilter/avf_showspectrum.c     AVFilterChannelLayouts *layouts = NULL;
NULL             1289 libavfilter/avf_showspectrum.c     ctx->internal->execute(ctx, s->plot_channel, NULL, NULL, s->nb_display_channels);
NULL             1423 libavfilter/avf_showspectrum.c         AVFrame *frame = NULL;
NULL             1454 libavfilter/avf_showspectrum.c         ctx->internal->execute(ctx, run_channel_fft, fin, NULL, s->nb_display_channels);
NULL             1457 libavfilter/avf_showspectrum.c             ctx->internal->execute(ctx, calc_channel_magnitudes, NULL, NULL, s->nb_display_channels);
NULL             1460 libavfilter/avf_showspectrum.c             ctx->internal->execute(ctx, calc_channel_phases, NULL, NULL, s->nb_display_channels);
NULL             1491 libavfilter/avf_showspectrum.c         s->outpicref = NULL;
NULL             1517 libavfilter/avf_showspectrum.c     { NULL }
NULL             1526 libavfilter/avf_showspectrum.c     { NULL }
NULL             1601 libavfilter/avf_showspectrum.c         { "vertical",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=VERTICAL},   0, 0, FLAGS, "orientation" },
NULL             1602 libavfilter/avf_showspectrum.c         { "horizontal", NULL, 0, AV_OPT_TYPE_CONST, {.i64=HORIZONTAL}, 0, 0, FLAGS, "orientation" },
NULL             1608 libavfilter/avf_showspectrum.c     { NULL }
NULL             1653 libavfilter/avf_showspectrum.c             ctx->internal->execute(ctx, run_channel_fft, fin, NULL, s->nb_display_channels);
NULL             1676 libavfilter/avf_showspectrum.c         s->outpicref = NULL;
NULL             1699 libavfilter/avf_showspectrum.c     { NULL }
NULL             1709 libavfilter/avf_showspectrum.c     { NULL }
NULL               35 libavfilter/avf_showvolume.c static const char *const var_names[] = {   "VOLUME",   "CHANNEL",   "PEAK",        NULL };
NULL               97 libavfilter/avf_showvolume.c     { NULL }
NULL              109 libavfilter/avf_showvolume.c                             NULL, NULL, NULL, NULL, 0, ctx);
NULL              119 libavfilter/avf_showvolume.c     AVFilterFormats *formats = NULL;
NULL              120 libavfilter/avf_showvolume.c     AVFilterChannelLayouts *layouts = NULL;
NULL              223 libavfilter/avf_showvolume.c             s->color_lut[ch * s->w + i] = av_expr_eval(s->c_expr, &s->values[ch * VAR_VARS_NB], NULL);
NULL              455 libavfilter/avf_showvolume.c     AVFrame *in = NULL;
NULL              489 libavfilter/avf_showvolume.c     { NULL }
NULL              498 libavfilter/avf_showvolume.c     { NULL }
NULL              118 libavfilter/avf_showwaves.c     { NULL }
NULL              141 libavfilter/avf_showwaves.c         showwaves->last_frame = NULL;
NULL              147 libavfilter/avf_showwaves.c     AVFilterFormats *formats = NULL;
NULL              148 libavfilter/avf_showwaves.c     AVFilterChannelLayouts *layouts = NULL;
NULL              412 libavfilter/avf_showwaves.c     char *colors, *saveptr = NULL;
NULL              525 libavfilter/avf_showwaves.c             color = av_strtok(ch == 0 ? colors : NULL, " |", &saveptr);
NULL              551 libavfilter/avf_showwaves.c     showwaves->outpicref = NULL;
NULL              750 libavfilter/avf_showwaves.c     { NULL }
NULL              759 libavfilter/avf_showwaves.c     { NULL }
NULL              795 libavfilter/avf_showwaves.c     { NULL }
NULL              836 libavfilter/avf_showwaves.c         f->next = NULL;
NULL              861 libavfilter/avf_showwaves.c     { NULL }
NULL              871 libavfilter/avf_showwaves.c     { NULL }
NULL              125 libavfilter/avfilter.c     (*links)[idx] = NULL;
NULL              250 libavfilter/avfilter.c     link->dst->inputs[dstpad_idx] = NULL;
NULL              294 libavfilter/avfilter.c         inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
NULL              409 libavfilter/avfilter.c     FF_TPRINTF_START(NULL, request_frame); ff_tlog_link(NULL, link, 1);
NULL              454 libavfilter/avfilter.c     FF_TPRINTF_START(NULL, request_frame_to_filter); ff_tlog_link(NULL, link, 1);
NULL              476 libavfilter/avfilter.c     NULL
NULL              513 libavfilter/avfilter.c                         NULL, NULL, NULL, NULL, 0, ctx->priv);
NULL              583 libavfilter/avfilter.c     return NULL;
NULL              588 libavfilter/avfilter.c     void *opaque = NULL;
NULL              589 libavfilter/avfilter.c     const AVFilter *f = NULL;
NULL              598 libavfilter/avfilter.c         return NULL;
NULL              605 libavfilter/avfilter.c     return NULL;
NULL              613 libavfilter/avfilter.c         { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .flags = FLAGS, .unit = "thread_type" },
NULL              614 libavfilter/avfilter.c     { "enable", "set enable expression", OFFSET(enable_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              619 libavfilter/avfilter.c     { NULL },
NULL              651 libavfilter/avfilter.c         return NULL;
NULL              655 libavfilter/avfilter.c         return NULL;
NULL              659 libavfilter/avfilter.c     ret->name     = inst_name ? av_strdup(inst_name) : NULL;
NULL              718 libavfilter/avfilter.c     return NULL;
NULL              727 libavfilter/avfilter.c         link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
NULL              729 libavfilter/avfilter.c         link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
NULL              778 libavfilter/avfilter.c     filter->enable = NULL;
NULL              794 libavfilter/avfilter.c     const AVOption *o = NULL;
NULL              804 libavfilter/avfilter.c         const char *shorthand = NULL;
NULL              836 libavfilter/avfilter.c         if (av_opt_find(ctx, key, NULL, 0, 0)) {
NULL              846 libavfilter/avfilter.c             if (!av_opt_find(ctx->priv, key, NULL, 0, AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) {
NULL              876 libavfilter/avfilter.c     o = av_opt_find2(ctx->priv, cmd, NULL, AV_OPT_FLAG_RUNTIME_PARAM | AV_OPT_FLAG_FILTERING_PARAM, AV_OPT_SEARCH_CHILDREN, NULL);
NULL              910 libavfilter/avfilter.c         ret = ctx->filter->init_opaque(ctx, NULL);
NULL              921 libavfilter/avfilter.c     AVDictionary *options = NULL;
NULL              968 libavfilter/avfilter.c             deprecated = strchr(p, ':') != NULL;
NULL             1017 libavfilter/avfilter.c     if ((e = av_dict_get(options, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
NULL             1078 libavfilter/avfilter.c     FF_TPRINTF_START(NULL, filter_frame); ff_tlog_link(NULL, link, 1); ff_tlog(NULL, " "); ff_tlog_ref(NULL, frame, 1);
NULL             1195 libavfilter/avfilter.c     AVFrame *frame = NULL;
NULL             1480 libavfilter/avfilter.c     *rframe = NULL;
NULL             1502 libavfilter/avfilter.c     *rframe = NULL;
NULL             1599 libavfilter/avfilter.c     return fabs(av_expr_eval(dstctx->enable, dstctx->var_values, NULL)) >= 0.5;
NULL               52 libavfilter/avfiltergraph.c         { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .flags = F|V|A, .unit = "thread_type" },
NULL               56 libavfilter/avfiltergraph.c         AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, F|V },
NULL               58 libavfilter/avfiltergraph.c         AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, F|A },
NULL               59 libavfilter/avfiltergraph.c     { NULL },
NULL               87 libavfilter/avfiltergraph.c         return NULL;
NULL               92 libavfilter/avfiltergraph.c         return NULL;
NULL              110 libavfilter/avfiltergraph.c             filter->graph = NULL;
NULL              113 libavfilter/avfiltergraph.c                     filter->outputs[j]->graph = NULL;
NULL              161 libavfilter/avfiltergraph.c     *filt_ctx = NULL;
NULL              183 libavfilter/avfiltergraph.c                 return NULL;
NULL              190 libavfilter/avfiltergraph.c         return NULL;
NULL              195 libavfilter/avfiltergraph.c         return NULL;
NULL              298 libavfilter/avfiltergraph.c     return NULL;
NULL              380 libavfilter/avfiltergraph.c         a->refs     = NULL;
NULL              546 libavfilter/avfiltergraph.c                                                             inst_name, graph->scale_sws_opts, NULL,
NULL              561 libavfilter/avfiltergraph.c                                                             NULL, graph)) < 0)
NULL              690 libavfilter/avfiltergraph.c                 best= av_find_best_pix_fmt_of_2(best, p, ref->format, has_alpha, NULL);
NULL              859 libavfilter/avfiltergraph.c     AVFilterLink *link = NULL;
NULL              942 libavfilter/avfiltergraph.c     AVFilterLink *link = NULL;
NULL             1039 libavfilter/avfiltergraph.c     AVFilterLink *link = NULL;
NULL             1118 libavfilter/avfiltergraph.c                         if ((ret = pick_format(filter->inputs[j], NULL)) < 0)
NULL             1127 libavfilter/avfiltergraph.c                         if ((ret = pick_format(filter->outputs[j], NULL)) < 0)
NULL             1149 libavfilter/avfiltergraph.c             if ((ret = pick_format(filter->inputs[j], NULL)) < 0)
NULL             1152 libavfilter/avfiltergraph.c             if ((ret = pick_format(filter->outputs[j], NULL)) < 0)
NULL             1255 libavfilter/avfiltergraph.c             ret = avfilter_graph_create_filter(&fifo_ctx, fifo, name, NULL,
NULL             1256 libavfilter/avfiltergraph.c                                                NULL, graph);
NULL             1409 libavfilter/avfiltergraph.c             r = av_buffersink_get_frame_flags(oldest->dst, NULL,
NULL               32 libavfilter/boxblur.c     NULL
NULL               91 libavfilter/boxblur.c                                  NULL, NULL, NULL, NULL, NULL, 0, ctx); \
NULL               90 libavfilter/bufferqueue.h     return index < queue->available ? BUCKET(index) : NULL;
NULL              103 libavfilter/bufferqueue.h     queue->queue[queue->head] = NULL;
NULL               77 libavfilter/buffersink.c         buf->peeked_frame = NULL;
NULL              134 libavfilter/buffersink.c         return NULL;
NULL              145 libavfilter/buffersink.c         return NULL;
NULL              214 libavfilter/buffersink.c     AVFilterFormats *formats = NULL;
NULL              236 libavfilter/buffersink.c     AVFilterFormats *formats = NULL;
NULL              237 libavfilter/buffersink.c     AVFilterChannelLayouts *layouts = NULL;
NULL              274 libavfilter/buffersink.c         formats = NULL;
NULL              289 libavfilter/buffersink.c     { NULL },
NULL              299 libavfilter/buffersink.c     { NULL },
NULL              311 libavfilter/buffersink.c     { NULL }
NULL              323 libavfilter/buffersink.c     .outputs       = NULL,
NULL              331 libavfilter/buffersink.c     { NULL }
NULL              343 libavfilter/buffersink.c     .outputs       = NULL,
NULL               91 libavfilter/buffersrc.c         return NULL;
NULL              157 libavfilter/buffersrc.c     AVFrame *copy = NULL;
NULL              297 libavfilter/buffersrc.c     { "width",         NULL,                     OFFSET(w),                AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
NULL              298 libavfilter/buffersrc.c     { "video_size",    NULL,                     OFFSET(w),                AV_OPT_TYPE_IMAGE_SIZE,                .flags = V },
NULL              299 libavfilter/buffersrc.c     { "height",        NULL,                     OFFSET(h),                AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
NULL              300 libavfilter/buffersrc.c     { "pix_fmt",       NULL,                     OFFSET(pix_fmt),          AV_OPT_TYPE_PIXEL_FMT, { .i64 = AV_PIX_FMT_NONE }, .min = AV_PIX_FMT_NONE, .max = INT_MAX, .flags = V },
NULL              303 libavfilter/buffersrc.c     { "time_base",     NULL,                     OFFSET(time_base),        AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
NULL              304 libavfilter/buffersrc.c     { "frame_rate",    NULL,                     OFFSET(frame_rate),       AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
NULL              306 libavfilter/buffersrc.c     { "sws_param",     NULL,                     OFFSET(sws_param),        AV_OPT_TYPE_STRING,                    .flags = V },
NULL              308 libavfilter/buffersrc.c     { NULL },
NULL              314 libavfilter/buffersrc.c     { "time_base",      NULL, OFFSET(time_base),           AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, INT_MAX, A },
NULL              315 libavfilter/buffersrc.c     { "sample_rate",    NULL, OFFSET(sample_rate),         AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, A },
NULL              316 libavfilter/buffersrc.c     { "sample_fmt",     NULL, OFFSET(sample_fmt),          AV_OPT_TYPE_SAMPLE_FMT, { .i64 = AV_SAMPLE_FMT_NONE }, .min = AV_SAMPLE_FMT_NONE, .max = INT_MAX, .flags = A },
NULL              317 libavfilter/buffersrc.c     { "channel_layout", NULL, OFFSET(channel_layout_str),  AV_OPT_TYPE_STRING,             .flags = A },
NULL              318 libavfilter/buffersrc.c     { "channels",       NULL, OFFSET(channels),            AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, A },
NULL              319 libavfilter/buffersrc.c     { NULL },
NULL              382 libavfilter/buffersrc.c     AVFilterChannelLayouts *channel_layouts = NULL;
NULL              383 libavfilter/buffersrc.c     AVFilterFormats *formats = NULL;
NULL              384 libavfilter/buffersrc.c     AVFilterFormats *samplerates = NULL;
NULL              460 libavfilter/buffersrc.c     { NULL }
NULL              472 libavfilter/buffersrc.c     .inputs    = NULL,
NULL              484 libavfilter/buffersrc.c     { NULL }
NULL              496 libavfilter/buffersrc.c     .inputs    = NULL,
NULL              133 libavfilter/colorspace.c         return NULL;
NULL              136 libavfilter/colorspace.c         return NULL;
NULL               56 libavfilter/dnn/dnn_backend_native.c     DnnOperand *oprd = NULL;
NULL               69 libavfilter/dnn/dnn_backend_native.c         oprd = NULL;
NULL              120 libavfilter/dnn/dnn_backend_native.c     DNNModel *model = NULL;
NULL              125 libavfilter/dnn/dnn_backend_native.c     ConvolutionalNetwork *network = NULL;
NULL              132 libavfilter/dnn/dnn_backend_native.c         return NULL;
NULL              243 libavfilter/dnn/dnn_backend_native.c         return NULL;
NULL              254 libavfilter/dnn/dnn_backend_native.c     return NULL;
NULL               65 libavfilter/dnn/dnn_backend_native_layer_conv2d.c     conv_params->biases = NULL;
NULL               31 libavfilter/dnn/dnn_backend_native_layers.c     {NULL, NULL},
NULL               56 libavfilter/dnn/dnn_backend_tf.c     unsigned char *graph_data = NULL;
NULL               61 libavfilter/dnn/dnn_backend_tf.c         return NULL;
NULL               69 libavfilter/dnn/dnn_backend_tf.c         return NULL;
NULL               75 libavfilter/dnn/dnn_backend_tf.c         return NULL;
NULL              181 libavfilter/dnn/dnn_backend_tf.c                 tf_model->output_tensors[i] = NULL;
NULL              209 libavfilter/dnn/dnn_backend_tf.c         TF_SessionRun(tf_model->session, NULL,
NULL              210 libavfilter/dnn/dnn_backend_tf.c                       NULL, NULL, 0,
NULL              211 libavfilter/dnn/dnn_backend_tf.c                       NULL, NULL, 0,
NULL              212 libavfilter/dnn/dnn_backend_tf.c                       &init_op, 1, NULL, tf_model->status);
NULL              450 libavfilter/dnn/dnn_backend_tf.c     tensor = TF_AllocateTensor(TF_FLOAT, NULL, 0, TF_DataTypeSize(TF_FLOAT));
NULL              490 libavfilter/dnn/dnn_backend_tf.c     DNNModel *native_model = NULL;
NULL              577 libavfilter/dnn/dnn_backend_tf.c     DNNModel *model = NULL;
NULL              578 libavfilter/dnn/dnn_backend_tf.c     TFModel *tf_model = NULL;
NULL              582 libavfilter/dnn/dnn_backend_tf.c         return NULL;
NULL              588 libavfilter/dnn/dnn_backend_tf.c         return NULL;
NULL              596 libavfilter/dnn/dnn_backend_tf.c             return NULL;
NULL              620 libavfilter/dnn/dnn_backend_tf.c             tf_model->output_tensors[i] = NULL;
NULL              624 libavfilter/dnn/dnn_backend_tf.c     TF_SessionRun(tf_model->session, NULL,
NULL              627 libavfilter/dnn/dnn_backend_tf.c                   NULL, 0, NULL, tf_model->status);
NULL              667 libavfilter/dnn/dnn_backend_tf.c                     tf_model->output_tensors[i] = NULL;
NULL               37 libavfilter/dnn/dnn_interface.c         return NULL;
NULL               53 libavfilter/dnn/dnn_interface.c         return NULL;
NULL               57 libavfilter/dnn/dnn_interface.c         av_log(NULL, AV_LOG_ERROR, "Module backend_type is not native or tensorflow\n");
NULL               59 libavfilter/dnn/dnn_interface.c         return NULL;
NULL              282 libavfilter/drawutils.c         av_log(NULL, AV_LOG_WARNING,
NULL              455 libavfilter/drawutils.c     clip_interval(dst_w, &x0, &w, NULL);
NULL              456 libavfilter/drawutils.c     clip_interval(dst_h, &y0, &h, NULL);
NULL              735 libavfilter/drawutils.c     AVFilterFormats *fmts = NULL;
NULL              741 libavfilter/drawutils.c             return NULL;
NULL              299 libavfilter/ebur128.c     return NULL;
NULL              312 libavfilter/ebur128.c     *st = NULL;
NULL              473 libavfilter/ebur128.c                 ebur128_calc_gating_block(st, st->d->samples_in_100ms * 4, NULL);      \
NULL               45 libavfilter/f_bench.c     { NULL }                                                                                                            \
NULL               72 libavfilter/f_bench.c         AVDictionaryEntry *e = av_dict_get(in->metadata, START_TIME_KEY, NULL, 0);
NULL               74 libavfilter/f_bench.c             const int64_t start = strtoll(e->value, NULL, 0);
NULL               83 libavfilter/f_bench.c         av_dict_set(&in->metadata, START_TIME_KEY, NULL, 0);
NULL               99 libavfilter/f_bench.c     { NULL }
NULL              107 libavfilter/f_bench.c     { NULL }
NULL              131 libavfilter/f_bench.c     { NULL }
NULL              139 libavfilter/f_bench.c     { NULL }
NULL               94 libavfilter/f_cue.c     { NULL }
NULL              106 libavfilter/f_cue.c     { NULL }
NULL              114 libavfilter/f_cue.c     { NULL }
NULL              137 libavfilter/f_cue.c     { NULL }
NULL              145 libavfilter/f_cue.c     { NULL }
NULL               84 libavfilter/f_drawgraph.c     { NULL }
NULL               87 libavfilter/f_drawgraph.c static const char *const var_names[] = {   "MAX",   "MIN",   "VAL", NULL };
NULL              103 libavfilter/f_drawgraph.c                                 NULL, NULL, NULL, NULL, 0, ctx);
NULL              113 libavfilter/f_drawgraph.c         s->values[0] = av_fast_realloc(NULL, &s->values_size[0], 2000);
NULL              114 libavfilter/f_drawgraph.c         s->values[1] = av_fast_realloc(NULL, &s->values_size[1], 2000);
NULL              115 libavfilter/f_drawgraph.c         s->values[2] = av_fast_realloc(NULL, &s->values_size[2], 2000);
NULL              116 libavfilter/f_drawgraph.c         s->values[3] = av_fast_realloc(NULL, &s->values_size[3], 2000);
NULL              166 libavfilter/f_drawgraph.c     AVFrame *clone = NULL;
NULL              221 libavfilter/f_drawgraph.c         e = av_dict_get(metadata, s->key[i], NULL, 0);
NULL              239 libavfilter/f_drawgraph.c         fg = av_expr_eval(s->fg_expr[i], values, NULL);
NULL              365 libavfilter/f_drawgraph.c                 fg = av_expr_eval(s->fg_expr[i], values, NULL);
NULL              461 libavfilter/f_drawgraph.c     { NULL }
NULL              471 libavfilter/f_drawgraph.c     { NULL }
NULL              499 libavfilter/f_drawgraph.c     { NULL }
NULL              509 libavfilter/f_drawgraph.c     { NULL }
NULL              197 libavfilter/f_ebur128.c     { NULL },
NULL              487 libavfilter/f_ebur128.c         return NULL;
NULL             1009 libavfilter/f_ebur128.c     { NULL }
NULL             1020 libavfilter/f_ebur128.c     .outputs       = NULL,
NULL               75 libavfilter/f_graphmonitor.c         { "full",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=0},   0, 0, VF, "mode" },
NULL               76 libavfilter/f_graphmonitor.c         { "compact",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1},   0, 0, VF, "mode" },
NULL               79 libavfilter/f_graphmonitor.c         { "queue",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_QUEUE},   0, 0, VF, "flags" },
NULL               80 libavfilter/f_graphmonitor.c         { "frame_count_in",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_FCOUT},   0, 0, VF, "flags" },
NULL               81 libavfilter/f_graphmonitor.c         { "frame_count_out",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_FCIN},    0, 0, VF, "flags" },
NULL               82 libavfilter/f_graphmonitor.c         { "pts",              NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_PTS},     0, 0, VF, "flags" },
NULL               83 libavfilter/f_graphmonitor.c         { "time",             NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_TIME},    0, 0, VF, "flags" },
NULL               84 libavfilter/f_graphmonitor.c         { "timebase",         NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_TB},      0, 0, VF, "flags" },
NULL               85 libavfilter/f_graphmonitor.c         { "format",           NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_FMT},     0, 0, VF, "flags" },
NULL               86 libavfilter/f_graphmonitor.c         { "size",             NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_SIZE},    0, 0, VF, "flags" },
NULL               87 libavfilter/f_graphmonitor.c         { "rate",             NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_RATE},    0, 0, VF, "flags" },
NULL               90 libavfilter/f_graphmonitor.c     { NULL }
NULL              318 libavfilter/f_graphmonitor.c         AVFrame *frame = NULL;
NULL              375 libavfilter/f_graphmonitor.c     { NULL }
NULL              384 libavfilter/f_graphmonitor.c     { NULL }
NULL              410 libavfilter/f_graphmonitor.c     { NULL }
NULL              419 libavfilter/f_graphmonitor.c     { NULL }
NULL               59 libavfilter/f_interleave.c    { NULL }                                                         \
NULL              230 libavfilter/f_interleave.c     { NULL }
NULL              258 libavfilter/f_interleave.c     { NULL }
NULL              221 libavfilter/f_loop.c     AVFrame *frame = NULL;
NULL              262 libavfilter/f_loop.c     { NULL }
NULL              273 libavfilter/f_loop.c     { NULL }
NULL              281 libavfilter/f_loop.c     { NULL }
NULL              395 libavfilter/f_loop.c     AVFrame *frame = NULL;
NULL              436 libavfilter/f_loop.c     { NULL }
NULL              446 libavfilter/f_loop.c     { NULL }
NULL              454 libavfilter/f_loop.c     { NULL }
NULL               64 libavfilter/f_metadata.c     NULL
NULL              104 libavfilter/f_metadata.c     { "key",   "set metadata key",       OFFSET(key),    AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, FLAGS }, \
NULL              105 libavfilter/f_metadata.c     { "value", "set metadata value",     OFFSET(value),  AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, FLAGS }, \
NULL              107 libavfilter/f_metadata.c     {   "same_str",    NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_SAME_STR },    0, 3, FLAGS, "function" }, \
NULL              108 libavfilter/f_metadata.c     {   "starts_with", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_STARTS_WITH }, 0, 0, FLAGS, "function" }, \
NULL              109 libavfilter/f_metadata.c     {   "less",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_LESS    },     0, 3, FLAGS, "function" }, \
NULL              110 libavfilter/f_metadata.c     {   "equal",       NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_EQUAL   },     0, 3, FLAGS, "function" }, \
NULL              111 libavfilter/f_metadata.c     {   "greater",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_GREATER },     0, 3, FLAGS, "function" }, \
NULL              112 libavfilter/f_metadata.c     {   "expr",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_EXPR    },     0, 3, FLAGS, "function" }, \
NULL              113 libavfilter/f_metadata.c     {   "ends_with",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_ENDS_WITH },   0, 0, FLAGS, "function" }, \
NULL              114 libavfilter/f_metadata.c     { "expr", "set expression for expr function", OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, FLAGS }, \
NULL              115 libavfilter/f_metadata.c     { "file", "set file where to print metadata information", OFFSET(file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS }, \
NULL              117 libavfilter/f_metadata.c     { NULL } \
NULL              178 libavfilter/f_metadata.c     return av_expr_eval(s->expr, s->var_values, NULL);
NULL              253 libavfilter/f_metadata.c                                  var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
NULL              265 libavfilter/f_metadata.c     s->avio_context = NULL;
NULL              293 libavfilter/f_metadata.c     s->expr = NULL;
NULL              310 libavfilter/f_metadata.c     e = av_dict_get(*metadata, !s->key ? "" : s->key, NULL,
NULL              339 libavfilter/f_metadata.c             while ((e = av_dict_get(*metadata, "", e, AV_DICT_IGNORE_SUFFIX)) != NULL) {
NULL              352 libavfilter/f_metadata.c             av_dict_set(metadata, s->key, NULL, 0);
NULL              375 libavfilter/f_metadata.c     { NULL }
NULL              383 libavfilter/f_metadata.c     { NULL }
NULL              410 libavfilter/f_metadata.c     { NULL }
NULL              418 libavfilter/f_metadata.c     { NULL }
NULL               54 libavfilter/f_perms.c     { NULL }
NULL              125 libavfilter/f_perms.c     { NULL }
NULL              133 libavfilter/f_perms.c     { NULL }
NULL              158 libavfilter/f_perms.c     { NULL }
NULL              166 libavfilter/f_perms.c     { NULL }
NULL               71 libavfilter/f_realtime.c     { NULL }
NULL               84 libavfilter/f_realtime.c     { NULL }
NULL               92 libavfilter/f_realtime.c     { NULL }
NULL              116 libavfilter/f_realtime.c     { NULL }
NULL              124 libavfilter/f_realtime.c     { NULL }
NULL               42 libavfilter/f_reverse.c     s->pts = av_fast_realloc(NULL, &s->pts_size,
NULL               47 libavfilter/f_reverse.c     s->frames = av_fast_realloc(NULL, &s->frames_size,
NULL              111 libavfilter/f_reverse.c         s->frames[s->nb_frames - 1] = NULL;
NULL              124 libavfilter/f_reverse.c     { NULL }
NULL              133 libavfilter/f_reverse.c     { NULL }
NULL              271 libavfilter/f_reverse.c         s->frames[s->nb_frames - 1] = NULL;
NULL              285 libavfilter/f_reverse.c     { NULL }
NULL              294 libavfilter/f_reverse.c     { NULL }
NULL               89 libavfilter/f_select.c     NULL
NULL              169 libavfilter/f_select.c     { NULL }                                                            \
NULL              180 libavfilter/f_select.c                              var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
NULL              309 libavfilter/f_select.c     AVDictionaryEntry *start_time_entry = av_dict_get(metadata, "lavf.concatdec.start_time", NULL, 0);
NULL              310 libavfilter/f_select.c     AVDictionaryEntry *duration_entry = av_dict_get(metadata, "lavf.concatdec.duration", NULL, 0);
NULL              312 libavfilter/f_select.c         int64_t start_time = strtoll(start_time_entry->value, NULL, 10);
NULL              315 libavfilter/f_select.c               int64_t duration = strtoll(duration_entry->value, NULL, 10);
NULL              369 libavfilter/f_select.c     select->select = res = av_expr_eval(select->expr, select->var_values, NULL);
NULL              441 libavfilter/f_select.c     select->expr = NULL;
NULL              479 libavfilter/f_select.c     { NULL }
NULL              543 libavfilter/f_select.c     { NULL }
NULL               49 libavfilter/f_sendcmd.c     NULL
NULL              108 libavfilter/f_sendcmd.c     { "commands", "set commands", OFFSET(commands_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              109 libavfilter/f_sendcmd.c     { "c",        "set commands", OFFSET(commands_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              110 libavfilter/f_sendcmd.c     { "filename", "set commands file",  OFFSET(commands_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              111 libavfilter/f_sendcmd.c     { "f",        "set commands file",  OFFSET(commands_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              112 libavfilter/f_sendcmd.c     { NULL }
NULL              228 libavfilter/f_sendcmd.c     *cmds = NULL;
NULL              349 libavfilter/f_sendcmd.c     *intervals = NULL;
NULL              539 libavfilter/f_sendcmd.c                                                           NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
NULL              589 libavfilter/f_sendcmd.c     { NULL }
NULL              597 libavfilter/f_sendcmd.c     { NULL }
NULL              624 libavfilter/f_sendcmd.c     { NULL }
NULL              632 libavfilter/f_sendcmd.c     { NULL }
NULL               74 libavfilter/f_sidedata.c     { NULL } \
NULL              102 libavfilter/f_sidedata.c     { NULL } \
NULL              123 libavfilter/f_sidedata.c     AVFrameSideData *sd = NULL;
NULL              163 libavfilter/f_sidedata.c     { NULL }
NULL              171 libavfilter/f_sidedata.c     { NULL }
NULL              197 libavfilter/f_sidedata.c     { NULL }
NULL              205 libavfilter/f_sidedata.c     { NULL }
NULL               47 libavfilter/f_streamselect.c     { "map",     "input indexes to remap to outputs", OFFSET(map_str),    AV_OPT_TYPE_STRING, {.str=NULL},              .flags=TFLAGS },
NULL               48 libavfilter/f_streamselect.c     { NULL }
NULL              308 libavfilter/f_streamselect.c     AVFilterFormats *formats, *rates = NULL;
NULL              309 libavfilter/f_streamselect.c     AVFilterChannelLayouts *layouts = NULL;
NULL               48 libavfilter/f_zmq.c     { NULL }
NULL              217 libavfilter/f_zmq.c     { NULL }
NULL              225 libavfilter/f_zmq.c     { NULL }
NULL              252 libavfilter/f_zmq.c     { NULL }
NULL              260 libavfilter/f_zmq.c     { NULL }
NULL              150 libavfilter/fifo.c     AVFrame *head = s->root.next ? s->root.next->frame : NULL;
NULL              225 libavfilter/fifo.c         s->out = NULL;
NULL              261 libavfilter/fifo.c     { NULL }
NULL              270 libavfilter/fifo.c     { NULL }
NULL              289 libavfilter/fifo.c     { NULL }
NULL              298 libavfilter/fifo.c     { NULL }
NULL               75 libavfilter/formats.c                         av_log(NULL, AV_LOG_ERROR, "Duplicate formats in %s detected\n", __FUNCTION__); \
NULL               78 libavfilter/formats.c                         return NULL;                                            \
NULL               95 libavfilter/formats.c     AVFilterFormats *ret = NULL;
NULL              125 libavfilter/formats.c         return NULL;
NULL              136 libavfilter/formats.c     return NULL;
NULL              142 libavfilter/formats.c     AVFilterFormats *ret = NULL;
NULL              163 libavfilter/formats.c     return NULL;
NULL              169 libavfilter/formats.c     AVFilterChannelLayouts *ret = NULL;
NULL              190 libavfilter/formats.c                 return NULL;
NULL              251 libavfilter/formats.c     return NULL;
NULL              273 libavfilter/formats.c         return NULL;                                                    \
NULL              279 libavfilter/formats.c             return NULL;                                                \
NULL              351 libavfilter/formats.c     AVFilterFormats *ret = NULL;
NULL              354 libavfilter/formats.c         const AVPixFmtDescriptor *desc = NULL;
NULL              357 libavfilter/formats.c                 return NULL;
NULL              363 libavfilter/formats.c                 return NULL;
NULL              374 libavfilter/formats.c     AVFilterFormats *formats = NULL;
NULL              414 libavfilter/formats.c     AVFilterFormats *ret = NULL;
NULL              420 libavfilter/formats.c                 return NULL;
NULL              435 libavfilter/formats.c         return NULL;
NULL              444 libavfilter/formats.c         return NULL;
NULL              503 libavfilter/formats.c     *ref = NULL;                                                   \
NULL              525 libavfilter/formats.c         *oldref = NULL;                         \
NULL               62 libavfilter/framepool.c         return NULL;
NULL               66 libavfilter/framepool.c         return NULL;
NULL               74 libavfilter/framepool.c     if ((ret = av_image_check_size2(width, height, INT64_MAX, format, 0, NULL)) < 0) {
NULL              116 libavfilter/framepool.c     return NULL;
NULL              130 libavfilter/framepool.c         return NULL;
NULL              146 libavfilter/framepool.c     pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
NULL              154 libavfilter/framepool.c     return NULL;
NULL              203 libavfilter/framepool.c         return NULL;
NULL              234 libavfilter/framepool.c             av_assert0(frame->data[1] != NULL);
NULL              281 libavfilter/framepool.c     return NULL;
NULL               71 libavfilter/framequeue.c             FFFrameBucket *nq = av_realloc_array(NULL, na, sizeof(*nq));
NULL               45 libavfilter/framesync.c     { NULL }
NULL              193 libavfilter/framesync.c                 fs->in[i].frame_next = NULL;
NULL              241 libavfilter/framesync.c     fs->in[in].frame_next = NULL;
NULL              255 libavfilter/framesync.c         *rframe = NULL;
NULL              275 libavfilter/framesync.c             fs->in[in].frame = NULL;
NULL              298 libavfilter/framesync.c     AVFrame *frame = NULL;
NULL              372 libavfilter/framesync.c     AVFrame *mainpic = NULL, *secondpic = NULL;
NULL              383 libavfilter/framesync.c         secondpic = NULL;
NULL              399 libavfilter/framesync.c         *f1 = NULL;
NULL              307 libavfilter/framesync.h     return prev ? NULL : ff_framesync_get_class(); \
NULL              312 libavfilter/framesync.h     return prev ? NULL : &s->field; \
NULL              157 libavfilter/glslang.cpp         return NULL;
NULL              207 libavfilter/glslang.cpp     GlslangToSpv(*prog->getIntermediate(lang[stage]), spirv, NULL, &options);
NULL               80 libavfilter/graphdump.c             max_in_fmt = FFMAX(max_in_fmt, print_link_prop(NULL, l));
NULL               87 libavfilter/graphdump.c             max_out_fmt = FFMAX(max_out_fmt, print_link_prop(NULL, l));
NULL              157 libavfilter/graphdump.c     char *dump = NULL;
NULL              101 libavfilter/graphparser.c     const char *inst_name = NULL, *filt_name = NULL;
NULL              102 libavfilter/graphparser.c     char *tmp_args = NULL;
NULL              157 libavfilter/graphparser.c         *filt_ctx = NULL;
NULL              183 libavfilter/graphparser.c     char *opts = NULL;
NULL              224 libavfilter/graphparser.c         ret->next = NULL;
NULL              245 libavfilter/graphparser.c     *element = NULL;
NULL              259 libavfilter/graphparser.c             p->next = NULL;
NULL              299 libavfilter/graphparser.c     AVFilterInOut *parsed_inputs = NULL;
NULL              414 libavfilter/graphparser.c     AVFilterInOut *curr_inputs = NULL, *open_inputs = NULL, *open_outputs = NULL;
NULL              469 libavfilter/graphparser.c     *inputs  = NULL;
NULL              470 libavfilter/graphparser.c     *outputs = NULL;
NULL              480 libavfilter/graphparser.c     AVFilterInOut *cur, *match, *inputs = NULL, *outputs = NULL;
NULL              545 libavfilter/graphparser.c     AVFilterInOut *curr_inputs = NULL;
NULL              546 libavfilter/graphparser.c     AVFilterInOut *open_inputs  = open_inputs_ptr  ? *open_inputs_ptr  : NULL;
NULL              547 libavfilter/graphparser.c     AVFilterInOut *open_outputs = open_outputs_ptr ? *open_outputs_ptr : NULL;
NULL              239 libavfilter/internal.h #define FF_TPRINTF_START(ctx, func) ff_tlog(NULL, "%-16s: ", #func)
NULL               28 libavfilter/lavfutils.c     AVInputFormat *iformat = NULL;
NULL               29 libavfilter/lavfutils.c     AVFormatContext *format_ctx = NULL;
NULL               36 libavfilter/lavfutils.c     AVDictionary *opt=NULL;
NULL               41 libavfilter/lavfutils.c     if ((ret = avformat_open_input(&format_ctx, filename, iformat, NULL)) < 0) {
NULL               47 libavfilter/lavfutils.c     if ((ret = avformat_find_stream_info(format_ctx, NULL)) < 0) {
NULL               31 libavfilter/lswsutils.c                                                 0, NULL, NULL, NULL);
NULL              100 libavfilter/opencl.c     AVBufferRef       *output_frames_ref = NULL;
NULL              180 libavfilter/opencl.c                                              NULL, &cle);
NULL              187 libavfilter/opencl.c                          NULL, NULL, NULL);
NULL              196 libavfilter/opencl.c                                   CL_PROGRAM_BUILD_LOG, 0, NULL, &log_length);
NULL              203 libavfilter/opencl.c                                             log_length, log, NULL);
NULL              212 libavfilter/opencl.c         ctx->program = NULL;
NULL              223 libavfilter/opencl.c     char *src = NULL;
NULL              302 libavfilter/opencl.c                              &type, NULL);
NULL              315 libavfilter/opencl.c                          &width, NULL);
NULL              323 libavfilter/opencl.c                          &height, NULL);
NULL              358 libavfilter/opencl.c     clGetEventProfilingInfo(event, CL_PROFILING_COMMAND_START, sizeof(time_start), &time_start, NULL);
NULL              359 libavfilter/opencl.c     clGetEventProfilingInfo(event, CL_PROFILING_COMMAND_END, sizeof(time_end), &time_end, NULL);
NULL              163 libavfilter/opencl.h         NULL,                                                                                       \
NULL              167 libavfilter/opencl.h         NULL,                                                                                       \
NULL              223 libavfilter/opencl.h         NULL,                                                                                   \
NULL              237 libavfilter/opencl.h #define CL_CREATE_BUFFER(ctx, buffer_name, size) CL_CREATE_BUFFER_FLAGS(ctx, buffer_name, 0, size, NULL)
NULL               78 libavfilter/pthread.c     nb_threads = avpriv_slicethread_create(&c->thread, c, worker_func, NULL, nb_threads);
NULL              236 libavfilter/qsvvpp.c             list->surface = NULL;
NULL              267 libavfilter/qsvvpp.c             av_log(NULL, AV_LOG_ERROR, "Can't alloc new output frame.\n");
NULL              268 libavfilter/qsvvpp.c             return NULL;
NULL              287 libavfilter/qsvvpp.c         return NULL;
NULL              298 libavfilter/qsvvpp.c             return NULL;
NULL              309 libavfilter/qsvvpp.c                 return NULL;
NULL              316 libavfilter/qsvvpp.c                 return NULL;
NULL              326 libavfilter/qsvvpp.c             return NULL;
NULL              360 libavfilter/qsvvpp.c         return NULL;
NULL              367 libavfilter/qsvvpp.c             return NULL;
NULL              372 libavfilter/qsvvpp.c             return NULL;
NULL              383 libavfilter/qsvvpp.c             return NULL;
NULL              391 libavfilter/qsvvpp.c             return NULL;
NULL              406 libavfilter/qsvvpp.c     AVQSVFramesContext  *in_frames_hwctx = NULL;
NULL              407 libavfilter/qsvvpp.c     AVQSVFramesContext *out_frames_hwctx = NULL;
NULL              712 libavfilter/qsvvpp.c                                                out_frame->surface, NULL, &sync);
NULL              736 libavfilter/qsvvpp.c         out_frame->frame = NULL;
NULL               39 libavfilter/scale_eval.c     NULL
NULL               85 libavfilter/scale_eval.c                            NULL, NULL, NULL, NULL, NULL, 0, log_ctx);
NULL               90 libavfilter/scale_eval.c                                       NULL, NULL, NULL, NULL, NULL, 0, log_ctx)) < 0)
NULL               96 libavfilter/scale_eval.c                                       NULL, NULL, NULL, NULL, NULL, 0, log_ctx)) < 0)
NULL               61 libavfilter/scene_sad.c     ff_scene_sad_fn sad = NULL;
NULL               62 libavfilter/setpts.c     NULL
NULL              104 libavfilter/setpts.c                              var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
NULL              178 libavfilter/setpts.c     return av_expr_eval(setpts->expr, setpts->var_values, NULL);
NULL              245 libavfilter/setpts.c         double d = eval_pts(setpts, inlink, NULL, pts);
NULL              265 libavfilter/setpts.c     setpts->expr = NULL;
NULL              272 libavfilter/setpts.c     { NULL }
NULL              285 libavfilter/setpts.c     { NULL }
NULL              293 libavfilter/setpts.c     { NULL }
NULL              322 libavfilter/setpts.c     { NULL }
NULL              330 libavfilter/setpts.c     { NULL }
NULL               45 libavfilter/settb.c     NULL
NULL               68 libavfilter/settb.c     { NULL }                                                                               \
NULL               88 libavfilter/settb.c                                       NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
NULL              170 libavfilter/settb.c     { NULL }
NULL              179 libavfilter/settb.c     { NULL }
NULL              203 libavfilter/settb.c     { NULL }
NULL              212 libavfilter/settb.c     { NULL }
NULL              180 libavfilter/signature_lookup.c     MatchingInfo *cands = NULL, *c = NULL;
NULL              232 libavfilter/signature_lookup.c     if (f->next == NULL) {
NULL              282 libavfilter/signature_lookup.c                     if (c == NULL) {
NULL              298 libavfilter/signature_lookup.c                     c->next = NULL;
NULL              427 libavfilter/signature_lookup.c     for (; infos != NULL; infos = infos->next) {
NULL              506 libavfilter/signature_lookup.c             bestmatch.next = NULL;
NULL              561 libavfilter/signature_lookup.c             for (i = infos; i != NULL; i = i->next) {
NULL              104 libavfilter/split.c     { NULL }
NULL              119 libavfilter/split.c     { NULL }
NULL              130 libavfilter/split.c     .outputs     = NULL,
NULL              140 libavfilter/split.c     { NULL }
NULL              151 libavfilter/split.c     .outputs     = NULL,
NULL               85 libavfilter/src_movie.c     { "filename",     NULL,                      OFFSET(file_name),    AV_OPT_TYPE_STRING,                                    .flags = FLAGS },
NULL               96 libavfilter/src_movie.c     { NULL },
NULL              106 libavfilter/src_movie.c     AVStream *found = NULL;
NULL              112 libavfilter/src_movie.c         ret = av_find_best_stream(avf, type, stream_id, -1, NULL, 0);
NULL              116 libavfilter/src_movie.c             return NULL;
NULL              125 libavfilter/src_movie.c             return NULL;
NULL              144 libavfilter/src_movie.c         return NULL;
NULL              151 libavfilter/src_movie.c         return NULL;
NULL              178 libavfilter/src_movie.c     if ((ret = avcodec_open2(st->codec_ctx, codec, NULL)) < 0) {
NULL              212 libavfilter/src_movie.c     AVInputFormat *iformat = NULL;
NULL              244 libavfilter/src_movie.c     iformat = movie->format_name ? av_find_input_format(movie->format_name) : NULL;
NULL              246 libavfilter/src_movie.c     movie->format_ctx = NULL;
NULL              247 libavfilter/src_movie.c     if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) {
NULL              252 libavfilter/src_movie.c     if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0)
NULL              286 libavfilter/src_movie.c         stream_specs = NULL; /* for next strtok */
NULL              296 libavfilter/src_movie.c     if (av_strtok(NULL, "+", &cursor))
NULL              517 libavfilter/src_movie.c         pkt->data = NULL;
NULL              544 libavfilter/src_movie.c         movie->pkt.data = NULL;
NULL              555 libavfilter/src_movie.c         pkt->data = NULL;
NULL              669 libavfilter/src_movie.c     .inputs    = NULL,
NULL              670 libavfilter/src_movie.c     .outputs   = NULL,
NULL              690 libavfilter/src_movie.c     .inputs     = NULL,
NULL              691 libavfilter/src_movie.c     .outputs    = NULL,
NULL               80 libavfilter/tests/filtfmts.c     const char *filter_args = NULL;
NULL              134 libavfilter/tests/formats.c         ret = ff_parse_channel_layout(&layout, &count, teststrings[i], NULL);
NULL              155 libavfilter/transform.c     uint8_t (*func)(float, float, const uint8_t *, int, int, int, uint8_t) = NULL;
NULL              186 libavfilter/trim.c     { NULL }
NULL              199 libavfilter/trim.c     { NULL }
NULL              207 libavfilter/trim.c     { NULL }
NULL              341 libavfilter/trim.c     { NULL }
NULL              354 libavfilter/trim.c     { NULL }
NULL              362 libavfilter/trim.c     { NULL }
NULL               67 libavfilter/vaapi_vpp.c     ctx->hwctx = NULL;
NULL               99 libavfilter/vaapi_vpp.c     AVVAAPIHWConfig *hwconfig = NULL;
NULL              100 libavfilter/vaapi_vpp.c     AVHWFramesConstraints *constraints = NULL;
NULL              125 libavfilter/vaapi_vpp.c                          VAEntrypointVideoProc, NULL, 0, &ctx->va_config);
NULL              470 libavfilter/vaapi_vpp.c         const VAAPIColourProperties *output_standard = NULL;
NULL              542 libavfilter/vaapi_vpp.c         .output_region           = NULL,
NULL               95 libavfilter/vaf_spectrumsynth.c         { "vertical",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=VERTICAL},   0, 0, V, "orientation" },
NULL               96 libavfilter/vaf_spectrumsynth.c         { "horizontal", NULL, 0, AV_OPT_TYPE_CONST, {.i64=HORIZONTAL}, 0, 0, V, "orientation" },
NULL               97 libavfilter/vaf_spectrumsynth.c     { NULL }
NULL              105 libavfilter/vaf_spectrumsynth.c     AVFilterFormats *formats = NULL;
NULL              106 libavfilter/vaf_spectrumsynth.c     AVFilterChannelLayouts *layout = NULL;
NULL              521 libavfilter/vaf_spectrumsynth.c     { NULL }
NULL              531 libavfilter/vaf_spectrumsynth.c     { NULL }
NULL               75 libavfilter/vf_addroi.c         val = av_expr_eval(ctx->region_expr[i], vars, NULL);
NULL              105 libavfilter/vf_addroi.c         sd = NULL;
NULL              193 libavfilter/vf_addroi.c                             addroi_var_names, NULL, NULL, NULL, NULL,
NULL              213 libavfilter/vf_addroi.c         ctx->region_expr[i] = NULL;
NULL              235 libavfilter/vf_addroi.c     { NULL }
NULL              247 libavfilter/vf_addroi.c     { NULL }
NULL              255 libavfilter/vf_addroi.c     { NULL }
NULL               58 libavfilter/vf_alphamerge.c     AVFilterFormats *main_formats = NULL, *alpha_formats = NULL;
NULL              164 libavfilter/vf_alphamerge.c         s->main_frame = NULL;
NULL              198 libavfilter/vf_alphamerge.c     { NULL }
NULL              207 libavfilter/vf_alphamerge.c     { NULL }
NULL              211 libavfilter/vf_alphamerge.c     { NULL }
NULL              270 libavfilter/vf_amplify.c         ctx->internal->execute(ctx, amplify_frame, &td, NULL, FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
NULL              293 libavfilter/vf_amplify.c     { NULL },
NULL              302 libavfilter/vf_amplify.c     { NULL }
NULL              311 libavfilter/vf_amplify.c     { NULL }
NULL               46 libavfilter/vf_aspect.c     NULL
NULL              107 libavfilter/vf_aspect.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              165 libavfilter/vf_aspect.c     { NULL }
NULL              176 libavfilter/vf_aspect.c     { NULL }
NULL              185 libavfilter/vf_aspect.c     { NULL }
NULL              229 libavfilter/vf_aspect.c     { NULL }
NULL              240 libavfilter/vf_aspect.c     { NULL }
NULL              249 libavfilter/vf_aspect.c     { NULL }
NULL               82 libavfilter/vf_atadenoise.c     { NULL }
NULL              366 libavfilter/vf_atadenoise.c         ctx->internal->execute(ctx, s->filter_slice, &td, NULL,
NULL              435 libavfilter/vf_atadenoise.c     { NULL }
NULL              444 libavfilter/vf_atadenoise.c     { NULL }
NULL               55 libavfilter/vf_avgblur.c     { NULL }
NULL              219 libavfilter/vf_avgblur.c     ctx->internal->execute(ctx, s->filter_horizontally, &td, NULL, FFMIN(height, nb_threads));
NULL              222 libavfilter/vf_avgblur.c     ctx->internal->execute(ctx, s->filter_vertically, &td, NULL, FFMIN(width, nb_threads));
NULL              305 libavfilter/vf_avgblur.c     { NULL }
NULL              313 libavfilter/vf_avgblur.c     { NULL }
NULL              150 libavfilter/vf_avgblur_opencl.c     AVFrame *output = NULL;
NULL              151 libavfilter/vf_avgblur_opencl.c     AVFrame *intermediate = NULL;
NULL              226 libavfilter/vf_avgblur_opencl.c             cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel_horiz, 2, NULL,
NULL              227 libavfilter/vf_avgblur_opencl.c                                          global_work, NULL,
NULL              228 libavfilter/vf_avgblur_opencl.c                                          0, NULL, NULL);
NULL              244 libavfilter/vf_avgblur_opencl.c             cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel_vert, 2, NULL,
NULL              245 libavfilter/vf_avgblur_opencl.c                                          global_work, NULL,
NULL              246 libavfilter/vf_avgblur_opencl.c                                          0, NULL, NULL);
NULL              314 libavfilter/vf_avgblur_opencl.c     { NULL }
NULL              324 libavfilter/vf_avgblur_opencl.c     { NULL }
NULL              337 libavfilter/vf_avgblur_opencl.c     { NULL }
NULL              367 libavfilter/vf_avgblur_opencl.c     { "chroma_radius", "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              368 libavfilter/vf_avgblur_opencl.c     { "cr",            "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              372 libavfilter/vf_avgblur_opencl.c     { "alpha_radius", "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              373 libavfilter/vf_avgblur_opencl.c     { "ar",           "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              377 libavfilter/vf_avgblur_opencl.c     { NULL }
NULL              285 libavfilter/vf_avgblur_vulkan.c                              0, NULL, 0, NULL, FF_ARRAY_ELEMS(bar), bar);
NULL              324 libavfilter/vf_avgblur_vulkan.c     AVFrame *tmp = NULL, *out = NULL;
NULL              377 libavfilter/vf_avgblur_vulkan.c     { NULL },
NULL              389 libavfilter/vf_avgblur_vulkan.c     { NULL }
NULL              398 libavfilter/vf_avgblur_vulkan.c     { NULL }
NULL               43 libavfilter/vf_bbox.c     { NULL }
NULL              114 libavfilter/vf_bbox.c     { NULL }
NULL              122 libavfilter/vf_bbox.c     { NULL }
NULL               63 libavfilter/vf_bilateral.c     { NULL }
NULL              349 libavfilter/vf_bilateral.c     { NULL }
NULL              357 libavfilter/vf_bilateral.c     { NULL }
NULL               45 libavfilter/vf_bitplanenoise.c     { NULL }
NULL              112 libavfilter/vf_bitplanenoise.c     AVFrame *out = s->filter ? NULL : in;
NULL              128 libavfilter/vf_bitplanenoise.c             uint8_t *dst = s->filter ? out->data[plane]: NULL;
NULL              157 libavfilter/vf_bitplanenoise.c             uint16_t *dst = s->filter ? (uint16_t *)out->data[plane] : NULL;
NULL              206 libavfilter/vf_bitplanenoise.c     { NULL }
NULL              214 libavfilter/vf_bitplanenoise.c     { NULL }
NULL               59 libavfilter/vf_blackdetect.c     { NULL }
NULL              190 libavfilter/vf_blackdetect.c     { NULL }
NULL              199 libavfilter/vf_blackdetect.c     { NULL }
NULL              113 libavfilter/vf_blackframe.c     { NULL }
NULL              124 libavfilter/vf_blackframe.c     { NULL }
NULL              132 libavfilter/vf_blackframe.c     { NULL }
NULL               51 libavfilter/vf_blend.c static const char *const var_names[] = {   "X",   "Y",   "W",   "H",   "SW",   "SH",   "T",   "N",   "A",   "B",   "TOP",   "BOTTOM",        NULL };
NULL              104 libavfilter/vf_blend.c     { "c0_expr",  "set color component #0 expression", OFFSET(params[0].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },\
NULL              105 libavfilter/vf_blend.c     { "c1_expr",  "set color component #1 expression", OFFSET(params[1].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },\
NULL              106 libavfilter/vf_blend.c     { "c2_expr",  "set color component #2 expression", OFFSET(params[2].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },\
NULL              107 libavfilter/vf_blend.c     { "c3_expr",  "set color component #3 expression", OFFSET(params[3].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },\
NULL              108 libavfilter/vf_blend.c     { "all_expr", "set expression for all color components", OFFSET(all_expr), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },\
NULL              120 libavfilter/vf_blend.c     { NULL }
NULL              566 libavfilter/vf_blend.c             dst[x] = av_expr_eval(e, values, NULL);                            \
NULL              630 libavfilter/vf_blend.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outh, ff_filter_get_nb_threads(ctx)));
NULL              844 libavfilter/vf_blend.c                                 NULL, NULL, NULL, NULL, 0, ctx);
NULL              876 libavfilter/vf_blend.c     { NULL }
NULL              885 libavfilter/vf_blend.c     { NULL }
NULL              930 libavfilter/vf_blend.c     { NULL }
NULL              941 libavfilter/vf_blend.c     { NULL }
NULL              950 libavfilter/vf_blend.c     { NULL }
NULL              159 libavfilter/vf_bm3d.c     { NULL }
NULL              770 libavfilter/vf_bm3d.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, nb_jobs);
NULL              859 libavfilter/vf_bm3d.c         AVFrame *frame = NULL;
NULL              860 libavfilter/vf_bm3d.c         AVFrame *out = NULL;
NULL              893 libavfilter/vf_bm3d.c     AVFrame *out = NULL, *src, *ref;
NULL              958 libavfilter/vf_bm3d.c         pad.config_props = NULL;
NULL             1066 libavfilter/vf_bm3d.c     { NULL }
NULL             1077 libavfilter/vf_bm3d.c     .inputs        = NULL,
NULL               60 libavfilter/vf_boxblur.c     AVFilterFormats *formats = NULL;
NULL              274 libavfilter/vf_boxblur.c     { "chroma_radius", "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              275 libavfilter/vf_boxblur.c     { "cr",            "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              279 libavfilter/vf_boxblur.c     { "alpha_radius", "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              280 libavfilter/vf_boxblur.c     { "ar",           "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              284 libavfilter/vf_boxblur.c     { NULL }
NULL              296 libavfilter/vf_boxblur.c     { NULL }
NULL              304 libavfilter/vf_boxblur.c     { NULL }
NULL              283 libavfilter/vf_bwdif.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(h, ff_filter_get_nb_threads(ctx)));
NULL              389 libavfilter/vf_bwdif.c     { NULL }
NULL              400 libavfilter/vf_bwdif.c     { NULL }
NULL              410 libavfilter/vf_bwdif.c     { NULL }
NULL              196 libavfilter/vf_cas.c     ctx->internal->execute(ctx, s->do_slice, out, NULL,
NULL              199 libavfilter/vf_cas.c     s->in = NULL;
NULL              233 libavfilter/vf_cas.c     AVFilterFormats *formats = NULL;
NULL              267 libavfilter/vf_cas.c     { NULL }
NULL              275 libavfilter/vf_cas.c     { NULL }
NULL              284 libavfilter/vf_cas.c     { NULL }
NULL              234 libavfilter/vf_chromaber_vulkan.c                              0, NULL, 0, NULL, FF_ARRAY_ELEMS(bar), bar);
NULL              312 libavfilter/vf_chromaber_vulkan.c     { NULL },
NULL              324 libavfilter/vf_chromaber_vulkan.c     { NULL }
NULL              333 libavfilter/vf_chromaber_vulkan.c     { NULL }
NULL              263 libavfilter/vf_chromakey.c     if (res = avctx->internal->execute(avctx, ctx->do_slice, frame, NULL, FFMIN(frame->height, ff_filter_get_nb_threads(avctx))))
NULL              335 libavfilter/vf_chromakey.c     AVFilterFormats *formats = NULL;
NULL              376 libavfilter/vf_chromakey.c     { NULL }
NULL              385 libavfilter/vf_chromakey.c     { NULL }
NULL              396 libavfilter/vf_chromakey.c     { NULL }
NULL              418 libavfilter/vf_chromakey.c     { NULL }
NULL              429 libavfilter/vf_chromakey.c     { NULL }
NULL              438 libavfilter/vf_chromakey.c     { NULL }
NULL              366 libavfilter/vf_chromashift.c     ctx->internal->execute(ctx, s->filter_slice, out, NULL,
NULL              370 libavfilter/vf_chromashift.c     s->in = NULL;
NULL              426 libavfilter/vf_chromashift.c     { NULL },
NULL              436 libavfilter/vf_chromashift.c     { NULL }
NULL              444 libavfilter/vf_chromashift.c     { NULL }
NULL              473 libavfilter/vf_chromashift.c     { NULL },
NULL               97 libavfilter/vf_ciescope.c     {   "ntsc",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<NTSCsystem},      0, 0, FLAGS, "gamuts" },
NULL               98 libavfilter/vf_ciescope.c     {   "470m",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<NTSCsystem},      0, 0, FLAGS, "gamuts" },
NULL               99 libavfilter/vf_ciescope.c     {   "ebu",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<EBUsystem},       0, 0, FLAGS, "gamuts" },
NULL              100 libavfilter/vf_ciescope.c     {   "470bg",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<EBUsystem},       0, 0, FLAGS, "gamuts" },
NULL              101 libavfilter/vf_ciescope.c     {   "smpte",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<SMPTEsystem},     0, 0, FLAGS, "gamuts" },
NULL              102 libavfilter/vf_ciescope.c     {   "240m",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<SMPTE240Msystem}, 0, 0, FLAGS, "gamuts" },
NULL              103 libavfilter/vf_ciescope.c     {   "apple",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<APPLEsystem},     0, 0, FLAGS, "gamuts" },
NULL              104 libavfilter/vf_ciescope.c     {   "widergb",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<wRGBsystem},      0, 0, FLAGS, "gamuts" },
NULL              105 libavfilter/vf_ciescope.c     {   "cie1931",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<CIE1931system},   0, 0, FLAGS, "gamuts" },
NULL              106 libavfilter/vf_ciescope.c     {   "hdtv",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<Rec709system},    0, 0, FLAGS, "gamuts" },
NULL              107 libavfilter/vf_ciescope.c     {   "rec709",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<Rec709system},    0, 0, FLAGS, "gamuts" },
NULL              108 libavfilter/vf_ciescope.c     {   "uhdtv",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<Rec2020system},   0, 0, FLAGS, "gamuts" },
NULL              109 libavfilter/vf_ciescope.c     {   "rec2020",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<Rec2020system},   0, 0, FLAGS, "gamuts" },
NULL              110 libavfilter/vf_ciescope.c     {   "dcip3",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=1<<DCIP3},           0, 0, FLAGS, "gamuts" },
NULL              115 libavfilter/vf_ciescope.c     { "contrast",   NULL, OFFSET(contrast), AV_OPT_TYPE_FLOAT, {.dbl=0.75},  0, 1, FLAGS },
NULL              116 libavfilter/vf_ciescope.c     { "corrgamma",  NULL, OFFSET(correct_gamma), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS },
NULL              117 libavfilter/vf_ciescope.c     { "showwhite",  NULL, OFFSET(show_white), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
NULL              118 libavfilter/vf_ciescope.c     { "gamma",      NULL, OFFSET(igamma), AV_OPT_TYPE_DOUBLE, {.dbl=2.6}, 0.1, 6, FLAGS },
NULL              119 libavfilter/vf_ciescope.c     { NULL }
NULL             1230 libavfilter/vf_ciescope.c     if ((s->f = ff_get_video_buffer(outlink, outlink->w, outlink->h)) == NULL)
NULL             1494 libavfilter/vf_ciescope.c     { NULL }
NULL             1503 libavfilter/vf_ciescope.c     { NULL }
NULL               65 libavfilter/vf_codecview.c     { "qp", NULL, OFFSET(qp), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, .flags = FLAGS },
NULL               75 libavfilter/vf_codecview.c     { NULL }
NULL              302 libavfilter/vf_codecview.c     { NULL }
NULL              310 libavfilter/vf_codecview.c     { NULL }
NULL               72 libavfilter/vf_colorbalance.c     { NULL }
NULL              417 libavfilter/vf_colorbalance.c     ctx->internal->execute(ctx, s->color_balance, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              430 libavfilter/vf_colorbalance.c     { NULL }
NULL              439 libavfilter/vf_colorbalance.c     { NULL }
NULL               74 libavfilter/vf_colorchannelmixer.c     { NULL }
NULL              530 libavfilter/vf_colorchannelmixer.c     ctx->internal->execute(ctx, s->filter_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              561 libavfilter/vf_colorchannelmixer.c     { NULL }
NULL              570 libavfilter/vf_colorchannelmixer.c     { NULL }
NULL              369 libavfilter/vf_colorconstancy.c     ctx->internal->execute(ctx, slice_get_derivative, td, NULL, FFMIN(dim, nb_threads));
NULL              503 libavfilter/vf_colorconstancy.c         ctx->internal->execute(ctx, slice_normalize, &td, NULL, nb_jobs);
NULL              506 libavfilter/vf_colorconstancy.c     ctx->internal->execute(ctx, filter_slice_grey_edge, &td, NULL, nb_jobs);
NULL              634 libavfilter/vf_colorconstancy.c     ctx->internal->execute(ctx, diagonal_transformation, &td, NULL, nb_jobs);
NULL              728 libavfilter/vf_colorconstancy.c     { NULL }
NULL              736 libavfilter/vf_colorconstancy.c     { NULL }
NULL              745 libavfilter/vf_colorconstancy.c     { NULL }
NULL              141 libavfilter/vf_colorkey.c     if (res = avctx->internal->execute(avctx, ctx->do_slice, frame, NULL, FFMIN(frame->height, ff_filter_get_nb_threads(avctx))))
NULL              174 libavfilter/vf_colorkey.c     AVFilterFormats *formats = NULL;
NULL              189 libavfilter/vf_colorkey.c     { NULL }
NULL              198 libavfilter/vf_colorkey.c     { NULL }
NULL              210 libavfilter/vf_colorkey.c     { NULL }
NULL              235 libavfilter/vf_colorkey.c     { NULL }
NULL               96 libavfilter/vf_colorkey_opencl.c     AVFrame *output_frame = NULL;
NULL              151 libavfilter/vf_colorkey_opencl.c         NULL,
NULL              153 libavfilter/vf_colorkey_opencl.c         NULL,
NULL              155 libavfilter/vf_colorkey_opencl.c         NULL,
NULL              156 libavfilter/vf_colorkey_opencl.c         NULL
NULL              209 libavfilter/vf_colorkey_opencl.c     { NULL }
NULL              218 libavfilter/vf_colorkey_opencl.c     { NULL }
NULL              228 libavfilter/vf_colorkey_opencl.c     { NULL }
NULL               69 libavfilter/vf_colorlevels.c     { NULL }
NULL              239 libavfilter/vf_colorlevels.c             ctx->internal->execute(ctx, colorlevel_slice_8, &td, NULL,
NULL              291 libavfilter/vf_colorlevels.c             ctx->internal->execute(ctx, colorlevel_slice_16, &td, NULL,
NULL              308 libavfilter/vf_colorlevels.c     { NULL }
NULL              316 libavfilter/vf_colorlevels.c     { NULL }
NULL               95 libavfilter/vf_colormatrix.c     { NULL }
NULL              476 libavfilter/vf_colormatrix.c         ctx->internal->execute(ctx, process_slice_yuv444p, &td, NULL,
NULL              479 libavfilter/vf_colormatrix.c         ctx->internal->execute(ctx, process_slice_yuv422p, &td, NULL,
NULL              482 libavfilter/vf_colormatrix.c         ctx->internal->execute(ctx, process_slice_yuv420p, &td, NULL,
NULL              485 libavfilter/vf_colormatrix.c         ctx->internal->execute(ctx, process_slice_uyvy422, &td, NULL,
NULL              499 libavfilter/vf_colormatrix.c     { NULL }
NULL              507 libavfilter/vf_colormatrix.c     { NULL }
NULL              194 libavfilter/vf_colorspace.c         return NULL;
NULL              197 libavfilter/vf_colorspace.c         return NULL;
NULL              228 libavfilter/vf_colorspace.c         return NULL;
NULL              231 libavfilter/vf_colorspace.c         return NULL;
NULL              452 libavfilter/vf_colorspace.c     ((d) != NULL && (d)->nb_components == 3 && \
NULL              472 libavfilter/vf_colorspace.c     if (in->color_primaries  != s->in_prm)  s->in_primaries  = NULL;
NULL              473 libavfilter/vf_colorspace.c     if (out->color_primaries != s->out_prm) s->out_primaries = NULL;
NULL              474 libavfilter/vf_colorspace.c     if (in->color_trc        != s->in_trc)  s->in_txchr      = NULL;
NULL              475 libavfilter/vf_colorspace.c     if (out->color_trc       != s->out_trc) s->out_txchr     = NULL;
NULL              477 libavfilter/vf_colorspace.c         in->color_range      != s->in_rng)  s->in_lumacoef   = NULL;
NULL              479 libavfilter/vf_colorspace.c         out->color_range     != s->out_rng) s->out_lumacoef  = NULL;
NULL              874 libavfilter/vf_colorspace.c         ctx->internal->execute(ctx, convert, &td, NULL,
NULL              902 libavfilter/vf_colorspace.c     formats = NULL;
NULL             1046 libavfilter/vf_colorspace.c     { NULL }
NULL             1057 libavfilter/vf_colorspace.c     { NULL }
NULL             1066 libavfilter/vf_colorspace.c     { NULL }
NULL               56 libavfilter/vf_convolution.c     { NULL }
NULL              629 libavfilter/vf_convolution.c     ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN3(s->planeheight[1], s->planewidth[1], s->nb_threads));
NULL              643 libavfilter/vf_convolution.c             char *p, *arg, *saveptr = NULL;
NULL              651 libavfilter/vf_convolution.c                 p = NULL;
NULL              747 libavfilter/vf_convolution.c     { NULL }
NULL              755 libavfilter/vf_convolution.c     { NULL }
NULL              780 libavfilter/vf_convolution.c     { NULL }
NULL              805 libavfilter/vf_convolution.c     { NULL }
NULL              830 libavfilter/vf_convolution.c     { NULL }
NULL              102 libavfilter/vf_convolution_opencl.c     float *matrix = NULL;
NULL              108 libavfilter/vf_convolution_opencl.c     char *p, *arg, *saveptr = NULL;
NULL              122 libavfilter/vf_convolution_opencl.c             p = NULL;
NULL              177 libavfilter/vf_convolution_opencl.c     AVFrame *output = NULL;
NULL              236 libavfilter/vf_convolution_opencl.c             cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              237 libavfilter/vf_convolution_opencl.c                                          global_work, NULL,
NULL              238 libavfilter/vf_convolution_opencl.c                                          0, NULL, NULL);
NULL              248 libavfilter/vf_convolution_opencl.c                                          origin, origin, region, 0, NULL, NULL);
NULL              265 libavfilter/vf_convolution_opencl.c                 cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              266 libavfilter/vf_convolution_opencl.c                                                          global_work, NULL,
NULL              267 libavfilter/vf_convolution_opencl.c                                                          0, NULL, NULL);
NULL              330 libavfilter/vf_convolution_opencl.c     { NULL }
NULL              339 libavfilter/vf_convolution_opencl.c     { NULL }
NULL              360 libavfilter/vf_convolution_opencl.c     { NULL }
NULL              386 libavfilter/vf_convolution_opencl.c     { NULL }
NULL              412 libavfilter/vf_convolution_opencl.c     { NULL }
NULL              438 libavfilter/vf_convolution_opencl.c     { NULL }
NULL               72 libavfilter/vf_convolve.c     { NULL },
NULL              450 libavfilter/vf_convolve.c     AVFrame *mainpic = NULL, *impulsepic = NULL;
NULL              478 libavfilter/vf_convolve.c         ctx->internal->execute(ctx, fft_horizontal, &td, NULL, FFMIN3(MAX_THREADS, n, ff_filter_get_nb_threads(ctx)));
NULL              479 libavfilter/vf_convolve.c         ctx->internal->execute(ctx, fft_vertical, &td, NULL, FFMIN3(MAX_THREADS, n, ff_filter_get_nb_threads(ctx)));
NULL              504 libavfilter/vf_convolve.c             ctx->internal->execute(ctx, fft_horizontal, &td, NULL, FFMIN3(MAX_THREADS, n, ff_filter_get_nb_threads(ctx)));
NULL              505 libavfilter/vf_convolve.c             ctx->internal->execute(ctx, fft_vertical, &td, NULL, FFMIN3(MAX_THREADS, n, ff_filter_get_nb_threads(ctx)));
NULL              513 libavfilter/vf_convolve.c         ctx->internal->execute(ctx, s->filter, &td, NULL, FFMIN3(MAX_THREADS, n, ff_filter_get_nb_threads(ctx)));
NULL              518 libavfilter/vf_convolve.c         ctx->internal->execute(ctx, ifft_vertical, &td, NULL, FFMIN3(MAX_THREADS, n, ff_filter_get_nb_threads(ctx)));
NULL              519 libavfilter/vf_convolve.c         ctx->internal->execute(ctx, ifft_horizontal, &td, NULL, FFMIN3(MAX_THREADS, n, ff_filter_get_nb_threads(ctx)));
NULL              593 libavfilter/vf_convolve.c             s->fft[i][j] = NULL;
NULL              595 libavfilter/vf_convolve.c             s->ifft[i][j] = NULL;
NULL              612 libavfilter/vf_convolve.c     { NULL }
NULL              621 libavfilter/vf_convolve.c     { NULL }
NULL              653 libavfilter/vf_convolve.c     { NULL },
NULL               32 libavfilter/vf_copy.c     AVFilterFormats *formats = NULL;
NULL               78 libavfilter/vf_copy.c     { NULL }
NULL               86 libavfilter/vf_copy.c     { NULL }
NULL               49 libavfilter/vf_cover_rect.c     { "cover",  "cover bitmap filename",  OFFSET(cover_filename),  AV_OPT_TYPE_STRING, {.str = NULL}, .flags = FLAGS },
NULL               53 libavfilter/vf_cover_rect.c     { NULL }
NULL              141 libavfilter/vf_cover_rect.c     char *xendptr = NULL, *yendptr = NULL, *wendptr = NULL, *hendptr = NULL;
NULL              143 libavfilter/vf_cover_rect.c     ex = av_dict_get(in->metadata, "lavfi.rect.x", NULL, AV_DICT_MATCH_CASE);
NULL              144 libavfilter/vf_cover_rect.c     ey = av_dict_get(in->metadata, "lavfi.rect.y", NULL, AV_DICT_MATCH_CASE);
NULL              145 libavfilter/vf_cover_rect.c     ew = av_dict_get(in->metadata, "lavfi.rect.w", NULL, AV_DICT_MATCH_CASE);
NULL              146 libavfilter/vf_cover_rect.c     eh = av_dict_get(in->metadata, "lavfi.rect.h", NULL, AV_DICT_MATCH_CASE);
NULL              240 libavfilter/vf_cover_rect.c     { NULL }
NULL              248 libavfilter/vf_cover_rect.c     { NULL }
NULL               55 libavfilter/vf_crop.c     NULL
NULL               96 libavfilter/vf_crop.c     AVFilterFormats *formats = NULL;
NULL              110 libavfilter/vf_crop.c     s->x_pexpr = NULL;
NULL              112 libavfilter/vf_crop.c     s->y_pexpr = NULL;
NULL              154 libavfilter/vf_crop.c     av_image_fill_max_pixsteps(s->max_step, NULL, pix_desc);
NULL              166 libavfilter/vf_crop.c                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              170 libavfilter/vf_crop.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              176 libavfilter/vf_crop.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              196 libavfilter/vf_crop.c     s->x_pexpr = s->y_pexpr = NULL;
NULL              198 libavfilter/vf_crop.c                              NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
NULL              200 libavfilter/vf_crop.c                              NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              266 libavfilter/vf_crop.c     s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
NULL              267 libavfilter/vf_crop.c     s->var_values[VAR_Y] = av_expr_eval(s->y_pexpr, s->var_values, NULL);
NULL              269 libavfilter/vf_crop.c     s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
NULL              371 libavfilter/vf_crop.c     { NULL }
NULL              383 libavfilter/vf_crop.c     { NULL }
NULL              392 libavfilter/vf_crop.c     { NULL }
NULL              144 libavfilter/vf_cropdetect.c     av_image_fill_max_pixsteps(s->max_pixsteps, NULL, desc);
NULL              252 libavfilter/vf_cropdetect.c     { NULL }
NULL              264 libavfilter/vf_cropdetect.c     { NULL }
NULL              272 libavfilter/vf_cropdetect.c     { NULL }
NULL               86 libavfilter/vf_curves.c         { "none",               NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_NONE},                 INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               87 libavfilter/vf_curves.c         { "color_negative",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_COLOR_NEGATIVE},       INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               88 libavfilter/vf_curves.c         { "cross_process",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_CROSS_PROCESS},        INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               89 libavfilter/vf_curves.c         { "darker",             NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_DARKER},               INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               90 libavfilter/vf_curves.c         { "increase_contrast",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_INCREASE_CONTRAST},    INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               91 libavfilter/vf_curves.c         { "lighter",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_LIGHTER},              INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               92 libavfilter/vf_curves.c         { "linear_contrast",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_LINEAR_CONTRAST},      INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               93 libavfilter/vf_curves.c         { "medium_contrast",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_MEDIUM_CONTRAST},      INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               94 libavfilter/vf_curves.c         { "negative",           NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_NEGATIVE},             INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               95 libavfilter/vf_curves.c         { "strong_contrast",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_STRONG_CONTRAST},      INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               96 libavfilter/vf_curves.c         { "vintage",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_VINTAGE},              INT_MIN, INT_MAX, FLAGS, "preset_name" },
NULL               97 libavfilter/vf_curves.c     { "master","set master points coordinates",OFFSET(comp_points_str[NB_COMP]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL               98 libavfilter/vf_curves.c     { "m",     "set master points coordinates",OFFSET(comp_points_str[NB_COMP]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL               99 libavfilter/vf_curves.c     { "red",   "set red points coordinates",   OFFSET(comp_points_str[0]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              100 libavfilter/vf_curves.c     { "r",     "set red points coordinates",   OFFSET(comp_points_str[0]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              101 libavfilter/vf_curves.c     { "green", "set green points coordinates", OFFSET(comp_points_str[1]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              102 libavfilter/vf_curves.c     { "g",     "set green points coordinates", OFFSET(comp_points_str[1]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              103 libavfilter/vf_curves.c     { "blue",  "set blue points coordinates",  OFFSET(comp_points_str[2]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              104 libavfilter/vf_curves.c     { "b",     "set blue points coordinates",  OFFSET(comp_points_str[2]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              105 libavfilter/vf_curves.c     { "all",   "set points coordinates for all components", OFFSET(comp_points_str_all), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              106 libavfilter/vf_curves.c     { "psfile", "set Photoshop curves file name", OFFSET(psfile), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              107 libavfilter/vf_curves.c     { "plot", "save Gnuplot script of the curves in specified file", OFFSET(plot_filename), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              108 libavfilter/vf_curves.c     { NULL }
NULL              148 libavfilter/vf_curves.c         return NULL;
NULL              159 libavfilter/vf_curves.c     struct keypoint *last = NULL;
NULL              164 libavfilter/vf_curves.c         struct keypoint *point = make_point(0, 0, NULL);
NULL              364 libavfilter/vf_curves.c     ret = av_file_map(fname, &buf, &size, 0, NULL);
NULL              404 libavfilter/vf_curves.c     av_bprint_finalize(&ptstr, NULL);
NULL              423 libavfilter/vf_curves.c         av_log(NULL, AV_LOG_ERROR, "Cannot open file '%s' for writing: %s\n",
NULL              466 libavfilter/vf_curves.c     av_bprint_finalize(&buf, NULL);
NULL              738 libavfilter/vf_curves.c     ctx->internal->execute(ctx, curves->filter_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              762 libavfilter/vf_curves.c     { NULL }
NULL              770 libavfilter/vf_curves.c     { NULL }
NULL               66 libavfilter/vf_datascope.c     {   "mono",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "mode" },
NULL               67 libavfilter/vf_datascope.c     {   "color",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "mode" },
NULL               68 libavfilter/vf_datascope.c     {   "color2", NULL, 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "mode" },
NULL               72 libavfilter/vf_datascope.c     {   "hex",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "format" },
NULL               73 libavfilter/vf_datascope.c     {   "dec",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "format" },
NULL               74 libavfilter/vf_datascope.c     { NULL }
NULL              353 libavfilter/vf_datascope.c     ctx->internal->execute(ctx, s->filter, &td, NULL, FFMIN(ff_filter_get_nb_threads(ctx), FFMAX(outlink->w / 20, 1)));
NULL              408 libavfilter/vf_datascope.c     { NULL }
NULL              417 libavfilter/vf_datascope.c     { NULL }
NULL              470 libavfilter/vf_datascope.c     { NULL }
NULL              685 libavfilter/vf_datascope.c     { NULL }
NULL              693 libavfilter/vf_datascope.c     { NULL }
NULL              769 libavfilter/vf_datascope.c     { NULL }
NULL             1090 libavfilter/vf_datascope.c     { NULL }
NULL             1098 libavfilter/vf_datascope.c     { NULL }
NULL               53 libavfilter/vf_dblur.c     { NULL }
NULL              285 libavfilter/vf_dblur.c     { NULL }
NULL              293 libavfilter/vf_dblur.c     { NULL }
NULL               36 libavfilter/vf_dctdnoiz.c static const char *const var_names[] = { "c", NULL };
NULL               83 libavfilter/vf_dctdnoiz.c     { "expr",    "set coefficient factor expression",      OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str=NULL},                          .flags = FLAGS },
NULL               84 libavfilter/vf_dctdnoiz.c     { "e",       "set coefficient factor expression",      OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str=NULL},                          .flags = FLAGS },
NULL               86 libavfilter/vf_dctdnoiz.c     { NULL }
NULL              371 libavfilter/vf_dctdnoiz.c             *b *= av_expr_eval(expr, var_values, NULL);                                     \
NULL              387 libavfilter/vf_dctdnoiz.c     filter_freq_##bsize(src, src_linesize, dst, dst_linesize, NULL, NULL, s->th);           \
NULL              584 libavfilter/vf_dctdnoiz.c                                     NULL, NULL, NULL, NULL, 0, ctx);
NULL              747 libavfilter/vf_dctdnoiz.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, s->nb_threads);
NULL              813 libavfilter/vf_dctdnoiz.c     { NULL }
NULL              821 libavfilter/vf_dctdnoiz.c     { NULL }
NULL               67 libavfilter/vf_deband.c     { NULL }
NULL              427 libavfilter/vf_deband.c     ctx->internal->execute(ctx, s->deband, &td, NULL, FFMIN3(s->planeheight[1],
NULL              450 libavfilter/vf_deband.c     { NULL }
NULL              458 libavfilter/vf_deband.c     { NULL }
NULL              383 libavfilter/vf_deblock.c     { NULL },
NULL              392 libavfilter/vf_deblock.c     { NULL }
NULL              401 libavfilter/vf_deblock.c     { NULL }
NULL               76 libavfilter/vf_decimate.c     { NULL }
NULL              220 libavfilter/vf_decimate.c             dm->queue[i].frame = NULL;
NULL              226 libavfilter/vf_decimate.c                 dm->clean_src[i] = NULL;
NULL              292 libavfilter/vf_decimate.c         pad.config_props = NULL;
NULL              343 libavfilter/vf_decimate.c             ret = filter_frame(inlink, NULL);
NULL              414 libavfilter/vf_decimate.c     { NULL }
NULL              266 libavfilter/vf_dedot.c     AVFrame *frame = NULL;
NULL              279 libavfilter/vf_dedot.c         AVFrame *out = NULL;
NULL              302 libavfilter/vf_dedot.c                         ctx->internal->execute(ctx, s->dedotcrawl, out, NULL,
NULL              308 libavfilter/vf_dedot.c                         ctx->internal->execute(ctx, s->derainbow, &td, NULL,
NULL              312 libavfilter/vf_dedot.c                         ctx->internal->execute(ctx, s->derainbow, &td, NULL,
NULL              328 libavfilter/vf_dedot.c         s->frames[4] = NULL;
NULL              382 libavfilter/vf_dedot.c     { NULL },
NULL              390 libavfilter/vf_dedot.c     { NULL }
NULL              399 libavfilter/vf_dedot.c     { NULL }
NULL               89 libavfilter/vf_deflicker.c     { NULL }
NULL              457 libavfilter/vf_deflicker.c     { NULL }
NULL              466 libavfilter/vf_deflicker.c     { NULL }
NULL               93 libavfilter/vf_deinterlace_qsv.c         s->session = NULL;
NULL              180 libavfilter/vf_deinterlace_qsv.c     mfxHDL handle = NULL;
NULL              458 libavfilter/vf_deinterlace_qsv.c     mfxSyncPoint sync = NULL;
NULL              475 libavfilter/vf_deinterlace_qsv.c                                            NULL, &sync);
NULL              560 libavfilter/vf_deinterlace_qsv.c     { NULL },
NULL              576 libavfilter/vf_deinterlace_qsv.c     { NULL }
NULL              586 libavfilter/vf_deinterlace_qsv.c     { NULL }
NULL              183 libavfilter/vf_deinterlace_vaapi.c     AVFrame *output_frame    = NULL;
NULL              190 libavfilter/vf_deinterlace_vaapi.c     void *filter_params_addr = NULL;
NULL              266 libavfilter/vf_deinterlace_vaapi.c             filter_params_addr = NULL;
NULL              283 libavfilter/vf_deinterlace_vaapi.c             params.filters     = NULL;
NULL              357 libavfilter/vf_deinterlace_vaapi.c     { NULL },
NULL              374 libavfilter/vf_deinterlace_vaapi.c     { NULL }
NULL              383 libavfilter/vf_deinterlace_vaapi.c     { NULL }
NULL               75 libavfilter/vf_dejudder.c     {NULL}
NULL              166 libavfilter/vf_dejudder.c     { NULL }
NULL              175 libavfilter/vf_dejudder.c     { NULL }
NULL               46 libavfilter/vf_delogo.c     NULL
NULL               63 libavfilter/vf_delogo.c     AVExpr *old = NULL;
NULL               67 libavfilter/vf_delogo.c     ret = av_expr_parse(pexpr, expr, var_names, NULL, NULL, NULL, NULL, 0, log_ctx);
NULL              215 libavfilter/vf_delogo.c     { NULL }
NULL              223 libavfilter/vf_delogo.c     av_expr_free(s->x_pexpr);    s->x_pexpr = NULL;
NULL              224 libavfilter/vf_delogo.c     av_expr_free(s->y_pexpr);    s->y_pexpr = NULL;
NULL              225 libavfilter/vf_delogo.c     av_expr_free(s->w_pexpr);    s->w_pexpr = NULL;
NULL              226 libavfilter/vf_delogo.c     av_expr_free(s->h_pexpr);    s->h_pexpr = NULL;
NULL              391 libavfilter/vf_delogo.c     { NULL }
NULL              399 libavfilter/vf_delogo.c     { NULL }
NULL               58 libavfilter/vf_derain.c     { "model",       "path to model file",          OFFSET(model_filename), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },
NULL               59 libavfilter/vf_derain.c     { NULL }
NULL              190 libavfilter/vf_derain.c     { NULL }
NULL              198 libavfilter/vf_derain.c     { NULL }
NULL               84 libavfilter/vf_deshake.c     { "filename", "set motion search detailed log file name", OFFSET(filename), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL               86 libavfilter/vf_deshake.c     { NULL }
NULL              391 libavfilter/vf_deshake.c     deshake->ref = NULL;
NULL              440 libavfilter/vf_deshake.c         find_motion(deshake, (deshake->ref == NULL) ? in->data[0] : deshake->ref->data[0], in->data[0], link->w, link->h, in->linesize[0], &t);
NULL              442 libavfilter/vf_deshake.c         uint8_t *src1 = (deshake->ref == NULL) ? in->data[0] : deshake->ref->data[0];
NULL              542 libavfilter/vf_deshake.c     { NULL }
NULL              550 libavfilter/vf_deshake.c     { NULL }
NULL              164 libavfilter/vf_deshake_opencl.c             NULL
NULL              889 libavfilter/vf_deshake_opencl.c         NULL
NULL             1132 libavfilter/vf_deshake_opencl.c     PointPair *pattern_host = NULL;
NULL             1311 libavfilter/vf_deshake_opencl.c             .buffer = NULL,
NULL             1319 libavfilter/vf_deshake_opencl.c             NULL,
NULL             1390 libavfilter/vf_deshake_opencl.c     AVFrame *cropped_frame = NULL, *transformed_frame = NULL;
NULL             1431 libavfilter/vf_deshake_opencl.c             NULL
NULL             1449 libavfilter/vf_deshake_opencl.c             NULL
NULL             1524 libavfilter/vf_deshake_opencl.c     CL_BLOCKING_WRITE_BUFFER(deshake_ctx->command_queue, deshake_ctx->transform_y, 9 * sizeof(float), transform_y, NULL);
NULL             1525 libavfilter/vf_deshake_opencl.c     CL_BLOCKING_WRITE_BUFFER(deshake_ctx->command_queue, deshake_ctx->transform_uv, 9 * sizeof(float), transform_uv, NULL);
NULL             1561 libavfilter/vf_deshake_opencl.c             NULL,
NULL             1575 libavfilter/vf_deshake_opencl.c             NULL
NULL             1583 libavfilter/vf_deshake_opencl.c             NULL
NULL             1600 libavfilter/vf_deshake_opencl.c         CL_BLOCKING_WRITE_BUFFER(deshake_ctx->command_queue, deshake_ctx->transform_y, 9 * sizeof(float), transform_debug_rgb, NULL);
NULL             1607 libavfilter/vf_deshake_opencl.c             NULL,
NULL             1608 libavfilter/vf_deshake_opencl.c             NULL,
NULL             1662 libavfilter/vf_deshake_opencl.c                 NULL,
NULL             1804 libavfilter/vf_deshake_opencl.c             NULL,
NULL             1825 libavfilter/vf_deshake_opencl.c         NULL,
NULL             1837 libavfilter/vf_deshake_opencl.c         NULL,
NULL             1856 libavfilter/vf_deshake_opencl.c         NULL,
NULL             1873 libavfilter/vf_deshake_opencl.c         NULL,
NULL             1942 libavfilter/vf_deshake_opencl.c             NULL
NULL             1999 libavfilter/vf_deshake_opencl.c             debug_matches.matches = NULL;
NULL             2018 libavfilter/vf_deshake_opencl.c             NULL
NULL             2027 libavfilter/vf_deshake_opencl.c             NULL
NULL             2044 libavfilter/vf_deshake_opencl.c     AVFrame *frame = NULL;
NULL             2144 libavfilter/vf_deshake_opencl.c     { NULL }
NULL             2153 libavfilter/vf_deshake_opencl.c     { NULL }
NULL             2185 libavfilter/vf_deshake_opencl.c     { NULL }
NULL              100 libavfilter/vf_despill.c     if (ret = ctx->internal->execute(ctx, do_despill_slice, frame, NULL, FFMIN(frame->height, ff_filter_get_nb_threads(ctx))))
NULL              128 libavfilter/vf_despill.c     AVFilterFormats *formats = NULL;
NULL              143 libavfilter/vf_despill.c     { NULL }
NULL              152 libavfilter/vf_despill.c     { NULL }
NULL              169 libavfilter/vf_despill.c     { NULL }
NULL               68 libavfilter/vf_detelecine.c     {NULL}
NULL              127 libavfilter/vf_detelecine.c     AVFilterFormats *pix_fmts = NULL;
NULL              366 libavfilter/vf_detelecine.c     { NULL }
NULL              375 libavfilter/vf_detelecine.c     { NULL }
NULL               61 libavfilter/vf_displace.c     { NULL }
NULL              391 libavfilter/vf_displace.c     { NULL }
NULL              400 libavfilter/vf_displace.c     { NULL }
NULL               66 libavfilter/vf_dnn_processing.c     { "model",       "path to model file",         OFFSET(model_filename),   AV_OPT_TYPE_STRING,    { .str = NULL }, 0, 0, FLAGS },
NULL               67 libavfilter/vf_dnn_processing.c     { "input",       "input name of the model",    OFFSET(model_inputname),  AV_OPT_TYPE_STRING,    { .str = NULL }, 0, 0, FLAGS },
NULL               68 libavfilter/vf_dnn_processing.c     { "output",      "output name of the model",   OFFSET(model_outputname), AV_OPT_TYPE_STRING,    { .str = NULL }, 0, 0, FLAGS },
NULL               69 libavfilter/vf_dnn_processing.c     { NULL }
NULL              246 libavfilter/vf_dnn_processing.c                                                        0, NULL, NULL, NULL);
NULL              255 libavfilter/vf_dnn_processing.c                                                        0, NULL, NULL, NULL);
NULL              271 libavfilter/vf_dnn_processing.c                                                    0, NULL, NULL, NULL);
NULL              278 libavfilter/vf_dnn_processing.c                                                    0, NULL, NULL, NULL);
NULL              288 libavfilter/vf_dnn_processing.c                                                SWS_BICUBIC, NULL, NULL, NULL);
NULL              498 libavfilter/vf_dnn_processing.c     { NULL }
NULL              507 libavfilter/vf_dnn_processing.c     { NULL }
NULL               51 libavfilter/vf_drawbox.c     NULL
NULL              155 libavfilter/vf_drawbox.c                                           NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0 && i == NUM_EXPR_EVALS)
NULL              162 libavfilter/vf_drawbox.c                                           NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0 && i == NUM_EXPR_EVALS)
NULL              169 libavfilter/vf_drawbox.c                                           NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0 && i == NUM_EXPR_EVALS)
NULL              176 libavfilter/vf_drawbox.c                                           NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0 && i == NUM_EXPR_EVALS)
NULL              183 libavfilter/vf_drawbox.c                                           NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0 && i == NUM_EXPR_EVALS)
NULL              326 libavfilter/vf_drawbox.c     { NULL }
NULL              339 libavfilter/vf_drawbox.c     { NULL }
NULL              347 libavfilter/vf_drawbox.c     { NULL }
NULL              460 libavfilter/vf_drawbox.c     { NULL }
NULL              473 libavfilter/vf_drawbox.c     { NULL }
NULL              481 libavfilter/vf_drawbox.c     { NULL }
NULL               94 libavfilter/vf_drawtext.c     NULL
NULL              110 libavfilter/vf_drawtext.c     NULL
NULL              212 libavfilter/vf_drawtext.c     {"fontfile",    "set font file",        OFFSET(fontfile),           AV_OPT_TYPE_STRING, {.str=NULL},  0, 0, FLAGS},
NULL              213 libavfilter/vf_drawtext.c     {"text",        "set text",             OFFSET(text),               AV_OPT_TYPE_STRING, {.str=NULL},  0, 0, FLAGS},
NULL              214 libavfilter/vf_drawtext.c     {"textfile",    "set text file",        OFFSET(textfile),           AV_OPT_TYPE_STRING, {.str=NULL},  0, 0, FLAGS},
NULL              223 libavfilter/vf_drawtext.c     {"fontsize",    "set font size",        OFFSET(fontsize_expr),      AV_OPT_TYPE_STRING, {.str=NULL},  0, 0 , FLAGS},
NULL              240 libavfilter/vf_drawtext.c     {"timecode",        "set initial timecode",             OFFSET(tc_opt_string), AV_OPT_TYPE_STRING,   {.str=NULL}, 0, 0, FLAGS},
NULL              256 libavfilter/vf_drawtext.c         { "default",                     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_DEFAULT },                     .flags = FLAGS, .unit = "ft_load_flags" },
NULL              257 libavfilter/vf_drawtext.c         { "no_scale",                    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_SCALE },                    .flags = FLAGS, .unit = "ft_load_flags" },
NULL              258 libavfilter/vf_drawtext.c         { "no_hinting",                  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_HINTING },                  .flags = FLAGS, .unit = "ft_load_flags" },
NULL              259 libavfilter/vf_drawtext.c         { "render",                      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_RENDER },                      .flags = FLAGS, .unit = "ft_load_flags" },
NULL              260 libavfilter/vf_drawtext.c         { "no_bitmap",                   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_BITMAP },                   .flags = FLAGS, .unit = "ft_load_flags" },
NULL              261 libavfilter/vf_drawtext.c         { "vertical_layout",             NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_VERTICAL_LAYOUT },             .flags = FLAGS, .unit = "ft_load_flags" },
NULL              262 libavfilter/vf_drawtext.c         { "force_autohint",              NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_FORCE_AUTOHINT },              .flags = FLAGS, .unit = "ft_load_flags" },
NULL              263 libavfilter/vf_drawtext.c         { "crop_bitmap",                 NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_CROP_BITMAP },                 .flags = FLAGS, .unit = "ft_load_flags" },
NULL              264 libavfilter/vf_drawtext.c         { "pedantic",                    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_PEDANTIC },                    .flags = FLAGS, .unit = "ft_load_flags" },
NULL              265 libavfilter/vf_drawtext.c         { "ignore_global_advance_width", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH }, .flags = FLAGS, .unit = "ft_load_flags" },
NULL              266 libavfilter/vf_drawtext.c         { "no_recurse",                  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_RECURSE },                  .flags = FLAGS, .unit = "ft_load_flags" },
NULL              267 libavfilter/vf_drawtext.c         { "ignore_transform",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_IGNORE_TRANSFORM },            .flags = FLAGS, .unit = "ft_load_flags" },
NULL              268 libavfilter/vf_drawtext.c         { "monochrome",                  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_MONOCHROME },                  .flags = FLAGS, .unit = "ft_load_flags" },
NULL              269 libavfilter/vf_drawtext.c         { "linear_design",               NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_LINEAR_DESIGN },               .flags = FLAGS, .unit = "ft_load_flags" },
NULL              270 libavfilter/vf_drawtext.c         { "no_autohint",                 NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_AUTOHINT },                 .flags = FLAGS, .unit = "ft_load_flags" },
NULL              271 libavfilter/vf_drawtext.c     { NULL }
NULL              279 libavfilter/vf_drawtext.c #define FT_ERROR_END_LIST { 0, NULL } };
NULL              321 libavfilter/vf_drawtext.c     struct AVTreeNode *node = NULL;
NULL              408 libavfilter/vf_drawtext.c     if (s->fontsize_expr == NULL)
NULL              412 libavfilter/vf_drawtext.c                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0)
NULL              426 libavfilter/vf_drawtext.c     if (s->fontsize_expr != NULL) {
NULL              611 libavfilter/vf_drawtext.c     FriBidiChar *unicodestr = NULL;
NULL              616 libavfilter/vf_drawtext.c     FriBidiLevel *embedding_levels = NULL;
NULL              617 libavfilter/vf_drawtext.c     FriBidiArabicProp *ar_props = NULL;
NULL              618 libavfilter/vf_drawtext.c     FriBidiCharType *bidi_types = NULL;
NULL              659 libavfilter/vf_drawtext.c                                       NULL)) {
NULL              698 libavfilter/vf_drawtext.c     s->fontsize_pexpr = NULL;
NULL              768 libavfilter/vf_drawtext.c     load_glyph(ctx, NULL, 0);
NULL              811 libavfilter/vf_drawtext.c     s->x_pexpr = s->y_pexpr = s->a_pexpr = s->fontsize_pexpr = NULL;
NULL              816 libavfilter/vf_drawtext.c     av_tree_enumerate(s->glyphs, NULL, NULL, glyph_enu_free);
NULL              818 libavfilter/vf_drawtext.c     s->glyphs = NULL;
NULL              824 libavfilter/vf_drawtext.c     av_bprint_finalize(&s->expanded_text, NULL);
NULL              825 libavfilter/vf_drawtext.c     av_bprint_finalize(&s->expanded_fontcolor, NULL);
NULL              856 libavfilter/vf_drawtext.c     s->x_pexpr = s->y_pexpr = s->a_pexpr = NULL;
NULL              859 libavfilter/vf_drawtext.c                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
NULL              861 libavfilter/vf_drawtext.c                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
NULL              863 libavfilter/vf_drawtext.c                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0) {
NULL              874 libavfilter/vf_drawtext.c     DrawTextContext *new = NULL;
NULL             1000 libavfilter/vf_drawtext.c     AVDictionaryEntry *e = av_dict_get(s->metadata, argv[0], NULL, 0);
NULL             1033 libavfilter/vf_drawtext.c                                  NULL, NULL, fun2_names, fun2,
NULL             1062 libavfilter/vf_drawtext.c                                  NULL, NULL, fun2_names, fun2,
NULL             1156 libavfilter/vf_drawtext.c     char *argv[16] = { NULL };
NULL             1225 libavfilter/vf_drawtext.c     Glyph *glyph = NULL;
NULL             1239 libavfilter/vf_drawtext.c         glyph = av_tree_find(s->glyphs, &dummy, glyph_cmp, NULL);
NULL             1299 libavfilter/vf_drawtext.c     Glyph *glyph = NULL, *prev_glyph = NULL;
NULL             1375 libavfilter/vf_drawtext.c         glyph = av_tree_find(s->glyphs, &dummy, glyph_cmp, NULL);
NULL             1391 libavfilter/vf_drawtext.c     glyph = NULL;
NULL             1413 libavfilter/vf_drawtext.c         glyph = av_tree_find(s->glyphs, &dummy, glyph_cmp, NULL);
NULL             1555 libavfilter/vf_drawtext.c     { NULL }
NULL             1563 libavfilter/vf_drawtext.c     { NULL }
NULL               84 libavfilter/vf_edgedetect.c     { NULL }
NULL              105 libavfilter/vf_edgedetect.c     const enum AVPixelFormat *pix_fmts = NULL;
NULL              423 libavfilter/vf_edgedetect.c     { NULL }
NULL              431 libavfilter/vf_edgedetect.c     { NULL }
NULL               62 libavfilter/vf_elbg.c     { NULL }
NULL              245 libavfilter/vf_elbg.c     { NULL }
NULL              253 libavfilter/vf_elbg.c     { NULL }
NULL               49 libavfilter/vf_entropy.c     { "normal", NULL,                                       0,            AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "mode" },
NULL               50 libavfilter/vf_entropy.c     { "diff",   NULL,                                       0,            AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "mode" },
NULL               51 libavfilter/vf_entropy.c     { NULL }
NULL              185 libavfilter/vf_entropy.c     { NULL }
NULL              193 libavfilter/vf_entropy.c     { NULL }
NULL              100 libavfilter/vf_eq.c         param->adjust = NULL;
NULL              160 libavfilter/vf_eq.c     AVExpr *old = NULL;
NULL              164 libavfilter/vf_eq.c     ret = av_expr_parse(pexpr, expr, var_names, NULL, NULL, NULL, NULL, 0, log_ctx);
NULL              214 libavfilter/vf_eq.c     av_expr_free(eq->contrast_pexpr);     eq->contrast_pexpr     = NULL;
NULL              215 libavfilter/vf_eq.c     av_expr_free(eq->brightness_pexpr);   eq->brightness_pexpr   = NULL;
NULL              216 libavfilter/vf_eq.c     av_expr_free(eq->saturation_pexpr);   eq->saturation_pexpr   = NULL;
NULL              217 libavfilter/vf_eq.c     av_expr_free(eq->gamma_pexpr);        eq->gamma_pexpr        = NULL;
NULL              218 libavfilter/vf_eq.c     av_expr_free(eq->gamma_weight_pexpr); eq->gamma_weight_pexpr = NULL;
NULL              219 libavfilter/vf_eq.c     av_expr_free(eq->gamma_r_pexpr);      eq->gamma_r_pexpr      = NULL;
NULL              220 libavfilter/vf_eq.c     av_expr_free(eq->gamma_g_pexpr);      eq->gamma_g_pexpr      = NULL;
NULL              221 libavfilter/vf_eq.c     av_expr_free(eq->gamma_b_pexpr);      eq->gamma_b_pexpr      = NULL;
NULL              343 libavfilter/vf_eq.c     { NULL }
NULL              351 libavfilter/vf_eq.c     { NULL }
NULL              377 libavfilter/vf_eq.c     { NULL }
NULL               36 libavfilter/vf_eq.h     NULL
NULL               60 libavfilter/vf_extractplanes.c     { NULL }
NULL              367 libavfilter/vf_extractplanes.c     { NULL }
NULL              379 libavfilter/vf_extractplanes.c     .outputs       = NULL,
NULL              403 libavfilter/vf_extractplanes.c     .outputs        = NULL,
NULL              495 libavfilter/vf_fade.c             ctx->internal->execute(ctx, s->filter_slice_alpha, frame, NULL,
NULL              498 libavfilter/vf_fade.c             ctx->internal->execute(ctx, filter_slice_rgb, frame, NULL,
NULL              502 libavfilter/vf_fade.c             ctx->internal->execute(ctx, s->filter_slice_luma, frame, NULL,
NULL              507 libavfilter/vf_fade.c                 ctx->internal->execute(ctx, s->filter_slice_chroma, frame, NULL,
NULL              544 libavfilter/vf_fade.c     { NULL }
NULL              557 libavfilter/vf_fade.c     { NULL }
NULL              565 libavfilter/vf_fade.c     { NULL }
NULL               89 libavfilter/vf_fftdnoiz.c     { NULL }
NULL              610 libavfilter/vf_fftdnoiz.c             s->cur = NULL;
NULL              676 libavfilter/vf_fftdnoiz.c     { NULL }
NULL              685 libavfilter/vf_fftdnoiz.c     { NULL }
NULL               72 libavfilter/vf_fftfilt.c static const char *const var_names[] = {   "X",   "Y",   "W",   "H",   "N", NULL        };
NULL               85 libavfilter/vf_fftfilt.c     { "weight_U", "set chrominance expression in U plane", OFFSET(weight_str[U]), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               86 libavfilter/vf_fftfilt.c     { "weight_V", "set chrominance expression in V plane", OFFSET(weight_str[V]), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               90 libavfilter/vf_fftfilt.c     {NULL},
NULL              235 libavfilter/vf_fftfilt.c         const char *const func2_names[] = {"weight_Y", "weight_U", "weight_V", NULL };
NULL              236 libavfilter/vf_fftfilt.c         double (*func2[])(void *, double, double) = { weight_Y, weight_U, weight_V, p[plane], NULL };
NULL              239 libavfilter/vf_fftfilt.c                             NULL, NULL, func2_names, func2, 0, ctx);
NULL              420 libavfilter/vf_fftfilt.c     { NULL }
NULL              428 libavfilter/vf_fftfilt.c     { NULL }
NULL               47 libavfilter/vf_field.c     {NULL}
NULL               92 libavfilter/vf_field.c     { NULL }
NULL              101 libavfilter/vf_field.c     { NULL }
NULL               50 libavfilter/vf_fieldhint.c     { "hint", "set hint file", OFFSET(hint_file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               54 libavfilter/vf_fieldhint.c     { NULL }
NULL               80 libavfilter/vf_fieldhint.c     AVFilterFormats *pix_fmts = NULL;
NULL              276 libavfilter/vf_fieldhint.c     s->hint = NULL;
NULL              290 libavfilter/vf_fieldhint.c     { NULL }
NULL              299 libavfilter/vf_fieldhint.c     { NULL }
NULL              151 libavfilter/vf_fieldmatch.c     { NULL }
NULL              635 libavfilter/vf_fieldmatch.c             return NULL;
NULL              684 libavfilter/vf_fieldmatch.c     AVFrame *gen_frames[] = { NULL, NULL, NULL, NULL, NULL };
NULL              805 libavfilter/vf_fieldmatch.c             gen_frames[match] = NULL;
NULL              838 libavfilter/vf_fieldmatch.c     AVFrame *frame = NULL;
NULL              864 libavfilter/vf_fieldmatch.c             ret = filter_frame(ctx->inputs[INPUT_MAIN], NULL);
NULL              871 libavfilter/vf_fieldmatch.c             ret = filter_frame(ctx->inputs[INPUT_CLEANSRC], NULL);
NULL              982 libavfilter/vf_fieldmatch.c         pad.config_props = NULL;
NULL             1051 libavfilter/vf_fieldmatch.c     { NULL }
NULL             1062 libavfilter/vf_fieldmatch.c     .inputs         = NULL,
NULL               50 libavfilter/vf_fieldorder.c         const AVPixFmtDescriptor *desc = NULL;
NULL               51 libavfilter/vf_fieldorder.c         formats = NULL;
NULL              164 libavfilter/vf_fieldorder.c     { NULL }
NULL              176 libavfilter/vf_fieldorder.c     { NULL }
NULL              184 libavfilter/vf_fieldorder.c     { NULL }
NULL              370 libavfilter/vf_fillborders.c         { "smear",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=FM_SMEAR},  0, 0, FLAGS, "mode" },
NULL              371 libavfilter/vf_fillborders.c         { "mirror", NULL, 0, AV_OPT_TYPE_CONST, {.i64=FM_MIRROR}, 0, 0, FLAGS, "mode" },
NULL              372 libavfilter/vf_fillborders.c         { "fixed",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=FM_FIXED},  0, 0, FLAGS, "mode" },
NULL              374 libavfilter/vf_fillborders.c     { NULL }
NULL              387 libavfilter/vf_fillborders.c     { NULL }
NULL              395 libavfilter/vf_fillborders.c     { NULL }
NULL               48 libavfilter/vf_find_rect.c     { "object", "object bitmap filename", OFFSET(obj_filename), AV_OPT_TYPE_STRING, {.str = NULL}, .flags = FLAGS },
NULL               55 libavfilter/vf_find_rect.c     { NULL }
NULL               77 libavfilter/vf_find_rect.c         return NULL;
NULL               85 libavfilter/vf_find_rect.c         return NULL;
NULL              282 libavfilter/vf_find_rect.c     { NULL }
NULL              290 libavfilter/vf_find_rect.c     { NULL }
NULL              393 libavfilter/vf_floodfill.c     { NULL }
NULL              401 libavfilter/vf_floodfill.c     { NULL }
NULL              418 libavfilter/vf_floodfill.c     { NULL }
NULL               95 libavfilter/vf_format.c         const AVPixFmtDescriptor *desc = NULL;
NULL              144 libavfilter/vf_format.c     { NULL }
NULL              158 libavfilter/vf_format.c     { NULL }
NULL              166 libavfilter/vf_format.c     { NULL }
NULL              197 libavfilter/vf_format.c     { NULL }
NULL              205 libavfilter/vf_format.c     { NULL }
NULL               90 libavfilter/vf_fps.c     { NULL }
NULL              116 libavfilter/vf_fps.c     s->frames[1] = NULL;
NULL              334 libavfilter/vf_fps.c     { NULL }
NULL              343 libavfilter/vf_fps.c     { NULL }
NULL              296 libavfilter/vf_framepack.c             s->input_views[i] = NULL;
NULL              388 libavfilter/vf_framepack.c     { NULL },
NULL              402 libavfilter/vf_framepack.c     { NULL }
NULL              411 libavfilter/vf_framepack.c     { NULL }
NULL               60 libavfilter/vf_framerate.c     {NULL}
NULL              149 libavfilter/vf_framerate.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(FFMAX(1, outlink->h >> 2), ff_filter_get_nb_threads(ctx)));
NULL              430 libavfilter/vf_framerate.c     { NULL }
NULL              439 libavfilter/vf_framerate.c     { NULL }
NULL               41 libavfilter/vf_framestep.c     { NULL },
NULL               80 libavfilter/vf_framestep.c     { NULL }
NULL               89 libavfilter/vf_framestep.c     { NULL }
NULL               60 libavfilter/vf_freezedetect.c     {NULL}
NULL              214 libavfilter/vf_freezedetect.c     { NULL }
NULL              222 libavfilter/vf_freezedetect.c     { NULL }
NULL               46 libavfilter/vf_freezeframes.c     { NULL },
NULL               78 libavfilter/vf_freezeframes.c     AVFrame *frame = NULL;
NULL              146 libavfilter/vf_freezeframes.c     { NULL },
NULL              155 libavfilter/vf_freezeframes.c     { NULL },
NULL              213 libavfilter/vf_frei0r.c         char *p, *ptr = NULL;
NULL              214 libavfilter/vf_frei0r.c         for (p = path; p = av_strtok(p, separator, &ptr); p = NULL) {
NULL              330 libavfilter/vf_frei0r.c     AVFilterFormats *formats = NULL;
NULL              377 libavfilter/vf_frei0r.c     { "filter_name",   NULL, OFFSET(dl_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
NULL              378 libavfilter/vf_frei0r.c     { "filter_params", NULL, OFFSET(params),  AV_OPT_TYPE_STRING, .flags = FLAGS },
NULL              379 libavfilter/vf_frei0r.c     { NULL }
NULL              391 libavfilter/vf_frei0r.c     { NULL }
NULL              399 libavfilter/vf_frei0r.c     { NULL }
NULL              463 libavfilter/vf_frei0r.c                    NULL, (uint32_t *)frame->data[0]);
NULL              470 libavfilter/vf_frei0r.c     { "framerate",     NULL,                                 OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, 0, INT_MAX, .flags = FLAGS },
NULL              471 libavfilter/vf_frei0r.c     { "filter_name",   NULL,                                 OFFSET(dl_name),   AV_OPT_TYPE_STRING,                  .flags = FLAGS },
NULL              472 libavfilter/vf_frei0r.c     { "filter_params", NULL,                                 OFFSET(params),    AV_OPT_TYPE_STRING,                  .flags = FLAGS },
NULL              473 libavfilter/vf_frei0r.c     { NULL },
NULL              485 libavfilter/vf_frei0r.c     { NULL }
NULL              496 libavfilter/vf_frei0r.c     .inputs        = NULL,
NULL               52 libavfilter/vf_fspp.c     { NULL }
NULL              556 libavfilter/vf_fspp.c     uint8_t *qp_table = NULL;
NULL              672 libavfilter/vf_fspp.c     { NULL }
NULL              680 libavfilter/vf_fspp.c     { NULL }
NULL               45 libavfilter/vf_gblur.c     { NULL }
NULL              191 libavfilter/vf_gblur.c     ctx->internal->execute(ctx, filter_horizontally, &td, NULL, FFMIN(height, nb_threads));
NULL              192 libavfilter/vf_gblur.c     ctx->internal->execute(ctx, filter_vertically, &td, NULL, FFMIN(width, nb_threads));
NULL              193 libavfilter/vf_gblur.c     ctx->internal->execute(ctx, filter_postscale, &td, NULL, FFMIN(width * height, nb_threads));
NULL              365 libavfilter/vf_gblur.c     { NULL }
NULL              373 libavfilter/vf_gblur.c     { NULL }
NULL               45 libavfilter/vf_geq.c static const char *const var_names[] = {   "X",   "Y",   "W",   "H",   "N",   "SW",   "SH",   "T",        NULL };
NULL               72 libavfilter/vf_geq.c     { "lum_expr",   "set luminance expression",   OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               73 libavfilter/vf_geq.c     { "lum",        "set luminance expression",   OFFSET(expr_str[Y]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               74 libavfilter/vf_geq.c     { "cb_expr",    "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               75 libavfilter/vf_geq.c     { "cb",         "set chroma blue expression", OFFSET(expr_str[U]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               76 libavfilter/vf_geq.c     { "cr_expr",    "set chroma red expression",  OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               77 libavfilter/vf_geq.c     { "cr",         "set chroma red expression",  OFFSET(expr_str[V]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               78 libavfilter/vf_geq.c     { "alpha_expr", "set alpha expression",       OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               79 libavfilter/vf_geq.c     { "a",          "set alpha expression",       OFFSET(expr_str[A]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               80 libavfilter/vf_geq.c     { "red_expr",   "set red expression",         OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               81 libavfilter/vf_geq.c     { "r",          "set red expression",         OFFSET(expr_str[R]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               82 libavfilter/vf_geq.c     { "green_expr", "set green expression",       OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               83 libavfilter/vf_geq.c     { "g",          "set green expression",       OFFSET(expr_str[G]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               84 libavfilter/vf_geq.c     { "blue_expr",  "set blue expression",        OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               85 libavfilter/vf_geq.c     { "b",          "set blue expression",        OFFSET(expr_str[B]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               92 libavfilter/vf_geq.c     {NULL},
NULL              280 libavfilter/vf_geq.c             NULL };
NULL              284 libavfilter/vf_geq.c             NULL };
NULL              289 libavfilter/vf_geq.c             NULL };
NULL              294 libavfilter/vf_geq.c                                 NULL, NULL, func2_names, func2, 0, ctx);
NULL              458 libavfilter/vf_geq.c         ctx->internal->execute(ctx, slice_geq_filter, &td, NULL, FFMIN(height, nb_threads));
NULL              484 libavfilter/vf_geq.c     { NULL }
NULL              492 libavfilter/vf_geq.c     { NULL }
NULL              231 libavfilter/vf_gradfun.c     { NULL }
NULL              243 libavfilter/vf_gradfun.c     { NULL }
NULL              251 libavfilter/vf_gradfun.c     { NULL }
NULL               41 libavfilter/vf_hflip.c     { NULL }
NULL               48 libavfilter/vf_hflip.c     AVFilterFormats *pix_fmts = NULL;
NULL              136 libavfilter/vf_hflip.c     av_image_fill_max_pixsteps(s->max_step, NULL, pix_desc);
NULL              222 libavfilter/vf_hflip.c     ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              235 libavfilter/vf_hflip.c     { NULL }
NULL              243 libavfilter/vf_hflip.c     { NULL }
NULL               80 libavfilter/vf_histeq.c     { NULL }
NULL              262 libavfilter/vf_histeq.c     { NULL }
NULL              270 libavfilter/vf_histeq.c     { NULL }
NULL               68 libavfilter/vf_histogram.c         { "overlay", NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "display_mode" }, \
NULL               69 libavfilter/vf_histogram.c         { "parade",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "display_mode" }, \
NULL               70 libavfilter/vf_histogram.c         { "stack",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "display_mode" }, \
NULL               73 libavfilter/vf_histogram.c         { "linear",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "levels_mode" }, \
NULL               74 libavfilter/vf_histogram.c         { "logarithmic", NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "levels_mode" }, \
NULL               86 libavfilter/vf_histogram.c     { NULL }
NULL              466 libavfilter/vf_histogram.c     { NULL }
NULL              475 libavfilter/vf_histogram.c     { NULL }
NULL              504 libavfilter/vf_histogram.c     { NULL }
NULL              343 libavfilter/vf_hqdn3d.c     ctx->internal->execute(ctx, do_denoise, &td, NULL, 3);
NULL              377 libavfilter/vf_hqdn3d.c     { NULL }
NULL              389 libavfilter/vf_hqdn3d.c     { NULL }
NULL              398 libavfilter/vf_hqdn3d.c     { NULL }
NULL               53 libavfilter/vf_hqx.c     { NULL }
NULL              505 libavfilter/vf_hqx.c     ctx->internal->execute(ctx, hqx->func, &td, NULL, FFMIN(inlink->h, ff_filter_get_nb_threads(ctx)));
NULL              544 libavfilter/vf_hqx.c     { NULL }
NULL              553 libavfilter/vf_hqx.c     { NULL }
NULL               48 libavfilter/vf_hue.c     NULL
NULL               92 libavfilter/vf_hue.c       { .str = NULL }, .flags = FLAGS },
NULL               96 libavfilter/vf_hue.c       { .str = NULL }, .flags = FLAGS },
NULL               99 libavfilter/vf_hue.c     { NULL }
NULL              189 libavfilter/vf_hue.c                         NULL, NULL, NULL, NULL, 0, log_ctx);
NULL              397 libavfilter/vf_hue.c         hue->saturation = av_expr_eval(hue->saturation_pexpr, hue->var_values, NULL);
NULL              408 libavfilter/vf_hue.c         hue->brightness = av_expr_eval(hue->brightness_pexpr, hue->var_values, NULL);
NULL              419 libavfilter/vf_hue.c         hue->hue_deg = av_expr_eval(hue->hue_deg_pexpr, hue->var_values, NULL);
NULL              422 libavfilter/vf_hue.c         hue->hue = av_expr_eval(hue->hue_pexpr, hue->var_values, NULL);
NULL              511 libavfilter/vf_hue.c     { NULL }
NULL              519 libavfilter/vf_hue.c     { NULL }
NULL               40 libavfilter/vf_hwdownload.c     AVFilterFormats  *infmts = NULL;
NULL               41 libavfilter/vf_hwdownload.c     AVFilterFormats *outfmts = NULL;
NULL               45 libavfilter/vf_hwdownload.c     for (desc = av_pix_fmt_desc_next(NULL); desc;
NULL              130 libavfilter/vf_hwdownload.c     AVFrame *output = NULL;
NULL              185 libavfilter/vf_hwdownload.c     .option     = NULL,
NULL              196 libavfilter/vf_hwdownload.c     { NULL }
NULL              205 libavfilter/vf_hwdownload.c     { NULL }
NULL              278 libavfilter/vf_hwmap.c             return NULL;
NULL              284 libavfilter/vf_hwmap.c             return NULL;
NULL              293 libavfilter/vf_hwmap.c             return NULL;
NULL              308 libavfilter/vf_hwmap.c     AVFrame *map = NULL;
NULL              393 libavfilter/vf_hwmap.c       { .str = NULL }, 0, 0, FLAGS },
NULL              398 libavfilter/vf_hwmap.c     { NULL }
NULL              410 libavfilter/vf_hwmap.c     { NULL }
NULL              419 libavfilter/vf_hwmap.c     { NULL }
NULL               45 libavfilter/vf_hwupload.c     AVHWFramesConstraints *constraints = NULL;
NULL               47 libavfilter/vf_hwupload.c     AVFilterFormats *input_formats = NULL;
NULL               71 libavfilter/vf_hwupload.c     constraints = av_hwdevice_get_hwframe_constraints(ctx->hwdevice_ref, NULL);
NULL              176 libavfilter/vf_hwupload.c     AVFrame *output = NULL;
NULL              226 libavfilter/vf_hwupload.c         { .str = NULL }, 0, 0, FLAGS
NULL              229 libavfilter/vf_hwupload.c         NULL
NULL              241 libavfilter/vf_hwupload.c     { NULL }
NULL              250 libavfilter/vf_hwupload.c     { NULL }
NULL               44 libavfilter/vf_hwupload_cuda.c     return av_hwdevice_ctx_create(&s->hwdevice, AV_HWDEVICE_TYPE_CUDA, buf, NULL, 0);
NULL              128 libavfilter/vf_hwupload_cuda.c     AVFrame *out = NULL;
NULL              163 libavfilter/vf_hwupload_cuda.c     { NULL },
NULL              174 libavfilter/vf_hwupload_cuda.c     { NULL }
NULL              183 libavfilter/vf_hwupload_cuda.c     { NULL }
NULL               58 libavfilter/vf_hysteresis.c     { NULL }
NULL              365 libavfilter/vf_hysteresis.c     { NULL }
NULL              374 libavfilter/vf_hysteresis.c     { NULL }
NULL               38 libavfilter/vf_idet.c     { NULL }
NULL               51 libavfilter/vf_idet.c     return NULL;
NULL               84 libavfilter/vf_idet.c     return NULL;
NULL              432 libavfilter/vf_idet.c     { NULL }
NULL              441 libavfilter/vf_idet.c     { NULL }
NULL               54 libavfilter/vf_il.c     {"none",         NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_NONE},         0, 0, FLAGS, "luma_mode"},
NULL               55 libavfilter/vf_il.c     {"interleave",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_INTERLEAVE},   0, 0, FLAGS, "luma_mode"},
NULL               56 libavfilter/vf_il.c     {"i",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_INTERLEAVE},   0, 0, FLAGS, "luma_mode"},
NULL               57 libavfilter/vf_il.c     {"deinterleave", NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_DEINTERLEAVE}, 0, 0, FLAGS, "luma_mode"},
NULL               58 libavfilter/vf_il.c     {"d",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_DEINTERLEAVE}, 0, 0, FLAGS, "luma_mode"},
NULL               61 libavfilter/vf_il.c     {"none",         NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_NONE},         0, 0, FLAGS, "chroma_mode"},
NULL               62 libavfilter/vf_il.c     {"interleave",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_INTERLEAVE},   0, 0, FLAGS, "chroma_mode"},
NULL               63 libavfilter/vf_il.c     {"i",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_INTERLEAVE},   0, 0, FLAGS, "chroma_mode"},
NULL               64 libavfilter/vf_il.c     {"deinterleave", NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_DEINTERLEAVE}, 0, 0, FLAGS, "chroma_mode"},
NULL               65 libavfilter/vf_il.c     {"d",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_DEINTERLEAVE}, 0, 0, FLAGS, "chroma_mode"},
NULL               68 libavfilter/vf_il.c     {"none",         NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_NONE},         0, 0, FLAGS, "alpha_mode"},
NULL               69 libavfilter/vf_il.c     {"interleave",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_INTERLEAVE},   0, 0, FLAGS, "alpha_mode"},
NULL               70 libavfilter/vf_il.c     {"i",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_INTERLEAVE},   0, 0, FLAGS, "alpha_mode"},
NULL               71 libavfilter/vf_il.c     {"deinterleave", NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_DEINTERLEAVE}, 0, 0, FLAGS, "alpha_mode"},
NULL               72 libavfilter/vf_il.c     {"d",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=MODE_DEINTERLEAVE}, 0, 0, FLAGS, "alpha_mode"},
NULL               79 libavfilter/vf_il.c     {NULL}
NULL               86 libavfilter/vf_il.c     AVFilterFormats *formats = NULL;
NULL              193 libavfilter/vf_il.c     { NULL }
NULL              201 libavfilter/vf_il.c     { NULL }
NULL               57 libavfilter/vf_kerndeint.c     { NULL }
NULL              298 libavfilter/vf_kerndeint.c     { NULL }
NULL              306 libavfilter/vf_kerndeint.c     { NULL }
NULL              198 libavfilter/vf_lagfun.c     ctx->internal->execute(ctx, s->lagfun, &td, NULL, FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
NULL              219 libavfilter/vf_lagfun.c     { NULL },
NULL              228 libavfilter/vf_lagfun.c     { NULL }
NULL              237 libavfilter/vf_lagfun.c     { NULL }
NULL               53 libavfilter/vf_lenscorrection.c     { NULL }
NULL              194 libavfilter/vf_lenscorrection.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(h, ff_filter_get_nb_threads(ctx)));
NULL              207 libavfilter/vf_lenscorrection.c     { NULL }
NULL              216 libavfilter/vf_lenscorrection.c     { NULL }
NULL               98 libavfilter/vf_lensfun.c     { "make", "set camera maker", OFFSET(make), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               99 libavfilter/vf_lensfun.c     { "model", "set camera model", OFFSET(model), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL              100 libavfilter/vf_lensfun.c     { "lens_model", "set lens model", OFFSET(lens_model), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL              108 libavfilter/vf_lensfun.c         { "all", NULL, 0, AV_OPT_TYPE_CONST, {.i64=VIGNETTING | GEOMETRY_DISTORTION | SUBPIXEL_DISTORTION}, 0, 0, FLAGS, "mode" },
NULL              124 libavfilter/vf_lensfun.c         { "nearest", NULL, 0, AV_OPT_TYPE_CONST, {.i64=NEAREST}, 0, 0, FLAGS, "interpolation" },
NULL              125 libavfilter/vf_lensfun.c         { "linear", NULL, 0, AV_OPT_TYPE_CONST, {.i64=LINEAR}, 0, 0, FLAGS, "interpolation" },
NULL              126 libavfilter/vf_lensfun.c         { "lanczos", NULL, 0, AV_OPT_TYPE_CONST, {.i64=LANCZOS}, 0, 0, FLAGS, "interpolation" },
NULL              127 libavfilter/vf_lensfun.c     { NULL }
NULL              172 libavfilter/vf_lensfun.c     lenses = lf_db_find_lenses_hd(db, lensfun->camera, NULL, lensfun->lens_model, 0);
NULL              467 libavfilter/vf_lensfun.c                                NULL,
NULL              495 libavfilter/vf_lensfun.c                                NULL,
NULL              526 libavfilter/vf_lensfun.c     { NULL }
NULL              534 libavfilter/vf_lensfun.c     { NULL }
NULL              221 libavfilter/vf_libopencv.c     int *values = NULL, ret = 0;
NULL              277 libavfilter/vf_libopencv.c     char *kernel_str = NULL;
NULL              340 libavfilter/vf_libopencv.c     { "smooth", sizeof(SmoothContext), smooth_init, NULL, smooth_end_frame_filter },
NULL              406 libavfilter/vf_libopencv.c     { "filter_name",   NULL, OFFSET(name),   AV_OPT_TYPE_STRING, .flags = FLAGS },
NULL              407 libavfilter/vf_libopencv.c     { "filter_params", NULL, OFFSET(params), AV_OPT_TYPE_STRING, .flags = FLAGS },
NULL              408 libavfilter/vf_libopencv.c     { NULL }
NULL              419 libavfilter/vf_libopencv.c     { NULL }
NULL              427 libavfilter/vf_libopencv.c     { NULL }
NULL               76 libavfilter/vf_libvmaf.c     {"log_path",  "Set the file path to be used to store logs.",                        OFFSET(log_path), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 1, FLAGS},
NULL               77 libavfilter/vf_libvmaf.c     {"log_fmt",  "Set the format of the log (xml or json).",                            OFFSET(log_fmt), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 1, FLAGS},
NULL               83 libavfilter/vf_libvmaf.c     {"pool",  "Set the pool method to be used for computing vmaf.",                     OFFSET(pool), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 1, FLAGS},
NULL               87 libavfilter/vf_libvmaf.c     { NULL }
NULL              191 libavfilter/vf_libvmaf.c     pthread_exit(NULL);
NULL              192 libavfilter/vf_libvmaf.c     return NULL;
NULL              244 libavfilter/vf_libvmaf.c     pthread_mutex_init(&s->lock, NULL);
NULL              245 libavfilter/vf_libvmaf.c     pthread_cond_init (&s->cond, NULL);
NULL              286 libavfilter/vf_libvmaf.c     th = pthread_create(&s->vmaf_thread, NULL, call_vmaf, (void *) s);
NULL              336 libavfilter/vf_libvmaf.c         pthread_join(s->vmaf_thread, NULL);
NULL              356 libavfilter/vf_libvmaf.c     { NULL }
NULL              365 libavfilter/vf_libvmaf.c     { NULL }
NULL               55 libavfilter/vf_limiter.c     { NULL }
NULL              225 libavfilter/vf_limiter.c     ctx->internal->execute(ctx, filter_slice, &td, NULL,
NULL              240 libavfilter/vf_limiter.c     { NULL }
NULL              248 libavfilter/vf_limiter.c     { NULL }
NULL              141 libavfilter/vf_lumakey.c     if (ret = ctx->internal->execute(ctx, s->do_lumakey_slice, frame, NULL, FFMIN(frame->height, ff_filter_get_nb_threads(ctx))))
NULL              185 libavfilter/vf_lumakey.c     { NULL }
NULL              193 libavfilter/vf_lumakey.c     { NULL }
NULL              203 libavfilter/vf_lumakey.c     { NULL }
NULL               47 libavfilter/vf_lut.c     NULL
NULL               98 libavfilter/vf_lut.c     { NULL }
NULL              108 libavfilter/vf_lut.c         s->comp_expr[i] = NULL;
NULL              204 libavfilter/vf_lut.c     NULL
NULL              211 libavfilter/vf_lut.c     NULL
NULL              304 libavfilter/vf_lut.c         s->comp_expr[color] = NULL;
NULL              306 libavfilter/vf_lut.c                             var_names, funcs1_names, funcs1, NULL, NULL, 0, ctx);
NULL              544 libavfilter/vf_lut.c         ctx->internal->execute(ctx, lut_packed_16bits, &td, NULL,
NULL              549 libavfilter/vf_lut.c         ctx->internal->execute(ctx, lut_packed_8bits, &td, NULL,
NULL              554 libavfilter/vf_lut.c         ctx->internal->execute(ctx, lut_planar_16bits, &td, NULL,
NULL              559 libavfilter/vf_lut.c         ctx->internal->execute(ctx, lut_planar_8bits, &td, NULL,
NULL              575 libavfilter/vf_lut.c     { NULL }
NULL              581 libavfilter/vf_lut.c     { NULL }
NULL              648 libavfilter/vf_lut.c     { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS },
NULL              649 libavfilter/vf_lut.c     { NULL }
NULL               40 libavfilter/vf_lut2.c     NULL
NULL               89 libavfilter/vf_lut2.c     { NULL }
NULL              102 libavfilter/vf_lut2.c         s->comp_expr[i] = NULL;
NULL              296 libavfilter/vf_lut2.c     AVFrame *out, *srcx = NULL, *srcy = NULL;
NULL              318 libavfilter/vf_lut2.c         ctx->internal->execute(ctx, s->lut2, &td, NULL, FFMIN(s->heightx[1], ff_filter_get_nb_threads(ctx)));
NULL              367 libavfilter/vf_lut2.c         s->comp_expr[p] = NULL;
NULL              369 libavfilter/vf_lut2.c                             var_names, NULL, NULL, NULL, NULL, 0, ctx);
NULL              534 libavfilter/vf_lut2.c     { NULL }
NULL              543 libavfilter/vf_lut2.c     { NULL }
NULL              602 libavfilter/vf_lut2.c             ctx->internal->execute(ctx, s->lut2, &td, NULL, FFMIN(s->heightx[1], ff_filter_get_nb_threads(ctx)));
NULL              617 libavfilter/vf_lut2.c     { NULL }
NULL              629 libavfilter/vf_lut2.c     { NULL }
NULL              638 libavfilter/vf_lut2.c     { NULL }
NULL              106 libavfilter/vf_lut3d.c     { NULL }
NULL              522 libavfilter/vf_lut3d.c         return NULL;
NULL              587 libavfilter/vf_lut3d.c         size = strtol(line + 10, NULL, 0);
NULL              621 libavfilter/vf_lut3d.c             const int size = strtol(line + 12, NULL, 0);
NULL              637 libavfilter/vf_lut3d.c                                 float *vals = NULL;
NULL              712 libavfilter/vf_lut3d.c         if      (!strncmp(line, "in",  2)) in  = strtol(line + 2, NULL, 0);
NULL              713 libavfilter/vf_lut3d.c         else if (!strncmp(line, "out", 3)) out = strtol(line + 3, NULL, 0);
NULL              823 libavfilter/vf_lut3d.c     float *in_prelut[3]  = {NULL, NULL, NULL};
NULL              824 libavfilter/vf_lut3d.c     float *out_prelut[3] = {NULL, NULL, NULL};
NULL              855 libavfilter/vf_lut3d.c                 int npoints = strtol(line, NULL, 0);
NULL             1112 libavfilter/vf_lut3d.c             return NULL;
NULL             1119 libavfilter/vf_lut3d.c     ctx->internal->execute(ctx, lut3d->interp, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL             1138 libavfilter/vf_lut3d.c     { "file", "set 3D LUT file name", OFFSET(file), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL             1215 libavfilter/vf_lut3d.c     { NULL }
NULL             1223 libavfilter/vf_lut3d.c     { NULL }
NULL             1480 libavfilter/vf_lut3d.c     { NULL }
NULL             1489 libavfilter/vf_lut3d.c     { NULL }
NULL             1584 libavfilter/vf_lut3d.c                 int npoints = strtol(line, NULL, 0);
NULL             1600 libavfilter/vf_lut3d.c             size = strtol(line, NULL, 0);
NULL             1638 libavfilter/vf_lut3d.c             const int size = strtol(line + 12, NULL, 0);
NULL             1651 libavfilter/vf_lut3d.c                         float *vals = NULL;
NULL             1684 libavfilter/vf_lut3d.c     { "file", "set 1D LUT file name", OFFSET(file), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL             1691 libavfilter/vf_lut3d.c     { NULL }
NULL             2096 libavfilter/vf_lut3d.c             return NULL;
NULL             2103 libavfilter/vf_lut3d.c     ctx->internal->execute(ctx, lut1d->interp, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL             2127 libavfilter/vf_lut3d.c     { NULL }
NULL             2135 libavfilter/vf_lut3d.c     { NULL }
NULL               58 libavfilter/vf_maskedclamp.c     { NULL }
NULL              162 libavfilter/vf_maskedclamp.c         ctx->internal->execute(ctx, maskedclamp_slice, &td, NULL, FFMIN(s->height[0],
NULL              307 libavfilter/vf_maskedclamp.c     { NULL }
NULL              316 libavfilter/vf_maskedclamp.c     { NULL }
NULL               35 libavfilter/vf_maskedmerge.c     { NULL }
NULL              137 libavfilter/vf_maskedmerge.c         ctx->internal->execute(ctx, filter_slice, &td, NULL,
NULL              308 libavfilter/vf_maskedmerge.c     { NULL }
NULL              317 libavfilter/vf_maskedmerge.c     { NULL }
NULL               54 libavfilter/vf_maskedminmax.c     { NULL }
NULL              224 libavfilter/vf_maskedminmax.c         ctx->internal->execute(ctx, maskedminmax_slice, &td, NULL, FFMIN(s->planeheight[0],
NULL              316 libavfilter/vf_maskedminmax.c     { NULL }
NULL              325 libavfilter/vf_maskedminmax.c     { NULL }
NULL               55 libavfilter/vf_maskedthreshold.c     { NULL }
NULL              194 libavfilter/vf_maskedthreshold.c         ctx->internal->execute(ctx, threshold_slice, &td, NULL, FFMIN(s->planeheight[2],
NULL              273 libavfilter/vf_maskedthreshold.c     { NULL }
NULL              282 libavfilter/vf_maskedthreshold.c     { NULL }
NULL               58 libavfilter/vf_maskfun.c     { NULL }
NULL              108 libavfilter/vf_maskfun.c     ctx->internal->execute(ctx, s->maskfun, frame, NULL,
NULL              266 libavfilter/vf_maskfun.c     { NULL }
NULL              274 libavfilter/vf_maskfun.c     { NULL }
NULL               86 libavfilter/vf_mcdeint.c     CONST("fast",       NULL, MODE_FAST,       "mode"),
NULL               87 libavfilter/vf_mcdeint.c     CONST("medium",     NULL, MODE_MEDIUM,     "mode"),
NULL               88 libavfilter/vf_mcdeint.c     CONST("slow",       NULL, MODE_SLOW,       "mode"),
NULL               89 libavfilter/vf_mcdeint.c     CONST("extra_slow", NULL, MODE_EXTRA_SLOW, "mode"),
NULL               96 libavfilter/vf_mcdeint.c     { NULL }
NULL              107 libavfilter/vf_mcdeint.c     AVDictionary *opts = NULL;
NULL              293 libavfilter/vf_mcdeint.c     { NULL }
NULL              301 libavfilter/vf_mcdeint.c     { NULL }
NULL               64 libavfilter/vf_median.c     { NULL }
NULL              234 libavfilter/vf_median.c     ctx->internal->execute(ctx, filter_slice, &td, NULL, s->nb_threads);
NULL              277 libavfilter/vf_median.c     { NULL }
NULL              285 libavfilter/vf_median.c     { NULL }
NULL               56 libavfilter/vf_mergeplanes.c     { NULL }
NULL              111 libavfilter/vf_mergeplanes.c     AVFilterFormats *formats = NULL;
NULL              128 libavfilter/vf_mergeplanes.c     formats = NULL;
NULL              141 libavfilter/vf_mergeplanes.c     AVFrame *in[4] = { NULL };
NULL              296 libavfilter/vf_mergeplanes.c     { NULL }
NULL              308 libavfilter/vf_mergeplanes.c     .inputs        = NULL,
NULL               66 libavfilter/vf_mestimate.c     { NULL }
NULL              357 libavfilter/vf_mestimate.c     { NULL }
NULL              365 libavfilter/vf_mestimate.c     { NULL }
NULL               55 libavfilter/vf_midequalizer.c     { NULL }
NULL              366 libavfilter/vf_midequalizer.c     { NULL }
NULL              375 libavfilter/vf_midequalizer.c     { NULL }
NULL              234 libavfilter/vf_minterpolate.c     { NULL }
NULL             1250 libavfilter/vf_minterpolate.c     { NULL }
NULL             1259 libavfilter/vf_minterpolate.c     { NULL }
NULL              128 libavfilter/vf_misc_vaapi.c     AVFrame *output_frame    = NULL;
NULL              207 libavfilter/vf_misc_vaapi.c     { NULL },
NULL              214 libavfilter/vf_misc_vaapi.c     { NULL },
NULL              227 libavfilter/vf_misc_vaapi.c     { NULL }
NULL              236 libavfilter/vf_misc_vaapi.c     { NULL }
NULL               58 libavfilter/vf_mix.c     AVFilterFormats *pix_fmts = NULL;
NULL               76 libavfilter/vf_mix.c     char *p, *arg, *saveptr = NULL;
NULL              110 libavfilter/vf_mix.c         p = NULL;
NULL              214 libavfilter/vf_mix.c     ctx->internal->execute(ctx, mix_frames, &td, NULL, FFMIN(s->height[0], ff_filter_get_nb_threads(ctx)));
NULL              318 libavfilter/vf_mix.c     { NULL },
NULL              327 libavfilter/vf_mix.c     { NULL }
NULL              385 libavfilter/vf_mix.c     ctx->internal->execute(ctx, mix_frames, &td, NULL, FFMIN(s->height[0], ff_filter_get_nb_threads(ctx)));
NULL              394 libavfilter/vf_mix.c     { NULL },
NULL              403 libavfilter/vf_mix.c     { NULL }
NULL               63 libavfilter/vf_mpdecimate.c     { NULL }
NULL              234 libavfilter/vf_mpdecimate.c     { NULL }
NULL              242 libavfilter/vf_mpdecimate.c     { NULL }
NULL              331 libavfilter/vf_neighbor.c     ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(s->planeheight[1], ff_filter_get_nb_threads(ctx)));
NULL              344 libavfilter/vf_neighbor.c     { NULL }
NULL              352 libavfilter/vf_neighbor.c     { NULL }
NULL              382 libavfilter/vf_neighbor.c     { NULL }
NULL              397 libavfilter/vf_neighbor.c     { NULL }
NULL              411 libavfilter/vf_neighbor.c     { NULL }
NULL              425 libavfilter/vf_neighbor.c     { NULL }
NULL              126 libavfilter/vf_neighbor_opencl.c     AVFrame *output = NULL;
NULL              171 libavfilter/vf_neighbor_opencl.c                                      origin, origin, region, 0, NULL, NULL);
NULL              188 libavfilter/vf_neighbor_opencl.c             cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              189 libavfilter/vf_neighbor_opencl.c                                          global_work, NULL,
NULL              190 libavfilter/vf_neighbor_opencl.c                                          0, NULL, NULL);
NULL              249 libavfilter/vf_neighbor_opencl.c     { NULL }
NULL              258 libavfilter/vf_neighbor_opencl.c     { NULL }
NULL              272 libavfilter/vf_neighbor_opencl.c     { NULL }
NULL              300 libavfilter/vf_neighbor_opencl.c     { NULL }
NULL               75 libavfilter/vf_nlmeans.c     { NULL }
NULL              461 libavfilter/vf_nlmeans.c                 ctx->internal->execute(ctx, nlmeans_slice, &td, NULL,
NULL              569 libavfilter/vf_nlmeans.c     { NULL }
NULL              577 libavfilter/vf_nlmeans.c     { NULL }
NULL              133 libavfilter/vf_nlmeans_opencl.c                                        NULL, &cle);
NULL              138 libavfilter/vf_nlmeans_opencl.c                                  weight_buf_size, NULL, &cle);
NULL              143 libavfilter/vf_nlmeans_opencl.c                               weight_buf_size, NULL, &cle);
NULL              148 libavfilter/vf_nlmeans_opencl.c                                    sizeof(cl_int), NULL, &cle);
NULL              180 libavfilter/vf_nlmeans_opencl.c     int nb_pixel, *tmp = NULL, idx = 0;
NULL              181 libavfilter/vf_nlmeans_opencl.c     cl_int *dxdy = NULL;
NULL              186 libavfilter/vf_nlmeans_opencl.c                               0, NULL, NULL);
NULL              191 libavfilter/vf_nlmeans_opencl.c                               0, NULL, NULL);
NULL              236 libavfilter/vf_nlmeans_opencl.c                                NULL, worksize1, NULL, 0, NULL, NULL);
NULL              246 libavfilter/vf_nlmeans_opencl.c                                      1, NULL, worksize2, NULL, 0, NULL, NULL);
NULL              262 libavfilter/vf_nlmeans_opencl.c                                      2, NULL, worksize3, NULL, 0, NULL, NULL);
NULL              273 libavfilter/vf_nlmeans_opencl.c                                  NULL, worksize3, NULL, 0, NULL, NULL);
NULL              291 libavfilter/vf_nlmeans_opencl.c     AVFrame *output = NULL;
NULL              335 libavfilter/vf_nlmeans_opencl.c                                0, sizeof(cl_int), &zero, 0, NULL, NULL);
NULL              356 libavfilter/vf_nlmeans_opencl.c                               0, sizeof(cl_int), &overflow, 0, NULL, NULL);
NULL              408 libavfilter/vf_nlmeans_opencl.c     { NULL }
NULL              420 libavfilter/vf_nlmeans_opencl.c     { NULL }
NULL              429 libavfilter/vf_nlmeans_opencl.c     { NULL }
NULL              121 libavfilter/vf_nnedi.c         {"s8x6",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "nsize" },
NULL              122 libavfilter/vf_nnedi.c         {"s16x6",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "nsize" },
NULL              123 libavfilter/vf_nnedi.c         {"s32x6",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "nsize" },
NULL              124 libavfilter/vf_nnedi.c         {"s48x6",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=3}, 0, 0, FLAGS, "nsize" },
NULL              125 libavfilter/vf_nnedi.c         {"s8x4",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=4}, 0, 0, FLAGS, "nsize" },
NULL              126 libavfilter/vf_nnedi.c         {"s16x4",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=5}, 0, 0, FLAGS, "nsize" },
NULL              127 libavfilter/vf_nnedi.c         {"s32x4",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=6}, 0, 0, FLAGS, "nsize" },
NULL              129 libavfilter/vf_nnedi.c         {"n16",       NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "nns" },
NULL              130 libavfilter/vf_nnedi.c         {"n32",       NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "nns" },
NULL              131 libavfilter/vf_nnedi.c         {"n64",       NULL, 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "nns" },
NULL              132 libavfilter/vf_nnedi.c         {"n128",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=3}, 0, 0, FLAGS, "nns" },
NULL              133 libavfilter/vf_nnedi.c         {"n256",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=4}, 0, 0, FLAGS, "nns" },
NULL              135 libavfilter/vf_nnedi.c         {"fast", NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "qual" },
NULL              136 libavfilter/vf_nnedi.c         {"slow", NULL, 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "qual" },
NULL              141 libavfilter/vf_nnedi.c         {"none",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "pscrn" },
NULL              142 libavfilter/vf_nnedi.c         {"original",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "pscrn" },
NULL              143 libavfilter/vf_nnedi.c         {"new",       NULL, 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "pscrn" },
NULL              144 libavfilter/vf_nnedi.c     {"fapprox",       NULL, OFFSET(fapprox),       AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
NULL              145 libavfilter/vf_nnedi.c     { NULL }
NULL              813 libavfilter/vf_nnedi.c             s->src = NULL;
NULL              873 libavfilter/vf_nnedi.c         s->src = NULL;
NULL              910 libavfilter/vf_nnedi.c     FILE *weights_file = NULL;
NULL             1187 libavfilter/vf_nnedi.c     { NULL }
NULL             1197 libavfilter/vf_nnedi.c     { NULL }
NULL               62 libavfilter/vf_noise.c     {NULL}
NULL              135 libavfilter/vf_noise.c     AVFilterFormats *formats = NULL;
NULL              275 libavfilter/vf_noise.c     ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(n->height[0], ff_filter_get_nb_threads(ctx)));
NULL              329 libavfilter/vf_noise.c     { NULL }
NULL              337 libavfilter/vf_noise.c     { NULL }
NULL              135 libavfilter/vf_normalize.c     { NULL }
NULL              445 libavfilter/vf_normalize.c     if (s->history_mem == NULL)
NULL              522 libavfilter/vf_normalize.c     { NULL }
NULL              530 libavfilter/vf_normalize.c     { NULL }
NULL               34 libavfilter/vf_null.c     { NULL }
NULL               42 libavfilter/vf_null.c     { NULL }
NULL               44 libavfilter/vf_ocr.c     { "datapath",  "set datapath",            OFFSET(datapath),  AV_OPT_TYPE_STRING, {.str=NULL},  0, 0, FLAGS },
NULL               48 libavfilter/vf_ocr.c     { NULL }
NULL              138 libavfilter/vf_ocr.c     { NULL }
NULL              146 libavfilter/vf_ocr.c     { NULL }
NULL               60 libavfilter/vf_overlay.c     NULL
NULL               86 libavfilter/vf_overlay.c     av_expr_free(s->x_pexpr); s->x_pexpr = NULL;
NULL               87 libavfilter/vf_overlay.c     av_expr_free(s->y_pexpr); s->y_pexpr = NULL;
NULL              101 libavfilter/vf_overlay.c     s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
NULL              102 libavfilter/vf_overlay.c     s->var_values[VAR_Y] = av_expr_eval(s->y_pexpr, s->var_values, NULL);
NULL              104 libavfilter/vf_overlay.c     s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
NULL              112 libavfilter/vf_overlay.c     AVExpr *old = NULL;
NULL              117 libavfilter/vf_overlay.c                         NULL, NULL, NULL, NULL, 0, log_ctx);
NULL              208 libavfilter/vf_overlay.c     AVFilterFormats *main_formats = NULL;
NULL              209 libavfilter/vf_overlay.c     AVFilterFormats *overlay_formats = NULL;
NULL              287 libavfilter/vf_overlay.c     av_image_fill_max_pixsteps(s->overlay_pix_step, NULL, pix_desc);
NULL              823 libavfilter/vf_overlay.c     av_image_fill_max_pixsteps(s->main_pix_step,    NULL, pix_desc);
NULL              970 libavfilter/vf_overlay.c         ctx->internal->execute(ctx, s->blend_slice, &td, NULL, FFMIN(FFMAX(1, FFMIN3(s->y + second->height, FFMIN(second->height, mainpic->height), mainpic->height - s->y)),
NULL             1017 libavfilter/vf_overlay.c     { NULL }
NULL             1033 libavfilter/vf_overlay.c     { NULL }
NULL             1042 libavfilter/vf_overlay.c     { NULL }
NULL              134 libavfilter/vf_overlay_cuda.c         0, ctx->cu_stream, kernel_args, NULL));
NULL              399 libavfilter/vf_overlay_cuda.c     { NULL },
NULL              413 libavfilter/vf_overlay_cuda.c     { NULL }
NULL              422 libavfilter/vf_overlay_cuda.c     { NULL }
NULL              202 libavfilter/vf_overlay_opencl.c         cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              203 libavfilter/vf_overlay_opencl.c                                      global_work, NULL, 0, NULL, NULL);
NULL              288 libavfilter/vf_overlay_opencl.c     { NULL },
NULL              304 libavfilter/vf_overlay_opencl.c     { NULL }
NULL              313 libavfilter/vf_overlay_opencl.c     { NULL }
NULL               83 libavfilter/vf_overlay_qsv.c     NULL
NULL              100 libavfilter/vf_overlay_qsv.c     { NULL }
NULL              110 libavfilter/vf_overlay_qsv.c     AVExpr *ox_expr = NULL, *oy_expr = NULL;
NULL              111 libavfilter/vf_overlay_qsv.c     AVExpr *ow_expr = NULL, *oh_expr = NULL;
NULL              114 libavfilter/vf_overlay_qsv.c     ret = av_expr_parse(&e, s, var_names, NULL, NULL, NULL, NULL, 0, ctx); \
NULL              127 libavfilter/vf_overlay_qsv.c     var_values[VAR_OW]        = av_expr_eval(ow_expr, var_values, NULL);
NULL              129 libavfilter/vf_overlay_qsv.c     var_values[VAR_OH]        = av_expr_eval(oh_expr, var_values, NULL);
NULL              133 libavfilter/vf_overlay_qsv.c     var_values[VAR_OW]        = av_expr_eval(ow_expr, var_values, NULL);
NULL              136 libavfilter/vf_overlay_qsv.c     var_values[VAR_OX]        = av_expr_eval(ox_expr, var_values, NULL);
NULL              138 libavfilter/vf_overlay_qsv.c     var_values[VAR_OY]        = av_expr_eval(oy_expr, var_values, NULL);
NULL              142 libavfilter/vf_overlay_qsv.c     var_values[VAR_OX]        = av_expr_eval(ox_expr, var_values, NULL);
NULL              146 libavfilter/vf_overlay_qsv.c     var_values[VAR_OW]        = av_expr_eval(ow_expr, var_values, NULL);
NULL              148 libavfilter/vf_overlay_qsv.c     var_values[VAR_OH]        = av_expr_eval(oh_expr, var_values, NULL);
NULL              150 libavfilter/vf_overlay_qsv.c     var_values[VAR_OW]        = av_expr_eval(ow_expr, var_values, NULL);
NULL              235 libavfilter/vf_overlay_qsv.c     AVFrame        *frame = NULL;
NULL              409 libavfilter/vf_overlay_qsv.c     { NULL }
NULL              418 libavfilter/vf_overlay_qsv.c     { NULL }
NULL              316 libavfilter/vf_overlay_vulkan.c                              0, NULL, 0, NULL, FF_ARRAY_ELEMS(bar), bar);
NULL              450 libavfilter/vf_overlay_vulkan.c     { NULL },
NULL              466 libavfilter/vf_overlay_vulkan.c     { NULL }
NULL              475 libavfilter/vf_overlay_vulkan.c     { NULL }
NULL               56 libavfilter/vf_owdenoise.c     { NULL }
NULL              356 libavfilter/vf_owdenoise.c     { NULL }
NULL              364 libavfilter/vf_owdenoise.c     { NULL }
NULL               57 libavfilter/vf_pad.c     NULL
NULL              131 libavfilter/vf_pad.c                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              135 libavfilter/vf_pad.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              144 libavfilter/vf_pad.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              162 libavfilter/vf_pad.c                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              166 libavfilter/vf_pad.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              172 libavfilter/vf_pad.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              235 libavfilter/vf_pad.c         return NULL;
NULL              242 libavfilter/vf_pad.c         return NULL;
NULL              431 libavfilter/vf_pad.c     { NULL }
NULL              444 libavfilter/vf_pad.c     { NULL }
NULL              453 libavfilter/vf_pad.c     { NULL }
NULL               41 libavfilter/vf_pad_opencl.c     NULL
NULL              147 libavfilter/vf_pad_opencl.c     AVFrame *output_frame = NULL;
NULL              202 libavfilter/vf_pad_opencl.c         cle = clEnqueueNDRangeKernel(pad_ctx->command_queue, pad_ctx->kernel_pad, 2, NULL,
NULL              203 libavfilter/vf_pad_opencl.c                                      global_work, NULL, 0, NULL, NULL);
NULL              270 libavfilter/vf_pad_opencl.c                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              274 libavfilter/vf_pad_opencl.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              283 libavfilter/vf_pad_opencl.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              301 libavfilter/vf_pad_opencl.c                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              305 libavfilter/vf_pad_opencl.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              311 libavfilter/vf_pad_opencl.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              357 libavfilter/vf_pad_opencl.c     { NULL }
NULL              366 libavfilter/vf_pad_opencl.c     { NULL }
NULL              381 libavfilter/vf_pad_opencl.c     { NULL }
NULL               91 libavfilter/vf_palettegen.c     { NULL }
NULL              271 libavfilter/vf_palettegen.c         return NULL;
NULL              309 libavfilter/vf_palettegen.c         return NULL;
NULL              315 libavfilter/vf_palettegen.c         return NULL;
NULL              378 libavfilter/vf_palettegen.c         box = box_id >= 0 ? &s->boxes[box_id] : NULL;
NULL              424 libavfilter/vf_palettegen.c                          sizeof(*node->entries), NULL);
NULL              560 libavfilter/vf_palettegen.c     { NULL }
NULL              570 libavfilter/vf_palettegen.c     { NULL }
NULL              125 libavfilter/vf_paletteuse.c     { "debug_kdtree", "save Graphviz graph of the kdtree in specified file", OFFSET(dot_filename), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL              132 libavfilter/vf_paletteuse.c     { NULL }
NULL              366 libavfilter/vf_paletteuse.c                          sizeof(*node->entries), NULL);
NULL              539 libavfilter/vf_paletteuse.c         av_log(NULL, AV_LOG_ERROR, "Cannot open file '%s' for writing: %s\n",
NULL              553 libavfilter/vf_paletteuse.c     av_bprint_finalize(&buf, NULL);
NULL              576 libavfilter/vf_paletteuse.c                         av_log(NULL, AV_LOG_ERROR,
NULL              774 libavfilter/vf_paletteuse.c             av_log(NULL, AV_LOG_INFO, "Accuracy check passed\n");
NULL              804 libavfilter/vf_paletteuse.c     av_log(NULL, AV_LOG_INFO, "MEP:%.3f TotalMEP:%.3f\n",
NULL              906 libavfilter/vf_paletteuse.c         *outf = NULL;
NULL              919 libavfilter/vf_paletteuse.c         *outf = NULL;
NULL              929 libavfilter/vf_paletteuse.c         *outf = NULL;
NULL             1015 libavfilter/vf_paletteuse.c     AVFrame *master, *second, *out = NULL;
NULL             1130 libavfilter/vf_paletteuse.c     { NULL }
NULL             1139 libavfilter/vf_paletteuse.c     { NULL }
NULL               92 libavfilter/vf_perspective.c     { NULL }
NULL              128 libavfilter/vf_perspective.c static const char *const var_names[] = {   "W",   "H",   "in",   "on",        NULL };
NULL              152 libavfilter/vf_perspective.c                                          NULL, NULL, NULL, NULL,
NULL              482 libavfilter/vf_perspective.c         ctx->internal->execute(ctx, s->perspective, &td, NULL, FFMIN(td.h, ff_filter_get_nb_threads(ctx)));
NULL              503 libavfilter/vf_perspective.c     { NULL }
NULL              511 libavfilter/vf_perspective.c     { NULL }
NULL               91 libavfilter/vf_phase.c     { NULL }
NULL              227 libavfilter/vf_phase.c     { NULL }
NULL              235 libavfilter/vf_phase.c     { NULL }
NULL               68 libavfilter/vf_photosensitivity.c     { NULL }
NULL              149 libavfilter/vf_photosensitivity.c     ctx->internal->execute(ctx, convert_frame_partial, &td, NULL, FFMIN(NUM_CELLS, ff_filter_get_nb_threads(ctx)));
NULL              188 libavfilter/vf_photosensitivity.c     ctx->internal->execute(ctx, blend_frame_partial, &td, NULL, FFMIN(ctx->outputs[0]->h, ff_filter_get_nb_threads(ctx)));
NULL              321 libavfilter/vf_photosensitivity.c     { NULL }
NULL              329 libavfilter/vf_photosensitivity.c     { NULL }
NULL              117 libavfilter/vf_pixdesctest.c     { NULL }
NULL              125 libavfilter/vf_pixdesctest.c     { NULL }
NULL               45 libavfilter/vf_pp.c     { NULL }
NULL               70 libavfilter/vf_pp.c         pp->mode_id = av_clip(strtol(args, NULL, 10), 0, PP_QUALITY_MAX);
NULL              173 libavfilter/vf_pp.c     { NULL }
NULL              181 libavfilter/vf_pp.c     { NULL }
NULL               51 libavfilter/vf_pp7.c     { NULL }
NULL              325 libavfilter/vf_pp7.c     uint8_t *qp_table = NULL;
NULL              385 libavfilter/vf_pp7.c     { NULL }
NULL              393 libavfilter/vf_pp7.c     { NULL }
NULL               60 libavfilter/vf_premultiply.c     { NULL }
NULL              524 libavfilter/vf_premultiply.c         ctx->internal->execute(ctx, premultiply_slice, &td, NULL, FFMIN(s->height[0],
NULL              536 libavfilter/vf_premultiply.c     AVFrame *out = NULL, *base, *alpha;
NULL              637 libavfilter/vf_premultiply.c         AVFrame *frame = NULL;
NULL              638 libavfilter/vf_premultiply.c         AVFrame *out = NULL;
NULL              689 libavfilter/vf_premultiply.c         pad.config_props = NULL;
NULL              716 libavfilter/vf_premultiply.c     { NULL }
NULL              729 libavfilter/vf_premultiply.c     .inputs        = NULL,
NULL              752 libavfilter/vf_premultiply.c     .inputs        = NULL,
NULL              133 libavfilter/vf_procamp_vaapi.c     AVFrame *output_frame = NULL;
NULL              212 libavfilter/vf_procamp_vaapi.c     { NULL },
NULL              224 libavfilter/vf_procamp_vaapi.c     { NULL }
NULL              233 libavfilter/vf_procamp_vaapi.c     { NULL }
NULL               88 libavfilter/vf_program_opencl.c     AVFrame *output = NULL;
NULL              150 libavfilter/vf_program_opencl.c         cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              151 libavfilter/vf_program_opencl.c                                      global_work, NULL, 0, NULL, NULL);
NULL              339 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
NULL              341 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
NULL              347 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_IMAGE_SIZE,       { .str = NULL }, 0, 0, FLAGS },
NULL              349 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_IMAGE_SIZE,       { .str = NULL }, 0, 0, FLAGS },
NULL              351 libavfilter/vf_program_opencl.c     { NULL },
NULL              362 libavfilter/vf_program_opencl.c     { NULL }
NULL              375 libavfilter/vf_program_opencl.c     .inputs         = NULL,
NULL              386 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
NULL              388 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
NULL              391 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_IMAGE_SIZE,       { .str = NULL }, 0, 0, FLAGS },
NULL              393 libavfilter/vf_program_opencl.c       AV_OPT_TYPE_IMAGE_SIZE,       { .str = NULL }, 0, 0, FLAGS },
NULL              403 libavfilter/vf_program_opencl.c     { NULL },
NULL              415 libavfilter/vf_program_opencl.c     { NULL }
NULL              426 libavfilter/vf_program_opencl.c     .inputs         = NULL,
NULL               44 libavfilter/vf_pseudocolor.c     NULL
NULL               93 libavfilter/vf_pseudocolor.c     { NULL }
NULL              466 libavfilter/vf_pseudocolor.c         s->comp_expr[color] = NULL;
NULL              468 libavfilter/vf_pseudocolor.c                             var_names, NULL, NULL, NULL, NULL, 0, ctx);
NULL              638 libavfilter/vf_pseudocolor.c     { NULL }
NULL              646 libavfilter/vf_pseudocolor.c     { NULL }
NULL              656 libavfilter/vf_pseudocolor.c         s->comp_expr[i] = NULL;
NULL               64 libavfilter/vf_psnr.c     {"stats_file", "Set file where to store per-frame difference information", OFFSET(stats_file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               65 libavfilter/vf_psnr.c     {"f",          "Set file where to store per-frame difference information", OFFSET(stats_file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               68 libavfilter/vf_psnr.c     { NULL }
NULL              406 libavfilter/vf_psnr.c     { NULL }
NULL              415 libavfilter/vf_psnr.c     { NULL }
NULL               50 libavfilter/vf_pullup.c     { NULL }
NULL              155 libavfilter/vf_pullup.c         return NULL;
NULL              159 libavfilter/vf_pullup.c         return NULL;
NULL              166 libavfilter/vf_pullup.c             return NULL;
NULL              173 libavfilter/vf_pullup.c             return NULL;
NULL              226 libavfilter/vf_pullup.c         return NULL;
NULL              296 libavfilter/vf_pullup.c     return NULL;
NULL              475 libavfilter/vf_pullup.c         return NULL;
NULL              740 libavfilter/vf_pullup.c     s->last = NULL;
NULL              756 libavfilter/vf_pullup.c     { NULL }
NULL              764 libavfilter/vf_pullup.c     { NULL }
NULL               43 libavfilter/vf_qp.c     { "qp", "set qp expression", OFFSET(qp_expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               44 libavfilter/vf_qp.c     { NULL }
NULL               55 libavfilter/vf_qp.c     AVExpr *e = NULL;
NULL               56 libavfilter/vf_qp.c     static const char *var_names[] = { "known", "qp", "x", "y", "w", "h", NULL };
NULL               61 libavfilter/vf_qp.c     ret = av_expr_parse(&e, s->qp_expr_str, var_names, NULL, NULL, NULL, NULL, 0, ctx);
NULL               69 libavfilter/vf_qp.c         double temp_val = av_expr_eval(e, var_values, NULL);
NULL               93 libavfilter/vf_qp.c     AVFrame *out = NULL;
NULL              124 libavfilter/vf_qp.c                 static const char *var_names[] = { "known", "qp", "x", "y", "w", "h", NULL };
NULL              129 libavfilter/vf_qp.c                                             NULL, NULL, NULL, NULL, 0, 0, ctx);
NULL              150 libavfilter/vf_qp.c     out = NULL;
NULL              164 libavfilter/vf_qp.c     { NULL }
NULL              172 libavfilter/vf_qp.c     { NULL }
NULL               49 libavfilter/vf_random.c     { NULL }
NULL              109 libavfilter/vf_random.c         s->frames[s->nb_frames - 1] = NULL;
NULL              130 libavfilter/vf_random.c     { NULL }
NULL              139 libavfilter/vf_random.c     { NULL }
NULL               85 libavfilter/vf_readeia608.c     { NULL }
NULL              422 libavfilter/vf_readeia608.c     { NULL }
NULL              430 libavfilter/vf_readeia608.c     { NULL }
NULL               60 libavfilter/vf_readvitc.c     { NULL }
NULL              238 libavfilter/vf_readvitc.c     { NULL }
NULL              246 libavfilter/vf_readvitc.c     { NULL }
NULL               73 libavfilter/vf_remap.c     { NULL }
NULL              115 libavfilter/vf_remap.c     AVFilterFormats *pix_formats = NULL, *map_formats = NULL;
NULL              315 libavfilter/vf_remap.c         ctx->internal->execute(ctx, s->remap_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              399 libavfilter/vf_remap.c     { NULL }
NULL              408 libavfilter/vf_remap.c     { NULL }
NULL               42 libavfilter/vf_removegrain.c     {NULL}
NULL              621 libavfilter/vf_removegrain.c         ctx->internal->execute(ctx, filter_slice, &td, NULL,
NULL              640 libavfilter/vf_removegrain.c     { NULL }
NULL              648 libavfilter/vf_removegrain.c     { NULL }
NULL              100 libavfilter/vf_removelogo.c     { "filename", "set bitmap filename", OFFSET(filename), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              101 libavfilter/vf_removelogo.c     { "f",        "set bitmap filename", OFFSET(filename), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              102 libavfilter/vf_removelogo.c     { NULL }
NULL              565 libavfilter/vf_removelogo.c     { NULL }
NULL              573 libavfilter/vf_removelogo.c     { NULL }
NULL              173 libavfilter/vf_repeatfields.c     { NULL }
NULL              181 libavfilter/vf_repeatfields.c     { NULL }
NULL               49 libavfilter/vf_rotate.c     NULL
NULL              109 libavfilter/vf_rotate.c     { NULL }
NULL              132 libavfilter/vf_rotate.c     rot->angle_expr = NULL;
NULL              193 libavfilter/vf_rotate.c     NULL
NULL              199 libavfilter/vf_rotate.c     NULL
NULL              320 libavfilter/vf_rotate.c     rot->angle_expr = NULL;
NULL              322 libavfilter/vf_rotate.c                              func1_names, func1, NULL, NULL, 0, ctx)) < 0) {
NULL              331 libavfilter/vf_rotate.c                                  func1_names, func1, NULL, NULL, rot, 0, ctx);     \
NULL              343 libavfilter/vf_rotate.c                            func1_names, func1, NULL, NULL, rot, 0, ctx);
NULL              557 libavfilter/vf_rotate.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outh, ff_filter_get_nb_threads(ctx)));
NULL              573 libavfilter/vf_rotate.c                             NULL, NULL, NULL, NULL, 0, ctx);
NULL              593 libavfilter/vf_rotate.c     { NULL }
NULL              602 libavfilter/vf_rotate.c     { NULL }
NULL              103 libavfilter/vf_sab.c     { NULL }
NULL              135 libavfilter/vf_sab.c         f->pre_filter_context = NULL;
NULL              163 libavfilter/vf_sab.c     sws_f.chrH = sws_f.chrV = NULL;
NULL              166 libavfilter/vf_sab.c                                            sws_flags, &sws_f, NULL, NULL);
NULL              315 libavfilter/vf_sab.c     { NULL }
NULL              323 libavfilter/vf_sab.c     { NULL }
NULL               70 libavfilter/vf_scale.c     NULL
NULL              224 libavfilter/vf_scale.c     char *old_str_expr = NULL;
NULL              225 libavfilter/vf_scale.c     AVExpr *old_pexpr = NULL;
NULL              236 libavfilter/vf_scale.c         *pexpr_ptr = NULL;
NULL              241 libavfilter/vf_scale.c                         NULL, NULL, NULL, NULL, 0, ctx);
NULL              255 libavfilter/vf_scale.c     old_pexpr = NULL;
NULL              262 libavfilter/vf_scale.c     *pexpr_ptr = NULL;
NULL              304 libavfilter/vf_scale.c     ret = scale_parse_expr(ctx, NULL, &scale->w_pexpr, "width", scale->w_expr);
NULL              308 libavfilter/vf_scale.c     ret = scale_parse_expr(ctx, NULL, &scale->h_pexpr, "height", scale->h_expr);
NULL              319 libavfilter/vf_scale.c         const AVOption    *o = av_opt_find(&class, "sws_flags", NULL, 0,
NULL              326 libavfilter/vf_scale.c     *opts = NULL;
NULL              336 libavfilter/vf_scale.c     scale->w_pexpr = scale->h_pexpr = NULL;
NULL              340 libavfilter/vf_scale.c     scale->sws = NULL;
NULL              351 libavfilter/vf_scale.c         const AVPixFmtDescriptor *desc = NULL;
NULL              352 libavfilter/vf_scale.c         formats = NULL;
NULL              365 libavfilter/vf_scale.c         const AVPixFmtDescriptor *desc = NULL;
NULL              366 libavfilter/vf_scale.c         formats = NULL;
NULL              451 libavfilter/vf_scale.c     res = av_expr_eval(scale->w_pexpr, scale->var_values, NULL);
NULL              454 libavfilter/vf_scale.c     res = av_expr_eval(scale->h_pexpr, scale->var_values, NULL);
NULL              462 libavfilter/vf_scale.c     res = av_expr_eval(scale->w_pexpr, scale->var_values, NULL);
NULL              522 libavfilter/vf_scale.c     scale->isws[0] = scale->isws[1] = scale->sws = NULL;
NULL              557 libavfilter/vf_scale.c                 AVDictionaryEntry *e = NULL;
NULL              579 libavfilter/vf_scale.c             if ((ret = sws_init_context(*s, NULL, NULL)) < 0)
NULL              663 libavfilter/vf_scale.c     *frame_out = NULL;
NULL              694 libavfilter/vf_scale.c             ret = scale_parse_expr(ctx, NULL, &scale->w_pexpr, "width", scale->w_expr);
NULL              698 libavfilter/vf_scale.c             ret = scale_parse_expr(ctx, NULL, &scale->h_pexpr, "height", scale->h_expr);
NULL              887 libavfilter/vf_scale.c     return prev ? NULL : sws_get_class();
NULL              901 libavfilter/vf_scale.c     { "size",   "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
NULL              902 libavfilter/vf_scale.c     { "s",      "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
NULL              904 libavfilter/vf_scale.c     { "out_color_matrix", "set output YCbCr type",  OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS,  "color"},
NULL              905 libavfilter/vf_scale.c         { "auto",        NULL, 0, AV_OPT_TYPE_CONST, { .str = "auto" },      0, 0, FLAGS, "color" },
NULL              906 libavfilter/vf_scale.c         { "bt601",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt601" },     0, 0, FLAGS, "color" },
NULL              907 libavfilter/vf_scale.c         { "bt470",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt470" },     0, 0, FLAGS, "color" },
NULL              908 libavfilter/vf_scale.c         { "smpte170m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte170m" }, 0, 0, FLAGS, "color" },
NULL              909 libavfilter/vf_scale.c         { "bt709",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt709" },     0, 0, FLAGS, "color" },
NULL              910 libavfilter/vf_scale.c         { "fcc",         NULL, 0, AV_OPT_TYPE_CONST, { .str = "fcc" },       0, 0, FLAGS, "color" },
NULL              911 libavfilter/vf_scale.c         { "smpte240m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte240m" }, 0, 0, FLAGS, "color" },
NULL              912 libavfilter/vf_scale.c         { "bt2020",      NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt2020" },    0, 0, FLAGS, "color" },
NULL              915 libavfilter/vf_scale.c     { "auto",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
NULL              916 libavfilter/vf_scale.c     { "unknown", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
NULL              917 libavfilter/vf_scale.c     { "full",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
NULL              918 libavfilter/vf_scale.c     { "limited",NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
NULL              919 libavfilter/vf_scale.c     { "jpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
NULL              920 libavfilter/vf_scale.c     { "mpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
NULL              921 libavfilter/vf_scale.c     { "tv",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
NULL              922 libavfilter/vf_scale.c     { "pc",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
NULL              928 libavfilter/vf_scale.c     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
NULL              929 libavfilter/vf_scale.c     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
NULL              930 libavfilter/vf_scale.c     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
NULL              938 libavfilter/vf_scale.c     { NULL }
NULL              956 libavfilter/vf_scale.c     { NULL }
NULL              965 libavfilter/vf_scale.c     { NULL }
NULL             1001 libavfilter/vf_scale.c     { NULL }
NULL             1017 libavfilter/vf_scale.c     { NULL }
NULL              140 libavfilter/vf_scale_cuda.c     AVBufferRef *out_ref = NULL;
NULL              371 libavfilter/vf_scale_cuda.c     ret = CHECK_CU(cu->cuTexObjectCreate(&tex, &res_desc, &tex_desc, NULL));
NULL              377 libavfilter/vf_scale_cuda.c                                       BLOCKX, BLOCKY, 1, 0, s->cu_stream, args_uchar, NULL));
NULL              507 libavfilter/vf_scale_cuda.c     AVFrame *out = NULL;
NULL              546 libavfilter/vf_scale_cuda.c     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
NULL              547 libavfilter/vf_scale_cuda.c     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
NULL              548 libavfilter/vf_scale_cuda.c     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
NULL              550 libavfilter/vf_scale_cuda.c     { NULL },
NULL              566 libavfilter/vf_scale_cuda.c     { NULL }
NULL              575 libavfilter/vf_scale_cuda.c     { NULL }
NULL              158 libavfilter/vf_scale_npp.c     AVBufferRef *out_ref = NULL;
NULL              509 libavfilter/vf_scale_npp.c     AVFrame *out = NULL;
NULL              562 libavfilter/vf_scale_npp.c     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
NULL              563 libavfilter/vf_scale_npp.c     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
NULL              564 libavfilter/vf_scale_npp.c     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
NULL              566 libavfilter/vf_scale_npp.c     { NULL },
NULL              582 libavfilter/vf_scale_npp.c     { NULL }
NULL              591 libavfilter/vf_scale_npp.c     { NULL }
NULL               56 libavfilter/vf_scale_qsv.c     NULL
NULL              144 libavfilter/vf_scale_qsv.c         s->session = NULL;
NULL              289 libavfilter/vf_scale_qsv.c     mfxHDL handle = NULL;
NULL              485 libavfilter/vf_scale_qsv.c                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              489 libavfilter/vf_scale_qsv.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              495 libavfilter/vf_scale_qsv.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              555 libavfilter/vf_scale_qsv.c     mfxSyncPoint sync = NULL;
NULL              558 libavfilter/vf_scale_qsv.c     AVFrame *out = NULL;
NULL              571 libavfilter/vf_scale_qsv.c                                            NULL, &sync);
NULL              628 libavfilter/vf_scale_qsv.c     { NULL },
NULL              644 libavfilter/vf_scale_qsv.c     { NULL }
NULL              653 libavfilter/vf_scale_qsv.c     { NULL }
NULL              108 libavfilter/vf_scale_vaapi.c     AVFrame *output_frame    = NULL;
NULL              230 libavfilter/vf_scale_vaapi.c       OFFSET(colour_matrix_string), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
NULL              249 libavfilter/vf_scale_vaapi.c       { .str = NULL }, .flags = FLAGS },
NULL              252 libavfilter/vf_scale_vaapi.c       { .str = NULL }, .flags = FLAGS },
NULL              255 libavfilter/vf_scale_vaapi.c       { .str = NULL }, .flags = FLAGS },
NULL              257 libavfilter/vf_scale_vaapi.c     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
NULL              258 libavfilter/vf_scale_vaapi.c     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
NULL              259 libavfilter/vf_scale_vaapi.c     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
NULL              262 libavfilter/vf_scale_vaapi.c     { NULL },
NULL              274 libavfilter/vf_scale_vaapi.c     { NULL }
NULL              283 libavfilter/vf_scale_vaapi.c     { NULL }
NULL              372 libavfilter/vf_scale_vulkan.c                          0, NULL, 0, NULL, barrier_count, barriers);
NULL              503 libavfilter/vf_scale_vulkan.c     { NULL },
NULL              515 libavfilter/vf_scale_vulkan.c     { NULL }
NULL              524 libavfilter/vf_scale_vulkan.c     { NULL }
NULL               58 libavfilter/vf_scdet.c     {NULL}
NULL              203 libavfilter/vf_scdet.c     { NULL }
NULL              211 libavfilter/vf_scdet.c     { NULL }
NULL              134 libavfilter/vf_scroll.c     ctx->internal->execute(ctx, scroll_slice, &td, NULL,
NULL              191 libavfilter/vf_scroll.c     { NULL }
NULL              203 libavfilter/vf_scroll.c     { NULL }
NULL              211 libavfilter/vf_scroll.c     { NULL }
NULL               96 libavfilter/vf_selectivecolor.c     { color_name"s", "adjust "color_name" regions", OFFSET(opt_cmyk_adjust[range]), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS }
NULL              100 libavfilter/vf_selectivecolor.c         { "absolute", NULL, 0, AV_OPT_TYPE_CONST, {.i64=CORRECTION_METHOD_ABSOLUTE}, INT_MIN, INT_MAX, FLAGS, "correction_method" },
NULL              101 libavfilter/vf_selectivecolor.c         { "relative", NULL, 0, AV_OPT_TYPE_CONST, {.i64=CORRECTION_METHOD_RELATIVE}, INT_MIN, INT_MAX, FLAGS, "correction_method" },
NULL              111 libavfilter/vf_selectivecolor.c     { "psfile", "set Photoshop selectivecolor file name", OFFSET(psfile), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
NULL              112 libavfilter/vf_selectivecolor.c     { NULL }
NULL              193 libavfilter/vf_selectivecolor.c     ret = av_file_map(fname, &buf, &size, 0, NULL);
NULL              448 libavfilter/vf_selectivecolor.c                            &td, NULL, FFMIN(inlink->h, ff_filter_get_nb_threads(ctx)));
NULL              462 libavfilter/vf_selectivecolor.c     { NULL }
NULL              470 libavfilter/vf_selectivecolor.c     { NULL }
NULL              115 libavfilter/vf_separatefields.c         s->second = NULL;
NULL              164 libavfilter/vf_separatefields.c     { NULL }
NULL              173 libavfilter/vf_separatefields.c     { NULL }
NULL               55 libavfilter/vf_setparams.c     {"unspecified",                  NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_UNSPECIFIED},  0, 0, FLAGS, "range"},
NULL               56 libavfilter/vf_setparams.c     {"unknown",                      NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_UNSPECIFIED},  0, 0, FLAGS, "range"},
NULL               57 libavfilter/vf_setparams.c     {"limited",                      NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_MPEG},         0, 0, FLAGS, "range"},
NULL               58 libavfilter/vf_setparams.c     {"tv",                           NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_MPEG},         0, 0, FLAGS, "range"},
NULL               59 libavfilter/vf_setparams.c     {"mpeg",                         NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_MPEG},         0, 0, FLAGS, "range"},
NULL               60 libavfilter/vf_setparams.c     {"full",                         NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_JPEG},         0, 0, FLAGS, "range"},
NULL               61 libavfilter/vf_setparams.c     {"pc",                           NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_JPEG},         0, 0, FLAGS, "range"},
NULL               62 libavfilter/vf_setparams.c     {"jpeg",                         NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_JPEG},         0, 0, FLAGS, "range"},
NULL               66 libavfilter/vf_setparams.c     {"bt709",                           NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_BT709},        INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               67 libavfilter/vf_setparams.c     {"unknown",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_UNSPECIFIED},  INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               68 libavfilter/vf_setparams.c     {"bt470m",                          NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_BT470M},       INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               69 libavfilter/vf_setparams.c     {"bt470bg",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_BT470BG},      INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               70 libavfilter/vf_setparams.c     {"smpte170m",                       NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE170M},    INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               71 libavfilter/vf_setparams.c     {"smpte240m",                       NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE240M},    INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               72 libavfilter/vf_setparams.c     {"film",                            NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_FILM},         INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               73 libavfilter/vf_setparams.c     {"bt2020",                          NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_BT2020},       INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               74 libavfilter/vf_setparams.c     {"smpte428",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE428},     INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               75 libavfilter/vf_setparams.c     {"smpte431",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE431},     INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               76 libavfilter/vf_setparams.c     {"smpte432",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_SMPTE432},     INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               77 libavfilter/vf_setparams.c     {"jedec-p22",                       NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_JEDEC_P22},    INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               78 libavfilter/vf_setparams.c     {"ebu3213",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_PRI_EBU3213},      INT_MIN, INT_MAX, FLAGS, "color_primaries"},
NULL               82 libavfilter/vf_setparams.c     {"bt709",                          NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_BT709},        INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               83 libavfilter/vf_setparams.c     {"unknown",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_UNSPECIFIED},  INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               84 libavfilter/vf_setparams.c     {"bt470m",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_GAMMA22},      INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               85 libavfilter/vf_setparams.c     {"bt470bg",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_GAMMA28},      INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               86 libavfilter/vf_setparams.c     {"smpte170m",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_SMPTE170M},    INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               87 libavfilter/vf_setparams.c     {"smpte240m",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_SMPTE240M},    INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               88 libavfilter/vf_setparams.c     {"linear",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_LINEAR},       INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               89 libavfilter/vf_setparams.c     {"log100",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_LOG},          INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               90 libavfilter/vf_setparams.c     {"log316",                         NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_LOG_SQRT},     INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               91 libavfilter/vf_setparams.c     {"iec61966-2-4",                   NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_IEC61966_2_4}, INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               92 libavfilter/vf_setparams.c     {"bt1361e",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_BT1361_ECG},   INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               93 libavfilter/vf_setparams.c     {"iec61966-2-1",                   NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_IEC61966_2_1}, INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               94 libavfilter/vf_setparams.c     {"bt2020-10",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_BT2020_10},    INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               95 libavfilter/vf_setparams.c     {"bt2020-12",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_BT2020_12},    INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               96 libavfilter/vf_setparams.c     {"smpte2084",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_SMPTE2084},    INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               97 libavfilter/vf_setparams.c     {"smpte428",                       NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_SMPTE428},     INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL               98 libavfilter/vf_setparams.c     {"arib-std-b67",                   NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_TRC_ARIB_STD_B67}, INT_MIN, INT_MAX, FLAGS, "color_trc"},
NULL              102 libavfilter/vf_setparams.c     {"gbr",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_RGB},               INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              103 libavfilter/vf_setparams.c     {"bt709",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_BT709},             INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              104 libavfilter/vf_setparams.c     {"unknown",                    NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_UNSPECIFIED},       INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              105 libavfilter/vf_setparams.c     {"fcc",                        NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_FCC},               INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              106 libavfilter/vf_setparams.c     {"bt470bg",                    NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_BT470BG},           INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              107 libavfilter/vf_setparams.c     {"smpte170m",                  NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_SMPTE170M},         INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              108 libavfilter/vf_setparams.c     {"smpte240m",                  NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_SMPTE240M},         INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              109 libavfilter/vf_setparams.c     {"ycgco",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_YCGCO},             INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              110 libavfilter/vf_setparams.c     {"bt2020nc",                   NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_BT2020_NCL},        INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              111 libavfilter/vf_setparams.c     {"bt2020c",                    NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_BT2020_CL},         INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              112 libavfilter/vf_setparams.c     {"smpte2085",                  NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_SMPTE2085},         INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              113 libavfilter/vf_setparams.c     {"chroma-derived-nc",          NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_CHROMA_DERIVED_NCL},INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              114 libavfilter/vf_setparams.c     {"chroma-derived-c",           NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_CHROMA_DERIVED_CL}, INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              115 libavfilter/vf_setparams.c     {"ictcp",                      NULL,  0, AV_OPT_TYPE_CONST, {.i64=AVCOL_SPC_ICTCP},             INT_MIN, INT_MAX, FLAGS, "colorspace"},
NULL              116 libavfilter/vf_setparams.c     {NULL}
NULL              154 libavfilter/vf_setparams.c     { NULL }
NULL              162 libavfilter/vf_setparams.c     { NULL }
NULL              179 libavfilter/vf_setparams.c     {"unspecified",                  NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_UNSPECIFIED},  0, 0, FLAGS, "range"},
NULL              180 libavfilter/vf_setparams.c     {"unknown",                      NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_UNSPECIFIED},  0, 0, FLAGS, "range"},
NULL              181 libavfilter/vf_setparams.c     {"limited",                      NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_MPEG},         0, 0, FLAGS, "range"},
NULL              182 libavfilter/vf_setparams.c     {"tv",                           NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_MPEG},         0, 0, FLAGS, "range"},
NULL              183 libavfilter/vf_setparams.c     {"mpeg",                         NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_MPEG},         0, 0, FLAGS, "range"},
NULL              184 libavfilter/vf_setparams.c     {"full",                         NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_JPEG},         0, 0, FLAGS, "range"},
NULL              185 libavfilter/vf_setparams.c     {"pc",                           NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_JPEG},         0, 0, FLAGS, "range"},
NULL              186 libavfilter/vf_setparams.c     {"jpeg",                         NULL,   0, AV_OPT_TYPE_CONST, {.i64=AVCOL_RANGE_JPEG},         0, 0, FLAGS, "range"},
NULL              187 libavfilter/vf_setparams.c     {NULL}
NULL              221 libavfilter/vf_setparams.c     {NULL}
NULL               55 libavfilter/vf_showinfo.c     { NULL }
NULL              422 libavfilter/vf_showinfo.c     { NULL }
NULL              431 libavfilter/vf_showinfo.c     { NULL }
NULL               40 libavfilter/vf_showpalette.c     { NULL }
NULL              119 libavfilter/vf_showpalette.c     { NULL }
NULL              128 libavfilter/vf_showpalette.c     { NULL }
NULL               44 libavfilter/vf_shuffleframes.c     char *mapping, *saveptr = NULL, *p;
NULL               65 libavfilter/vf_shuffleframes.c         char *map = av_strtok(n == 0 ? mapping : NULL, " |", &saveptr);
NULL              137 libavfilter/vf_shuffleframes.c     { NULL },
NULL              148 libavfilter/vf_shuffleframes.c     { NULL },
NULL              156 libavfilter/vf_shuffleframes.c     { NULL },
NULL               45 libavfilter/vf_shuffleplanes.c     AVFilterFormats *formats = NULL;
NULL               99 libavfilter/vf_shuffleplanes.c     uint8_t *shuffled_data[4]     = { NULL };
NULL              143 libavfilter/vf_shuffleplanes.c     { NULL },
NULL              155 libavfilter/vf_shuffleplanes.c     { NULL },
NULL              163 libavfilter/vf_shuffleplanes.c     { NULL },
NULL               84 libavfilter/vf_signalstats.c     {NULL}
NULL              147 libavfilter/vf_signalstats.c         return NULL;
NULL              155 libavfilter/vf_signalstats.c         return NULL;
NULL              462 libavfilter/vf_signalstats.c     {NULL}
NULL              603 libavfilter/vf_signalstats.c                            NULL, FFMIN(s->chromah, ff_filter_get_nb_threads(ctx)));
NULL              648 libavfilter/vf_signalstats.c                 .out = out != in && s->outfilter == fil ? out : NULL,
NULL              825 libavfilter/vf_signalstats.c                            NULL, FFMIN(s->chromah, ff_filter_get_nb_threads(ctx)));
NULL              870 libavfilter/vf_signalstats.c                 .out = out != in && s->outfilter == fil ? out : NULL,
NULL             1003 libavfilter/vf_signalstats.c     { NULL }
NULL             1012 libavfilter/vf_signalstats.c     { NULL }
NULL               46 libavfilter/vf_signature.c         { "off",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = MODE_OFF},  0, 0, .flags = FLAGS, "mode" },
NULL               47 libavfilter/vf_signature.c         { "full", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = MODE_FULL}, 0, 0, .flags = FLAGS, "mode" },
NULL               48 libavfilter/vf_signature.c         { "fast", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = MODE_FAST}, 0, 0, .flags = FLAGS, "mode" },
NULL               67 libavfilter/vf_signature.c     { NULL }
NULL              674 libavfilter/vf_signature.c         sc->curfinesig = NULL;
NULL              712 libavfilter/vf_signature.c     if (sic->streamcontexts != NULL) {
NULL              723 libavfilter/vf_signature.c             sc->finesiglist = NULL;
NULL              730 libavfilter/vf_signature.c             sc->coarsesiglist = NULL;
NULL              757 libavfilter/vf_signature.c     { NULL }
NULL              769 libavfilter/vf_signature.c     .inputs        = NULL,
NULL               80 libavfilter/vf_smartblur.c     { NULL }
NULL              146 libavfilter/vf_smartblur.c     sws_filter.chrH = sws_filter.chrV = NULL;
NULL              147 libavfilter/vf_smartblur.c     f->filter_context = sws_getCachedContext(NULL,
NULL              150 libavfilter/vf_smartblur.c                                              flags, &sws_filter, NULL, NULL);
NULL              283 libavfilter/vf_smartblur.c     { NULL }
NULL              291 libavfilter/vf_smartblur.c     { NULL }
NULL               49 libavfilter/vf_spp.c     return prev ? NULL : avcodec_dct_get_class();
NULL               55 libavfilter/vf_spp.c     return prev ? NULL : s->dct;
NULL               68 libavfilter/vf_spp.c     { NULL }
NULL              365 libavfilter/vf_spp.c     const int8_t *qp_table = NULL;
NULL              456 libavfilter/vf_spp.c             s->log2_count = av_clip(strtol(args, NULL, 10), 0, MAX_LEVEL);
NULL              472 libavfilter/vf_spp.c         AVDictionaryEntry *e = NULL;
NULL              506 libavfilter/vf_spp.c     { NULL }
NULL              514 libavfilter/vf_spp.c     { NULL }
NULL               60 libavfilter/vf_sr.c     { "model", "path to model file specifying network architecture and its parameters", OFFSET(model_filename), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               61 libavfilter/vf_sr.c     { NULL }
NULL               91 libavfilter/vf_sr.c     sr_context->sws_contexts[0] = NULL;
NULL               92 libavfilter/vf_sr.c     sr_context->sws_contexts[1] = NULL;
NULL               93 libavfilter/vf_sr.c     sr_context->sws_contexts[2] = NULL;
NULL              158 libavfilter/vf_sr.c                                                  0, NULL, NULL, NULL);
NULL              162 libavfilter/vf_sr.c                                                  0, NULL, NULL, NULL);
NULL              171 libavfilter/vf_sr.c                                                      SWS_BICUBIC, NULL, NULL, NULL);
NULL              187 libavfilter/vf_sr.c                                                          SWS_BICUBIC, NULL, NULL, NULL);
NULL              271 libavfilter/vf_sr.c     { NULL }
NULL              279 libavfilter/vf_sr.c     { NULL }
NULL               76 libavfilter/vf_ssim.c     {"stats_file", "Set file where to store per-frame difference information", OFFSET(stats_file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               77 libavfilter/vf_ssim.c     {"f",          "Set file where to store per-frame difference information", OFFSET(stats_file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               78 libavfilter/vf_ssim.c     { NULL }
NULL              497 libavfilter/vf_ssim.c     { NULL }
NULL              506 libavfilter/vf_ssim.c     { NULL }
NULL               63 libavfilter/vf_stack.c     AVFilterFormats *pix_fmts = NULL;
NULL              185 libavfilter/vf_stack.c     ctx->internal->execute(ctx, process_slice, out, NULL, FFMIN(s->nb_inputs, ff_filter_get_nb_threads(ctx)));
NULL              255 libavfilter/vf_stack.c         char *arg, *p = s->layout, *saveptr = NULL;
NULL              256 libavfilter/vf_stack.c         char *arg2, *p2, *saveptr2 = NULL;
NULL              257 libavfilter/vf_stack.c         char *arg3, *p3, *saveptr3 = NULL;
NULL              272 libavfilter/vf_stack.c             p = NULL;
NULL              288 libavfilter/vf_stack.c                 p2 = NULL;
NULL              291 libavfilter/vf_stack.c                     p3 = NULL;
NULL              398 libavfilter/vf_stack.c     { NULL },
NULL              407 libavfilter/vf_stack.c     { NULL }
NULL              454 libavfilter/vf_stack.c     { "layout", "set custom layout", OFFSET(layout), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, .flags = FLAGS },
NULL              457 libavfilter/vf_stack.c     { NULL },
NULL              218 libavfilter/vf_stereo3d.c     { NULL }
NULL              591 libavfilter/vf_stereo3d.c     av_image_fill_max_pixsteps(s->pixstep, NULL, desc);
NULL              675 libavfilter/vf_stereo3d.c     AVFrame *out = NULL, *oleft, *oright, *ileft, *iright;
NULL              752 libavfilter/vf_stereo3d.c         s->prev = NULL;
NULL              764 libavfilter/vf_stereo3d.c         s->prev = NULL;
NULL              944 libavfilter/vf_stereo3d.c             ctx->internal->execute(ctx, filter_slice, &td, NULL,
NULL             1103 libavfilter/vf_stereo3d.c     { NULL }
NULL             1112 libavfilter/vf_stereo3d.c     { NULL }
NULL               69 libavfilter/vf_subtitles.c     {"filename",       "set the filename of file to read",                         OFFSET(filename),   AV_OPT_TYPE_STRING,     {.str = NULL},  0, 0, FLAGS }, \
NULL               70 libavfilter/vf_subtitles.c     {"f",              "set the filename of file to read",                         OFFSET(filename),   AV_OPT_TYPE_STRING,     {.str = NULL},  0, 0, FLAGS }, \
NULL               71 libavfilter/vf_subtitles.c     {"original_size",  "set the size of the original video (used to scale fonts)", OFFSET(original_w), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL},  0, 0, FLAGS }, \
NULL               72 libavfilter/vf_subtitles.c     {"fontsdir",       "set the directory containing the fonts to read",           OFFSET(fontsdir),   AV_OPT_TYPE_STRING,     {.str = NULL},  0, 0, FLAGS }, \
NULL              204 libavfilter/vf_subtitles.c     { NULL }
NULL              212 libavfilter/vf_subtitles.c     { NULL }
NULL              220 libavfilter/vf_subtitles.c         {"auto", NULL,                 0, AV_OPT_TYPE_CONST, {.i64 = -1},                  INT_MIN, INT_MAX, FLAGS, "shaping_mode"},
NULL              223 libavfilter/vf_subtitles.c     {NULL},
NULL              237 libavfilter/vf_subtitles.c     ass_set_fonts(ass->renderer, NULL, NULL, 1, NULL, 1);
NULL              239 libavfilter/vf_subtitles.c     ass->track = ass_read_file(ass->library, ass->filename, NULL);
NULL              266 libavfilter/vf_subtitles.c     {"charenc",      "set input character encoding", OFFSET(charenc),      AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS},
NULL              269 libavfilter/vf_subtitles.c     {"force_style",  "force subtitle style",         OFFSET(force_style),  AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS},
NULL              270 libavfilter/vf_subtitles.c     {NULL},
NULL              277 libavfilter/vf_subtitles.c     NULL
NULL              282 libavfilter/vf_subtitles.c     const AVDictionaryEntry *tag = NULL;
NULL              285 libavfilter/vf_subtitles.c     tag = av_dict_get(st->metadata, "mimetype", NULL, AV_DICT_MATCH_CASE);
NULL              302 libavfilter/vf_subtitles.c     AVDictionary *codec_opts = NULL;
NULL              303 libavfilter/vf_subtitles.c     AVFormatContext *fmt = NULL;
NULL              304 libavfilter/vf_subtitles.c     AVCodecContext *dec_ctx = NULL;
NULL              305 libavfilter/vf_subtitles.c     AVCodec *dec = NULL;
NULL              322 libavfilter/vf_subtitles.c     ret = avformat_open_input(&fmt, ass->filename, NULL, NULL);
NULL              327 libavfilter/vf_subtitles.c     ret = avformat_find_stream_info(fmt, NULL);
NULL              333 libavfilter/vf_subtitles.c         ret = av_find_best_stream(fmt, AVMEDIA_TYPE_SUBTITLE, -1, -1, NULL, 0);
NULL              362 libavfilter/vf_subtitles.c             const AVDictionaryEntry *tag = NULL;
NULL              363 libavfilter/vf_subtitles.c             tag = av_dict_get(st->metadata, "filename", NULL,
NULL              380 libavfilter/vf_subtitles.c     ass_set_fonts(ass->renderer, NULL, NULL, 1, NULL, 1);
NULL              418 libavfilter/vf_subtitles.c     ret = avcodec_open2(dec_ctx, NULL, &codec_opts);
NULL              423 libavfilter/vf_subtitles.c         char **list = NULL;
NULL              424 libavfilter/vf_subtitles.c         char *temp = NULL;
NULL              433 libavfilter/vf_subtitles.c             ptr = av_strtok(NULL, ",", &temp);
NULL              435 libavfilter/vf_subtitles.c         av_dynarray_add(&list, &i, NULL);
NULL              449 libavfilter/vf_subtitles.c     pkt.data = NULL;
NULL              335 libavfilter/vf_super2xsai.c     { NULL }
NULL              344 libavfilter/vf_super2xsai.c     { NULL }
NULL               54 libavfilter/vf_swaprect.c     { NULL },
NULL               61 libavfilter/vf_swaprect.c     AVFilterFormats *pix_fmts = NULL;
NULL               76 libavfilter/vf_swaprect.c static const char *const var_names[] = {   "w",   "h",   "a",   "n",   "t",   "pos",   "sar",   "dar",        NULL };
NULL              106 libavfilter/vf_swaprect.c                                  NULL, NULL, NULL, NULL,
NULL              113 libavfilter/vf_swaprect.c                                  NULL, NULL, NULL, NULL,
NULL              120 libavfilter/vf_swaprect.c                                  NULL, NULL, NULL, NULL,
NULL              127 libavfilter/vf_swaprect.c                                  NULL, NULL, NULL, NULL,
NULL              134 libavfilter/vf_swaprect.c                                  NULL, NULL, NULL, NULL,
NULL              141 libavfilter/vf_swaprect.c                                  NULL, NULL, NULL, NULL,
NULL              211 libavfilter/vf_swaprect.c     av_image_fill_max_pixsteps(s->pixsteps, NULL, s->desc);
NULL              235 libavfilter/vf_swaprect.c     { NULL }
NULL              243 libavfilter/vf_swaprect.c     { NULL }
NULL               39 libavfilter/vf_swapuv.c     { NULL }
NULL               90 libavfilter/vf_swapuv.c     AVFilterFormats *formats = NULL;
NULL              109 libavfilter/vf_swapuv.c     { NULL }
NULL              117 libavfilter/vf_swapuv.c     { NULL }
NULL               66 libavfilter/vf_telecine.c     {NULL}
NULL              104 libavfilter/vf_telecine.c     AVFilterFormats *pix_fmts = NULL;
NULL              281 libavfilter/vf_telecine.c     { NULL }
NULL              290 libavfilter/vf_telecine.c     { NULL }
NULL               41 libavfilter/vf_threshold.c     { NULL }
NULL              147 libavfilter/vf_threshold.c         ctx->internal->execute(ctx, filter_slice, &td, NULL,
NULL              343 libavfilter/vf_threshold.c     { NULL }
NULL              352 libavfilter/vf_threshold.c     { NULL }
NULL               54 libavfilter/vf_thumbnail.c     { NULL }
NULL              126 libavfilter/vf_thumbnail.c     s->frames[best_frame_idx].buf = NULL;
NULL              215 libavfilter/vf_thumbnail.c     { NULL }
NULL              224 libavfilter/vf_thumbnail.c     { NULL }
NULL               80 libavfilter/vf_thumbnail_cuda.c     { NULL }
NULL              152 libavfilter/vf_thumbnail_cuda.c     s->frames[best_frame_idx].buf = NULL;
NULL              183 libavfilter/vf_thumbnail_cuda.c     ret = CHECK_CU(cu->cuTexObjectCreate(&tex, &res_desc, &tex_desc, NULL));
NULL              189 libavfilter/vf_thumbnail_cuda.c                                       BLOCKX, BLOCKY, 1, 0, s->cu_stream, args, NULL));
NULL              316 libavfilter/vf_thumbnail_cuda.c         s->cu_module = NULL;
NULL              431 libavfilter/vf_thumbnail_cuda.c     { NULL }
NULL              440 libavfilter/vf_thumbnail_cuda.c     { NULL }
NULL               68 libavfilter/vf_tile.c     { NULL }
NULL              187 libavfilter/vf_tile.c     tile->out_ref = NULL;
NULL              275 libavfilter/vf_tile.c     { NULL }
NULL              285 libavfilter/vf_tile.c     { NULL }
NULL               58 libavfilter/vf_tinterlace.c     {NULL}
NULL               72 libavfilter/vf_tinterlace.c    { NULL }
NULL              547 libavfilter/vf_tinterlace.c     { NULL }
NULL              556 libavfilter/vf_tinterlace.c     { NULL }
NULL              278 libavfilter/vf_tonemap.c     ctx->internal->execute(ctx, tonemap_slice, &td, NULL, FFMIN(in->height, ff_filter_get_nb_threads(ctx)));
NULL              315 libavfilter/vf_tonemap.c     { NULL }
NULL              326 libavfilter/vf_tonemap.c     { NULL }
NULL              334 libavfilter/vf_tonemap.c     { NULL }
NULL              249 libavfilter/vf_tonemap_opencl.c     av_bprint_finalize(&header, NULL);
NULL              265 libavfilter/vf_tonemap_opencl.c                        NULL, &cle);
NULL              272 libavfilter/vf_tonemap_opencl.c     av_bprint_finalize(&header, NULL);
NULL              329 libavfilter/vf_tonemap_opencl.c     cle = clEnqueueNDRangeKernel(ctx->command_queue, kernel, 2, NULL,
NULL              331 libavfilter/vf_tonemap_opencl.c                                  0, NULL, NULL);
NULL              343 libavfilter/vf_tonemap_opencl.c     AVFrame *output = NULL;
NULL              436 libavfilter/vf_tonemap_opencl.c                                          0, NULL, NULL, &cle);
NULL              447 libavfilter/vf_tonemap_opencl.c                                     NULL, NULL);
NULL              519 libavfilter/vf_tonemap_opencl.c     { NULL }
NULL              531 libavfilter/vf_tonemap_opencl.c     { NULL }
NULL              540 libavfilter/vf_tonemap_opencl.c     { NULL }
NULL              240 libavfilter/vf_tonemap_vaapi.c     AVFrame *output_frame      = NULL;
NULL              367 libavfilter/vf_tonemap_vaapi.c       { .str = NULL }, .flags = FLAGS, "matrix" },
NULL              370 libavfilter/vf_tonemap_vaapi.c       { .str = NULL }, .flags = FLAGS, "matrix" },
NULL              373 libavfilter/vf_tonemap_vaapi.c       { .str = NULL }, .flags = FLAGS, "primaries" },
NULL              376 libavfilter/vf_tonemap_vaapi.c       { .str = NULL }, .flags = FLAGS, "primaries" },
NULL              379 libavfilter/vf_tonemap_vaapi.c       { .str = NULL }, .flags = FLAGS, "transfer" },
NULL              382 libavfilter/vf_tonemap_vaapi.c       { .str = NULL }, .flags = FLAGS, "transfer" },
NULL              383 libavfilter/vf_tonemap_vaapi.c     { NULL }
NULL              396 libavfilter/vf_tonemap_vaapi.c     { NULL }
NULL              405 libavfilter/vf_tonemap_vaapi.c     { NULL }
NULL               62 libavfilter/vf_tpad.c     { NULL }
NULL               77 libavfilter/vf_tpad.c     AVFrame *frame = NULL;
NULL              109 libavfilter/vf_tpad.c             s->cache_start = NULL;
NULL              197 libavfilter/vf_tpad.c     { NULL }
NULL              205 libavfilter/vf_tpad.c     { NULL }
NULL               57 libavfilter/vf_transpose.c     AVFilterFormats *pix_fmts = NULL;
NULL              209 libavfilter/vf_transpose.c     av_image_fill_max_pixsteps(s->pixsteps, NULL, desc_out);
NULL              355 libavfilter/vf_transpose.c     ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              376 libavfilter/vf_transpose.c     { NULL }
NULL              388 libavfilter/vf_transpose.c     { NULL }
NULL              397 libavfilter/vf_transpose.c     { NULL }
NULL              126 libavfilter/vf_transpose_npp.c     AVBufferRef *out_ref = NULL;
NULL              402 libavfilter/vf_transpose_npp.c     AVFrame *out = NULL;
NULL              448 libavfilter/vf_transpose_npp.c     { NULL },
NULL              464 libavfilter/vf_transpose_npp.c     { NULL }
NULL              473 libavfilter/vf_transpose_npp.c     { NULL }
NULL              140 libavfilter/vf_transpose_opencl.c     AVFrame *output = NULL;
NULL              192 libavfilter/vf_transpose_opencl.c         cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              193 libavfilter/vf_transpose_opencl.c                                      global_work, NULL,
NULL              194 libavfilter/vf_transpose_opencl.c                                      0, NULL, NULL);
NULL              252 libavfilter/vf_transpose_opencl.c     { NULL }
NULL              265 libavfilter/vf_transpose_opencl.c     { NULL }
NULL              274 libavfilter/vf_transpose_opencl.c     { NULL }
NULL               51 libavfilter/vf_transpose_vaapi.c                                        NULL, 0,
NULL              125 libavfilter/vf_transpose_vaapi.c     AVFrame *output_frame      = NULL;
NULL              251 libavfilter/vf_transpose_vaapi.c     { NULL }
NULL              265 libavfilter/vf_transpose_vaapi.c     { NULL }
NULL              274 libavfilter/vf_transpose_vaapi.c     { NULL }
NULL               66 libavfilter/vf_unsharp.c     const uint8_t *src2 = NULL;  //silence a warning
NULL              158 libavfilter/vf_unsharp.c         ctx->internal->execute(ctx, unsharp_slice, &td, NULL, FFMIN(plane_h[i], s->nb_threads));
NULL              320 libavfilter/vf_unsharp.c     { NULL }
NULL              332 libavfilter/vf_unsharp.c     { NULL }
NULL              340 libavfilter/vf_unsharp.c     { NULL }
NULL              214 libavfilter/vf_unsharp_opencl.c     AVFrame *output = NULL;
NULL              276 libavfilter/vf_unsharp_opencl.c         cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              277 libavfilter/vf_unsharp_opencl.c                                      global_work, ctx->global ? NULL : local_work,
NULL              278 libavfilter/vf_unsharp_opencl.c                                      0, NULL, NULL);
NULL              377 libavfilter/vf_unsharp_opencl.c     { NULL }
NULL              389 libavfilter/vf_unsharp_opencl.c     { NULL }
NULL              398 libavfilter/vf_unsharp_opencl.c     { NULL }
NULL               45 libavfilter/vf_untile.c     { NULL }
NULL               65 libavfilter/vf_untile.c     AVFilterFormats *formats = NULL;
NULL              104 libavfilter/vf_untile.c     av_image_fill_max_pixsteps(s->max_step, NULL, s->desc);
NULL              127 libavfilter/vf_untile.c             s->frame = NULL;
NULL              175 libavfilter/vf_untile.c     { NULL }
NULL              184 libavfilter/vf_untile.c     { NULL }
NULL               65 libavfilter/vf_uspp.c     { NULL }
NULL              347 libavfilter/vf_uspp.c         AVDictionary *opts = NULL;
NULL              350 libavfilter/vf_uspp.c         if (!(uspp->avctx_enc[i] = avcodec_alloc_context3(NULL)))
NULL              388 libavfilter/vf_uspp.c     uint8_t *qp_table = NULL;
NULL              488 libavfilter/vf_uspp.c     { NULL }
NULL              496 libavfilter/vf_uspp.c     { NULL }
NULL              158 libavfilter/vf_v360.c     { NULL }
NULL              292 libavfilter/vf_v360.c             const uint8_t *mask = plane == 3 ? s->mask : NULL;                                             \
NULL             3721 libavfilter/vf_v360.c                 uint8_t *mask8 = p ? NULL : s->mask + (j * s->pr_width[0] + i);
NULL             3722 libavfilter/vf_v360.c                 uint16_t *mask16 = p ? NULL : (uint16_t *)s->mask + (j * s->pr_width[0] + i);
NULL             4029 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4071 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4083 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4089 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4095 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4101 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4113 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4125 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4131 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4137 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4143 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4149 libavfilter/vf_v360.c         prepare_out = NULL;
NULL             4240 libavfilter/vf_v360.c     ctx->internal->execute(ctx, v360_slice, NULL, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL             4263 libavfilter/vf_v360.c     ctx->internal->execute(ctx, s->remap_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL             4299 libavfilter/vf_v360.c     { NULL }
NULL             4308 libavfilter/vf_v360.c     { NULL }
NULL               81 libavfilter/vf_vaguedenoiser.c     { NULL }
NULL              601 libavfilter/vf_vaguedenoiser.c     { NULL }
NULL              610 libavfilter/vf_vaguedenoiser.c     { NULL }
NULL              137 libavfilter/vf_vectorscope.c     { NULL }
NULL             1578 libavfilter/vf_vectorscope.c     { NULL }
NULL             1587 libavfilter/vf_vectorscope.c     { NULL }
NULL               39 libavfilter/vf_vflip.c     { NULL }
NULL               62 libavfilter/vf_vflip.c         return NULL;
NULL              102 libavfilter/vf_vflip.c     { NULL }
NULL              110 libavfilter/vf_vflip.c     { NULL }
NULL               96 libavfilter/vf_vfrdet.c     { NULL }
NULL              104 libavfilter/vf_vfrdet.c     { NULL }
NULL              169 libavfilter/vf_vibrance.c     if (res = avctx->internal->execute(avctx, s->do_slice, frame, NULL,
NULL              186 libavfilter/vf_vibrance.c     AVFilterFormats *formats = NULL;
NULL              215 libavfilter/vf_vibrance.c     { NULL }
NULL              223 libavfilter/vf_vibrance.c     { NULL }
NULL              238 libavfilter/vf_vibrance.c     { NULL }
NULL               58 libavfilter/vf_vidstabdetect.c     {NULL}
NULL               79 libavfilter/vf_vidstabdetect.c         s->f = NULL;
NULL              147 libavfilter/vf_vidstabdetect.c     if (s->f == NULL) {
NULL              199 libavfilter/vf_vidstabdetect.c     { NULL }
NULL              207 libavfilter/vf_vidstabdetect.c     { NULL }
NULL              102 libavfilter/vf_vidstabtransform.c     {NULL}
NULL              300 libavfilter/vf_vidstabtransform.c     { NULL }
NULL              308 libavfilter/vf_vidstabtransform.c     { NULL }
NULL               40 libavfilter/vf_vignette.c     NULL
NULL               88 libavfilter/vf_vignette.c         { "forward",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0}, INT_MIN, INT_MAX, FLAGS, "mode"},
NULL               89 libavfilter/vf_vignette.c         { "backward", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, INT_MIN, INT_MAX, FLAGS, "mode"},
NULL               95 libavfilter/vf_vignette.c     { NULL }
NULL              106 libavfilter/vf_vignette.c                             NULL, NULL, NULL, NULL, 0, ctx);                \
NULL              177 libavfilter/vf_vignette.c     s->angle = av_expr_eval(s->angle_pexpr, s->var_values, NULL);
NULL              178 libavfilter/vf_vignette.c     s->x0 = av_expr_eval(s->x0_pexpr, s->var_values, NULL);
NULL              179 libavfilter/vf_vignette.c     s->y0 = av_expr_eval(s->y0_pexpr, s->var_values, NULL);
NULL              325 libavfilter/vf_vignette.c         update_context(s, inlink, NULL);
NULL              337 libavfilter/vf_vignette.c     { NULL }
NULL              345 libavfilter/vf_vignette.c     { NULL }
NULL               55 libavfilter/vf_vmafmotion.c     {"stats_file", "Set file where to store per-frame difference information", OFFSET(stats_file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL               56 libavfilter/vf_vmafmotion.c     { NULL }
NULL              263 libavfilter/vf_vmafmotion.c     AVFilterFormats *fmts_list = NULL;
NULL              347 libavfilter/vf_vmafmotion.c     { NULL }
NULL              355 libavfilter/vf_vmafmotion.c     { NULL }
NULL              132 libavfilter/vf_vpp_qsv.c     { NULL }
NULL              144 libavfilter/vf_vpp_qsv.c     NULL
NULL              162 libavfilter/vf_vpp_qsv.c     ret = av_expr_parse(&e, s, var_names, NULL, NULL, NULL, NULL, 0, ctx); \
NULL              169 libavfilter/vf_vpp_qsv.c     i = v = av_expr_eval(e, var_values, NULL); \
NULL              173 libavfilter/vf_vpp_qsv.c     AVExpr *w_expr  = NULL, *h_expr  = NULL;
NULL              174 libavfilter/vf_vpp_qsv.c     AVExpr *cw_expr = NULL, *ch_expr = NULL;
NULL              175 libavfilter/vf_vpp_qsv.c     AVExpr *cx_expr = NULL, *cy_expr = NULL;
NULL              292 libavfilter/vf_vpp_qsv.c     QSVVPPParam     param = { NULL };
NULL              303 libavfilter/vf_vpp_qsv.c     param.filter_frame  = NULL;
NULL              541 libavfilter/vf_vpp_qsv.c     { NULL }
NULL              550 libavfilter/vf_vpp_qsv.c     { NULL }
NULL               57 libavfilter/vf_w3fdif.c     CONST("simple",  NULL, 0, "filter"),
NULL               58 libavfilter/vf_w3fdif.c     CONST("complex", NULL, 1, "filter"),
NULL               62 libavfilter/vf_w3fdif.c     { NULL }
NULL              489 libavfilter/vf_w3fdif.c         ctx->internal->execute(ctx, deinterlace_slice, &td, NULL, FFMIN(s->planeheight[plane], s->nb_threads));
NULL              582 libavfilter/vf_w3fdif.c     { NULL }
NULL              592 libavfilter/vf_w3fdif.c     { NULL }
NULL              136 libavfilter/vf_waveform.c         { "row",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "mode" },
NULL              137 libavfilter/vf_waveform.c         { "column", NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "mode" },
NULL              144 libavfilter/vf_waveform.c         { "overlay", NULL, 0, AV_OPT_TYPE_CONST, {.i64=OVERLAY}, 0, 0, FLAGS, "display" },
NULL              145 libavfilter/vf_waveform.c         { "stack",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=STACK},   0, 0, FLAGS, "display" },
NULL              146 libavfilter/vf_waveform.c         { "parade",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=PARADE},  0, 0, FLAGS, "display" },
NULL              151 libavfilter/vf_waveform.c         { "none",         NULL, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "envelope" },
NULL              152 libavfilter/vf_waveform.c         { "instant",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "envelope" },
NULL              153 libavfilter/vf_waveform.c         { "peak",         NULL, 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "envelope" },
NULL              154 libavfilter/vf_waveform.c         { "peak+instant", NULL, 0, AV_OPT_TYPE_CONST, {.i64=3}, 0, 0, FLAGS, "envelope" },
NULL              157 libavfilter/vf_waveform.c         { "lowpass", NULL, 0, AV_OPT_TYPE_CONST, {.i64=LOWPASS}, 0, 0, FLAGS, "filter" },
NULL              158 libavfilter/vf_waveform.c         { "flat"   , NULL, 0, AV_OPT_TYPE_CONST, {.i64=FLAT},    0, 0, FLAGS, "filter" },
NULL              159 libavfilter/vf_waveform.c         { "aflat"  , NULL, 0, AV_OPT_TYPE_CONST, {.i64=AFLAT},   0, 0, FLAGS, "filter" },
NULL              160 libavfilter/vf_waveform.c         { "chroma",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=CHROMA},  0, 0, FLAGS, "filter" },
NULL              161 libavfilter/vf_waveform.c         { "color",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=COLOR},   0, 0, FLAGS, "filter" },
NULL              162 libavfilter/vf_waveform.c         { "acolor",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=ACOLOR},  0, 0, FLAGS, "filter" },
NULL              163 libavfilter/vf_waveform.c         { "xflat",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=XFLAT},   0, 0, FLAGS, "filter" },
NULL              164 libavfilter/vf_waveform.c         { "yflat",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=YFLAT},   0, 0, FLAGS, "filter" },
NULL              167 libavfilter/vf_waveform.c         { "none",   NULL, 0, AV_OPT_TYPE_CONST, {.i64=GRAT_NONE},   0, 0, FLAGS, "graticule" },
NULL              168 libavfilter/vf_waveform.c         { "green",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=GRAT_GREEN},  0, 0, FLAGS, "graticule" },
NULL              169 libavfilter/vf_waveform.c         { "orange", NULL, 0, AV_OPT_TYPE_CONST, {.i64=GRAT_ORANGE}, 0, 0, FLAGS, "graticule" },
NULL              170 libavfilter/vf_waveform.c         { "invert", NULL, 0, AV_OPT_TYPE_CONST, {.i64=GRAT_INVERT}, 0, 0, FLAGS, "graticule" },
NULL              179 libavfilter/vf_waveform.c         { "digital",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=DIGITAL},    0, 0, FLAGS, "scale" },
NULL              180 libavfilter/vf_waveform.c         { "millivolts", NULL, 0, AV_OPT_TYPE_CONST, {.i64=MILLIVOLTS}, 0, 0, FLAGS, "scale" },
NULL              181 libavfilter/vf_waveform.c         { "ire",        NULL, 0, AV_OPT_TYPE_CONST, {.i64=IRE},        0, 0, FLAGS, "scale" },
NULL              188 libavfilter/vf_waveform.c     { NULL }
NULL             3427 libavfilter/vf_waveform.c             ctx->internal->execute(ctx, s->waveform_slice, &td, NULL, ff_filter_get_nb_threads(ctx));
NULL             3488 libavfilter/vf_waveform.c     { NULL }
NULL             3497 libavfilter/vf_waveform.c     { NULL }
NULL               47 libavfilter/vf_weave.c     { NULL }
NULL               54 libavfilter/vf_weave.c     AVFilterFormats *formats = NULL;
NULL              162 libavfilter/vf_weave.c     { NULL }
NULL              171 libavfilter/vf_weave.c     { NULL }
NULL               62 libavfilter/vf_xbr.c     { NULL }
NULL              374 libavfilter/vf_xbr.c     ctx->internal->execute(ctx, s->func, &td, NULL, FFMIN(inlink->h, ff_filter_get_nb_threads(ctx)));
NULL              416 libavfilter/vf_xbr.c     { NULL }
NULL              425 libavfilter/vf_xbr.c     { NULL }
NULL              101 libavfilter/vf_xfade.c static const char *const var_names[] = {   "X",   "Y",   "W",   "H",   "A",   "B",   "PLANE",          "P",        NULL };
NULL              187 libavfilter/vf_xfade.c     { "expr",   "set expression for custom transition", OFFSET(custom_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
NULL              188 libavfilter/vf_xfade.c     { NULL }
NULL             1434 libavfilter/vf_xfade.c             NULL
NULL             1439 libavfilter/vf_xfade.c             NULL };
NULL             1445 libavfilter/vf_xfade.c                             NULL, NULL, func2_names, func2, 0, ctx);
NULL             1479 libavfilter/vf_xfade.c     ctx->internal->execute(ctx, xfade_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL             1490 libavfilter/vf_xfade.c     AVFrame *in = NULL;
NULL             1522 libavfilter/vf_xfade.c                 s->xf[0] = NULL;
NULL             1583 libavfilter/vf_xfade.c     { NULL }
NULL             1592 libavfilter/vf_xfade.c     { NULL }
NULL              192 libavfilter/vf_xfade_opencl.c         cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
NULL              193 libavfilter/vf_xfade_opencl.c                                      global_work, NULL, 0, NULL, NULL);
NULL              263 libavfilter/vf_xfade_opencl.c     AVFrame *in = NULL;
NULL              295 libavfilter/vf_xfade_opencl.c                 ctx->xf[0] = NULL;
NULL              393 libavfilter/vf_xfade_opencl.c     { "source", "set OpenCL program source file for custom transition", OFFSET(source_file), AV_OPT_TYPE_STRING, {.str = NULL}, .flags = FLAGS },
NULL              394 libavfilter/vf_xfade_opencl.c     { "kernel", "set kernel name in program file for custom transition", OFFSET(kernel_name), AV_OPT_TYPE_STRING, {.str = NULL}, .flags = FLAGS },
NULL              397 libavfilter/vf_xfade_opencl.c     { NULL }
NULL              415 libavfilter/vf_xfade_opencl.c     { NULL }
NULL              424 libavfilter/vf_xfade_opencl.c     { NULL }
NULL              254 libavfilter/vf_xmedian.c     ctx->internal->execute(ctx, s->median_frames, &td, NULL, FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
NULL              354 libavfilter/vf_xmedian.c     { NULL },
NULL              363 libavfilter/vf_xmedian.c     { NULL }
NULL              418 libavfilter/vf_xmedian.c     ctx->internal->execute(ctx, s->median_frames, &td, NULL, FFMIN(s->height[0], ff_filter_get_nb_threads(ctx)));
NULL              427 libavfilter/vf_xmedian.c     { NULL },
NULL              436 libavfilter/vf_xmedian.c     { NULL }
NULL              445 libavfilter/vf_xmedian.c     { NULL }
NULL              250 libavfilter/vf_yadif.c         ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(h, ff_filter_get_nb_threads(ctx)));
NULL              341 libavfilter/vf_yadif.c     { NULL }
NULL              351 libavfilter/vf_yadif.c     { NULL }
NULL               91 libavfilter/vf_yadif_cuda.c     ret = CHECK_CU(cu->cuTexObjectCreate(&tex_prev, &res_desc, &tex_desc, NULL));
NULL               96 libavfilter/vf_yadif_cuda.c     ret = CHECK_CU(cu->cuTexObjectCreate(&tex_cur, &res_desc, &tex_desc, NULL));
NULL              101 libavfilter/vf_yadif_cuda.c     ret = CHECK_CU(cu->cuTexObjectCreate(&tex_next, &res_desc, &tex_desc, NULL));
NULL              108 libavfilter/vf_yadif_cuda.c                                       0, s->stream, args, NULL));
NULL              206 libavfilter/vf_yadif_cuda.c     s->hwctx = NULL;
NULL              208 libavfilter/vf_yadif_cuda.c     s->input_frames = NULL;
NULL              363 libavfilter/vf_yadif_cuda.c     { NULL }
NULL              373 libavfilter/vf_yadif_cuda.c     { NULL }
NULL              256 libavfilter/vf_yaepblur.c         ctx->internal->execute(ctx, s->pre_calculate_row, &td, NULL, FFMIN(td.height, nb_threads));
NULL              257 libavfilter/vf_yaepblur.c         ctx->internal->execute(ctx, pre_calculate_col, &td, NULL, FFMIN(td.width,  nb_threads));
NULL              261 libavfilter/vf_yaepblur.c         ctx->internal->execute(ctx, s->filter_slice, &td, NULL, FFMIN(td.height, nb_threads));
NULL              312 libavfilter/vf_yaepblur.c     { NULL }
NULL              320 libavfilter/vf_yaepblur.c     { NULL }
NULL              333 libavfilter/vf_yaepblur.c     { NULL }
NULL               52 libavfilter/vf_zoompan.c     NULL
NULL              112 libavfilter/vf_zoompan.c     { NULL }
NULL              138 libavfilter/vf_zoompan.c     ret = av_expr_parse(&s->zoom_expr, s->zoom_expr_str, var_names, NULL, NULL, NULL, NULL, 0, ctx);
NULL              142 libavfilter/vf_zoompan.c     ret = av_expr_parse(&s->x_expr, s->x_expr_str, var_names, NULL, NULL, NULL, NULL, 0, ctx);
NULL              146 libavfilter/vf_zoompan.c     ret = av_expr_parse(&s->y_expr, s->y_expr_str, var_names, NULL, NULL, NULL, NULL, 0, ctx);
NULL              172 libavfilter/vf_zoompan.c     *zoom = av_expr_eval(s->zoom_expr, var_values, NULL);
NULL              179 libavfilter/vf_zoompan.c     *dx = av_expr_eval(s->x_expr, var_values, NULL);
NULL              185 libavfilter/vf_zoompan.c     *dy = av_expr_eval(s->y_expr, var_values, NULL);
NULL              220 libavfilter/vf_zoompan.c     if ((ret = sws_init_context(s->sws, NULL, NULL)) < 0)
NULL              230 libavfilter/vf_zoompan.c     s->sws = NULL;
NULL              249 libavfilter/vf_zoompan.c     s->sws = NULL;
NULL              299 libavfilter/vf_zoompan.c                                           NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
NULL              350 libavfilter/vf_zoompan.c     s->sws = NULL;
NULL              362 libavfilter/vf_zoompan.c     { NULL }
NULL              371 libavfilter/vf_zoompan.c     { NULL }
NULL               61 libavfilter/vf_zscale.c     NULL
NULL              225 libavfilter/vf_zscale.c                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
NULL              229 libavfilter/vf_zscale.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              235 libavfilter/vf_zscale.c                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
NULL              489 libavfilter/vf_zscale.c         return print_zimg_error(NULL);
NULL              493 libavfilter/vf_zscale.c         return print_zimg_error(NULL);
NULL              509 libavfilter/vf_zscale.c     AVFrame *aligned = NULL;
NULL              555 libavfilter/vf_zscale.c     AVFrame *out = NULL;
NULL              787 libavfilter/vf_zscale.c     { "size",   "set video size",      OFFSET(size_str),  AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              788 libavfilter/vf_zscale.c     { "s",      "set video size",      OFFSET(size_str),  AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL              900 libavfilter/vf_zscale.c     { NULL }
NULL              911 libavfilter/vf_zscale.c     { NULL }
NULL              920 libavfilter/vf_zscale.c     { NULL }
NULL               46 libavfilter/video.c     AVFrame *frame = NULL;
NULL               58 libavfilter/video.c             return NULL;
NULL               71 libavfilter/video.c             return NULL;
NULL               76 libavfilter/video.c             return NULL;
NULL               86 libavfilter/video.c                 return NULL;
NULL               92 libavfilter/video.c         return NULL;
NULL              101 libavfilter/video.c     AVFrame *ret = NULL;
NULL              103 libavfilter/video.c     FF_TPRINTF_START(NULL, get_video_buffer); ff_tlog_link(NULL, link, 0);
NULL               35 libavfilter/vsink_nullsink.c     { NULL },
NULL               43 libavfilter/vsink_nullsink.c     .outputs     = NULL,
NULL               64 libavfilter/vsrc_cellauto.c     { "filename", "read initial pattern from file", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               65 libavfilter/vsrc_cellauto.c     { "f",        "read initial pattern from file", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               66 libavfilter/vsrc_cellauto.c     { "pattern",  "set initial pattern", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               67 libavfilter/vsrc_cellauto.c     { "p",        "set initial pattern", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               70 libavfilter/vsrc_cellauto.c     { "size",     "set video size", OFFSET(w),    AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
NULL               71 libavfilter/vsrc_cellauto.c     { "s",        "set video size", OFFSET(w),    AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
NULL               81 libavfilter/vsrc_cellauto.c     { NULL }
NULL              327 libavfilter/vsrc_cellauto.c     { NULL }
NULL              338 libavfilter/vsrc_cellauto.c     .inputs        = NULL,
NULL               75 libavfilter/vsrc_gradients.c     {NULL},
NULL              266 libavfilter/vsrc_gradients.c     ctx->internal->execute(ctx, s->draw_slice, frame, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              278 libavfilter/vsrc_gradients.c     { NULL }
NULL              287 libavfilter/vsrc_gradients.c     .inputs        = NULL,
NULL               81 libavfilter/vsrc_life.c     { "filename", "set source file",  OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               82 libavfilter/vsrc_life.c     { "f",        "set source file",  OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
NULL               83 libavfilter/vsrc_life.c     { "size",     "set video size",   OFFSET(w),        AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
NULL               84 libavfilter/vsrc_life.c     { "s",        "set video size",   OFFSET(w),        AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
NULL               97 libavfilter/vsrc_life.c     { NULL }
NULL              441 libavfilter/vsrc_life.c     { NULL}
NULL              452 libavfilter/vsrc_life.c     .inputs        = NULL,
NULL              117 libavfilter/vsrc_mandelbrot.c     {NULL},
NULL              255 libavfilter/vsrc_mandelbrot.c     fill_from_cache(ctx, NULL, &in_cidx, NULL, s->start_y+scale*(-s->h/2-0.5), scale);
NULL              261 libavfilter/vsrc_mandelbrot.c         fill_from_cache(ctx, NULL, &in_cidx, &next_cidx, ci, scale);
NULL              264 libavfilter/vsrc_mandelbrot.c             fill_from_cache(ctx, color+linesize*y1, &tmp_cidx, NULL, ci + 3*scale/2, scale);
NULL              390 libavfilter/vsrc_mandelbrot.c         fill_from_cache(ctx, NULL, &in_cidx, &next_cidx, ci + scale/2, scale);
NULL              419 libavfilter/vsrc_mandelbrot.c     { NULL }
NULL              430 libavfilter/vsrc_mandelbrot.c     .inputs        = NULL,
NULL               87 libavfilter/vsrc_mptestsrc.c     { NULL }
NULL              357 libavfilter/vsrc_mptestsrc.c     { NULL }
NULL              367 libavfilter/vsrc_mptestsrc.c     .inputs        = NULL,
NULL               69 libavfilter/vsrc_sierpinski.c     {NULL},
NULL              197 libavfilter/vsrc_sierpinski.c     ctx->internal->execute(ctx, s->draw_slice, frame, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
NULL              223 libavfilter/vsrc_sierpinski.c     { NULL }
NULL              232 libavfilter/vsrc_sierpinski.c     .inputs        = NULL,
NULL              103 libavfilter/vsrc_testsrc.c     { NULL }
NULL              188 libavfilter/vsrc_testsrc.c     { NULL }
NULL              256 libavfilter/vsrc_testsrc.c     {  NULL }
NULL              267 libavfilter/vsrc_testsrc.c     .inputs          = NULL,
NULL              279 libavfilter/vsrc_testsrc.c     { NULL }
NULL              390 libavfilter/vsrc_testsrc.c     {  NULL }
NULL              401 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL              428 libavfilter/vsrc_testsrc.c     { NULL },
NULL              438 libavfilter/vsrc_testsrc.c     .inputs      = NULL,
NULL              450 libavfilter/vsrc_testsrc.c     { NULL }
NULL              664 libavfilter/vsrc_testsrc.c     { NULL }
NULL              675 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL              686 libavfilter/vsrc_testsrc.c     { NULL }
NULL              937 libavfilter/vsrc_testsrc.c     { NULL }
NULL              948 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1056 libavfilter/vsrc_testsrc.c     { NULL }
NULL             1067 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1232 libavfilter/vsrc_testsrc.c     { NULL }
NULL             1243 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1375 libavfilter/vsrc_testsrc.c     { NULL }
NULL             1420 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1466 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1533 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1638 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1649 libavfilter/vsrc_testsrc.c     { NULL }
NULL             1709 libavfilter/vsrc_testsrc.c     { NULL }
NULL             1720 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL             1730 libavfilter/vsrc_testsrc.c     { NULL }
NULL             1790 libavfilter/vsrc_testsrc.c     { NULL }
NULL             1801 libavfilter/vsrc_testsrc.c     .inputs        = NULL,
NULL               30 libavfilter/vulkan.c         return NULL;                                                           \
NULL               35 libavfilter/vulkan.c         return NULL;                                                           \
NULL              160 libavfilter/vulkan.c         .pNext       = NULL,
NULL              172 libavfilter/vulkan.c         .pNext = NULL,
NULL              182 libavfilter/vulkan.c     ret = vkCreateBuffer(s->hwctx->act_dev, &buf_spawn, NULL, &buf->buf);
NULL              220 libavfilter/vulkan.c     VkMappedMemoryRange *inval_list = NULL;
NULL              270 libavfilter/vulkan.c     VkMappedMemoryRange *flush_list = NULL;
NULL              792 libavfilter/vulkan.c         return NULL;
NULL              799 libavfilter/vulkan.c         return NULL;
NULL              845 libavfilter/vulkan.c         .pNext      = NULL,
NULL              893 libavfilter/vulkan.c         return NULL;
NULL              939 libavfilter/vulkan.c     av_bprint_finalize(&buf, NULL);
NULL              975 libavfilter/vulkan.c     shader_create.pNext    = NULL;
NULL              980 libavfilter/vulkan.c     ret = vkCreateShaderModule(s->hwctx->act_dev, &shader_create, NULL,
NULL             1012 libavfilter/vulkan.c     [VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER]         = { sizeof(VkDescriptorBufferInfo),  NULL,           1, 0, 0, 1, },
NULL             1014 libavfilter/vulkan.c     [VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC] = { sizeof(VkDescriptorBufferInfo),  NULL,           1, 0, 0, 1, },
NULL             1373 libavfilter/vulkan.c         av_bprint_finalize(&shd->src, NULL);
NULL               36 libavfilter/x86/avf_showcqt_init.c #define permute_coeffs_0 NULL
NULL               59 libavfilter/x86/scene_sad_init.c     return NULL;
NULL              214 libavfilter/yadif_common.c     { NULL }
NULL               60 libavformat/3dostr.c             st = avformat_new_stream(s, NULL);
NULL              106 libavformat/4xm.c     st = avformat_new_stream(s, NULL);
NULL              178 libavformat/4xm.c     st = avformat_new_stream(s, NULL);
NULL              215 libavformat/4xm.c     unsigned char *header = NULL;
NULL              219 libavformat/4xm.c     fourxm->tracks      = NULL;
NULL              109 libavformat/aacdec.c     st = avformat_new_stream(s, NULL);
NULL              119 libavformat/aacdec.c         !av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX)) {
NULL              137 libavformat/aacdec.c     AVDictionary *metadata = NULL;
NULL              139 libavformat/aacdec.c     ID3v2ExtraMeta *id3v2_extra_meta = NULL;
NULL              147 libavformat/aacdec.c     ffio_init_context(&ioctx, pkt->data, pkt->size, 0, NULL, NULL, NULL, NULL);
NULL              164 libavformat/aadec.c         av_tea_crypt(c->tea_ctx, dst, src, 1, NULL, 0); // TEA ECB encrypt
NULL              176 libavformat/aadec.c     st = avformat_new_stream(s, NULL);
NULL              230 libavformat/aadec.c             chapter_pos * TIMEPREC, (chapter_pos + chapter_size) * TIMEPREC, NULL))
NULL              287 libavformat/aadec.c         av_tea_crypt(c->tea_ctx, dst, src, 1, NULL, 1);
NULL              394 libavformat/aadec.c     { NULL },
NULL               40 libavformat/acm.c     st = avformat_new_stream(s, NULL);
NULL               72 libavformat/act.c     st = avformat_new_stream(s, NULL);
NULL               52 libavformat/adp.c     st = avformat_new_stream(s, NULL);
NULL               40 libavformat/ads.c     st = avformat_new_stream(s, NULL);
NULL              130 libavformat/adtsenc.c         av_log(NULL, AV_LOG_ERROR, "ADTS frame size too large: %u (max %d)\n",
NULL              217 libavformat/adtsenc.c     { NULL },
NULL               85 libavformat/adxdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               64 libavformat/aea.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               36 libavformat/afc.c     st = avformat_new_stream(s, NULL);
NULL              215 libavformat/aiffdec.c     ID3v2ExtraMeta *id3v2_extra_meta = NULL;
NULL              231 libavformat/aiffdec.c     st = avformat_new_stream(s, NULL);
NULL               87 libavformat/aiffenc.c     if (tag = av_dict_get(s->metadata, key, NULL, 0)) {
NULL              285 libavformat/aiffenc.c     { NULL },
NULL               60 libavformat/aixdec.c         AVStream *st = avformat_new_stream(s, NULL);
NULL              513 libavformat/allformats.c static const AVInputFormat * const *indev_list = NULL;
NULL              514 libavformat/allformats.c static const AVOutputFormat * const *outdev_list = NULL;
NULL              520 libavformat/allformats.c     const AVOutputFormat *f = NULL;
NULL              537 libavformat/allformats.c     const AVInputFormat *f = NULL;
NULL              558 libavformat/allformats.c     AVOutputFormat *prevout = NULL, *out;
NULL              559 libavformat/allformats.c     AVInputFormat *previn = NULL, *in;
NULL              605 libavformat/allformats.c         void *opaque = NULL;
NULL              621 libavformat/allformats.c         void *opaque = NULL;
NULL               97 libavformat/alp.c     if (!(st = avformat_new_stream(s, NULL)))
NULL               55 libavformat/amr.c     s->priv_data = NULL;
NULL               90 libavformat/amr.c     st = avformat_new_stream(s, NULL);
NULL              205 libavformat/amr.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              261 libavformat/amr.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              100 libavformat/anm.c     st = avformat_new_stream(s, NULL);
NULL               46 libavformat/apc.c     st = avformat_new_stream(s, NULL);
NULL              349 libavformat/ape.c     st = avformat_new_stream(s, NULL);
NULL               66 libavformat/apetag.c         AVStream *st = avformat_new_stream(s, NULL);
NULL              187 libavformat/apetag.c     AVDictionaryEntry *e = NULL;
NULL               96 libavformat/apm.c     if (!(st = avformat_new_stream(s, NULL)))
NULL               96 libavformat/apngdec.c             if (av_image_check_size(bytestream2_get_be32(&gb), bytestream2_get_be32(&gb), 0, NULL))
NULL              166 libavformat/apngdec.c     st = avformat_new_stream(s, NULL);
NULL              421 libavformat/apngdec.c     { NULL },
NULL               58 libavformat/apngenc.c     return NULL;
NULL              121 libavformat/apngenc.c     uint8_t *side_data = NULL;
NULL              253 libavformat/apngenc.c         ret = flush_packet(format_context, NULL);
NULL              258 libavformat/apngenc.c     apng_write_chunk(io_context, MKBETAG('I', 'E', 'N', 'D'), NULL, 0);
NULL              287 libavformat/apngenc.c     { NULL },
NULL               40 libavformat/aptxdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               42 libavformat/aptxdec.c         return NULL;
NULL               87 libavformat/aptxdec.c     { NULL },
NULL               53 libavformat/aqtitledec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               56 libavformat/aqtitledec.c     AVPacket *sub = NULL;
NULL               78 libavformat/aqtitledec.c                 sub = NULL;
NULL              130 libavformat/aqtitledec.c     { NULL }
NULL              124 libavformat/argo_asf.c     if (!(st = avformat_new_stream(s, NULL)))
NULL              172 libavformat/asfcrypt.c     av_rc4_crypt(rc4, (uint8_t *)rc4buff, NULL, sizeof(rc4buff), NULL, 1);
NULL              178 libavformat/asfcrypt.c     av_des_crypt(des, (uint8_t *)&packetkey, (uint8_t *)&packetkey, 1, NULL, 1);
NULL              182 libavformat/asfcrypt.c     av_rc4_crypt(rc4, data, data, len, NULL, 1);
NULL              123 libavformat/asfdec_f.c     { NULL },
NULL              148 libavformat/asfdec_f.c         av_log(NULL, AV_LOG_TRACE, "(GUID: %s) ", # cmp)
NULL              179 libavformat/asfdec_f.c         av_log(NULL, AV_LOG_TRACE, "(GUID: unknown) ");
NULL              181 libavformat/asfdec_f.c         av_log(NULL, AV_LOG_TRACE, " 0x%02x,", (*g)[i]);
NULL              182 libavformat/asfdec_f.c     av_log(NULL, AV_LOG_TRACE, "}\n");
NULL              224 libavformat/asfdec_f.c     uint8_t  *desc = NULL;
NULL              225 libavformat/asfdec_f.c     AVStream   *st = NULL;
NULL              278 libavformat/asfdec_f.c     st  = avformat_new_stream(s, NULL);
NULL              307 libavformat/asfdec_f.c     ID3v2ExtraMeta *id3v2_extra_meta = NULL;
NULL              320 libavformat/asfdec_f.c     char *value = NULL;
NULL              418 libavformat/asfdec_f.c     st = avformat_new_stream(s, NULL);
NULL              939 libavformat/asfdec_f.c     ff_metadata_conv(&s->metadata, NULL, ff_asf_metadata_conv);
NULL             1442 libavformat/asfdec_f.c             asf_st->pkt.side_data       = NULL;
NULL             1499 libavformat/asfdec_f.c     asf->asf_st = NULL;
NULL              365 libavformat/asfdec_o.c     uint8_t  *desc = NULL;
NULL              366 libavformat/asfdec_o.c     AVStream   *st = NULL;
NULL              420 libavformat/asfdec_o.c     st  = avformat_new_stream(s, NULL);
NULL              460 libavformat/asfdec_o.c     ID3v2ExtraMeta *id3v2_extra_meta = NULL;
NULL              512 libavformat/asfdec_o.c         uint8_t *name = NULL;
NULL              541 libavformat/asfdec_o.c     AVStream *st = NULL;
NULL              585 libavformat/asfdec_o.c         uint8_t *name = NULL;
NULL              776 libavformat/asfdec_o.c     st = avformat_new_stream(s, NULL);
NULL              848 libavformat/asfdec_o.c     AVStream *st    = NULL;
NULL              978 libavformat/asfdec_o.c     AVStream *st    = NULL;
NULL             1282 libavformat/asfdec_o.c     ASFPacket *asf_pkt = NULL;
NULL             1671 libavformat/asfdec_o.c     return NULL;
NULL             1678 libavformat/asfdec_o.c     const GUIDParseTable *g = NULL;
NULL             1708 libavformat/asfdec_o.c     const GUIDParseTable *g = NULL;
NULL             1768 libavformat/asfdec_o.c         AVStream *st = NULL;
NULL              356 libavformat/asfenc.c         AVDictionaryEntry *t = av_dict_get(c->metadata, "title", NULL, 0);
NULL              400 libavformat/asfenc.c     ff_metadata_conv(&s->metadata, ff_asf_metadata_conv, NULL);
NULL              402 libavformat/asfenc.c     tags[0] = av_dict_get(s->metadata, "title", NULL, 0);
NULL              403 libavformat/asfenc.c     tags[1] = av_dict_get(s->metadata, "author", NULL, 0);
NULL              404 libavformat/asfenc.c     tags[2] = av_dict_get(s->metadata, "copyright", NULL, 0);
NULL              405 libavformat/asfenc.c     tags[3] = av_dict_get(s->metadata, "comment", NULL, 0);
NULL              406 libavformat/asfenc.c     tags[4] = av_dict_get(s->metadata, "rating", NULL, 0);
NULL              413 libavformat/asfenc.c             av_dict_set(&s->metadata, "creation_time", NULL, 0);
NULL              431 libavformat/asfenc.c         entry = av_dict_get(s->streams[n]->metadata, "language", NULL, 0);
NULL              601 libavformat/asfenc.c         AVDictionaryEntry *tag = NULL;
NULL              712 libavformat/asfenc.c             desc = codec_desc ? codec_desc->name : NULL;
NULL              808 libavformat/asfenc.c                       NULL, NULL, NULL, NULL);
NULL              902 libavformat/asfenc.c                       NULL, NULL, NULL, NULL);
NULL             1150 libavformat/asfenc.c     { NULL },
NULL              120 libavformat/assdec.c     st = avformat_new_stream(s, NULL);
NULL              165 libavformat/assdec.c     av_bprint_finalize(&header, NULL);
NULL              166 libavformat/assdec.c     av_bprint_finalize(&line,   NULL);
NULL              167 libavformat/assdec.c     av_bprint_finalize(&rline,  NULL);
NULL              103 libavformat/assenc.c             next->prev = NULL;
NULL              116 libavformat/assenc.c     DialogueLine *cur, *next = NULL, *prev = NULL;
NULL              219 libavformat/assenc.c     { NULL },
NULL               46 libavformat/astdec.c     st = avformat_new_stream(s, NULL);
NULL              189 libavformat/astenc.c   { NULL },
NULL              237 libavformat/async.c     return NULL;
NULL              263 libavformat/async.c     ret = pthread_mutex_init(&c->mutex, NULL);
NULL              269 libavformat/async.c     ret = pthread_cond_init(&c->cond_wakeup_main, NULL);
NULL              275 libavformat/async.c     ret = pthread_cond_init(&c->cond_wakeup_background, NULL);
NULL              281 libavformat/async.c     ret = pthread_create(&c->async_buffer_thread, NULL, async_buffer_task, h);
NULL              313 libavformat/async.c     ret = pthread_join(c->async_buffer_thread, NULL);
NULL              375 libavformat/async.c     return async_read_internal(h, buf, size, 0, NULL);
NULL              421 libavformat/async.c             async_read_internal(h, NULL, pos_delta, 1, fifo_do_not_copy_func);
NULL              469 libavformat/async.c     {NULL},
NULL              571 libavformat/async.c     {NULL},
NULL              596 libavformat/async.c     URLContext   *h = NULL;
NULL              603 libavformat/async.c     AVDictionary *opts = NULL;
NULL              611 libavformat/async.c     ret = ffurl_open(&h, "async:async-test:", AVIO_FLAG_READ, NULL, NULL);
NULL              687 libavformat/async.c     ret = ffurl_open(&h, "async:async-test:", AVIO_FLAG_READ, NULL, &opts);
NULL               77 libavformat/au.c         NULL };
NULL               82 libavformat/au.c     char * key = NULL;
NULL               83 libavformat/au.c     char * value = NULL;
NULL              108 libavformat/au.c                     for (i = 0; keys[i] != NULL && key != NULL; i++) {
NULL              112 libavformat/au.c                             value = NULL;
NULL              130 libavformat/au.c     av_bprint_finalize(&bprint, NULL);
NULL              199 libavformat/au.c     st = avformat_new_stream(s, NULL);
NULL              247 libavformat/au.c         NULL };
NULL              251 libavformat/au.c     AVDictionaryEntry *t = NULL;
NULL              256 libavformat/au.c     for (i = 0; keys[i] != NULL; i++) {
NULL              257 libavformat/au.c         t = av_dict_get(m, keys[i], NULL, 0);
NULL              258 libavformat/au.c         if (t != NULL) {
NULL              277 libavformat/au.c     char *annotations = NULL;
NULL              296 libavformat/au.c         if (annotations != NULL) {
NULL              308 libavformat/au.c     if (annotations != NULL) {
NULL               83 libavformat/av1.c     return av1_filter_obus(pb, buf, size, NULL);
NULL               93 libavformat/av1.c     len = ret = av1_filter_obus(NULL, in, *size, &off);
NULL              109 libavformat/av1.c     ffio_init_context(&pb, buf, len, 1, NULL, NULL, NULL, NULL);
NULL              111 libavformat/av1.c     ret = av1_filter_obus(&pb, in, *size, NULL);
NULL              366 libavformat/av1.c     AVIOContext *seq_pb = NULL, *meta_pb = NULL;
NULL               82 libavformat/av1dec.c                       NULL, NULL, NULL, NULL);
NULL              160 libavformat/av1dec.c     st = avformat_new_stream(s, NULL);
NULL              258 libavformat/av1dec.c     { NULL },
NULL              110 libavformat/avc.c     AVIOContext *sps_pb = NULL, *pps_pb = NULL, *sps_ext_pb = NULL;
NULL              227 libavformat/avc.c     *buf = NULL;
NULL              259 libavformat/avc.c         return NULL;
NULL              264 libavformat/avc.c         return NULL;
NULL              277 libavformat/avc.c         return NULL;
NULL               90 libavformat/avidec.c     { NULL },
NULL              354 libavformat/avidec.c                 const char *name = NULL;
NULL              476 libavformat/avidec.c     AVIStream *ast      = NULL;
NULL              572 libavformat/avidec.c                 st = avformat_new_stream(s, NULL);
NULL              606 libavformat/avidec.c                 st->priv_data = NULL;
NULL             1026 libavformat/avidec.c     dict_entry = av_dict_get(s->metadata, "ISFT", NULL, 0);
NULL             1055 libavformat/avidec.c     ff_metadata_conv_ctx(s, NULL, avi_metadata_conv);
NULL             1056 libavformat/avidec.c     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
NULL             1074 libavformat/avidec.c                                              0, NULL, NULL, NULL, NULL);
NULL             1111 libavformat/avidec.c         if (!avformat_open_input(&ast->sub_ctx, "", sub_demuxer, NULL)) {
NULL             1120 libavformat/avidec.c         pkt->buf = NULL;
NULL             1136 libavformat/avidec.c     AVStream *st, *sub_st = NULL;
NULL             1160 libavformat/avidec.c             ast->sub_pkt.data = NULL;
NULL             1336 libavformat/avidec.c     AVStream *best_st     = NULL;
NULL              265 libavformat/avienc.c     AVStream *video_st = NULL;
NULL              267 libavformat/avienc.c     AVDictionaryEntry *t = NULL;
NULL              291 libavformat/avienc.c     video_par = NULL;
NULL              482 libavformat/avienc.c             if ((t = av_dict_get(st->metadata, "title", NULL, 0))) {
NULL              484 libavformat/avienc.c                 t = NULL;
NULL              487 libavformat/avienc.c             && (t = av_dict_get(s->streams[i]->metadata, "language", NULL, 0))) {
NULL              489 libavformat/avienc.c                 t = NULL;
NULL              756 libavformat/avienc.c         empty_packet.data         = NULL;
NULL              897 libavformat/avienc.c         ret = avi_add_ientry(s, stream_index, NULL, flags, size);
NULL              996 libavformat/avienc.c     { NULL },
NULL               51 libavformat/avio.c     return NULL;
NULL               58 libavformat/avio.c     {"protocol_whitelist", "List of protocols that are allowed to be used", OFFSET(protocol_whitelist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, D },
NULL               59 libavformat/avio.c     {"protocol_blacklist", "List of protocols that are not allowed to be used", OFFSET(protocol_blacklist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, D },
NULL               61 libavformat/avio.c     { NULL }
NULL               86 libavformat/avio.c         av_log(NULL, AV_LOG_ERROR,
NULL               91 libavformat/avio.c         av_log(NULL, AV_LOG_ERROR,
NULL              156 libavformat/avio.c     *puc = NULL;
NULL              170 libavformat/avio.c     AVDictionary *tmp_opts = NULL;
NULL              177 libavformat/avio.c     av_assert0(!(e=av_dict_get(*options, "protocol_whitelist", NULL, 0)) ||
NULL              179 libavformat/avio.c     av_assert0(!(e=av_dict_get(*options, "protocol_blacklist", NULL, 0)) ||
NULL              213 libavformat/avio.c     av_dict_set(options, "protocol_whitelist", NULL, 0);
NULL              214 libavformat/avio.c     av_dict_set(options, "protocol_blacklist", NULL, 0);
NULL              271 libavformat/avio.c     protocols = ffurl_get_protocols(NULL, NULL);
NULL              273 libavformat/avio.c         return NULL;
NULL              287 libavformat/avio.c     if (av_strstart(filename, "https:", NULL) || av_strstart(filename, "tls:", NULL))
NULL              288 libavformat/avio.c         av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with "
NULL              291 libavformat/avio.c     return NULL;
NULL              297 libavformat/avio.c     const URLProtocol *p = NULL;
NULL              303 libavformat/avio.c     *puc = NULL;
NULL              312 libavformat/avio.c     AVDictionary *tmp_opts = NULL;
NULL              330 libavformat/avio.c                !(e=av_dict_get(*options, "protocol_whitelist", NULL, 0)) ||
NULL              333 libavformat/avio.c                !(e=av_dict_get(*options, "protocol_blacklist", NULL, 0)) ||
NULL              358 libavformat/avio.c                                 int_cb, options, NULL, NULL, NULL);
NULL              476 libavformat/avio.c     return p ? p->name : NULL;
NULL              482 libavformat/avio.c     int ret = ffurl_alloc(&h, url, flags, NULL);
NULL              489 libavformat/avio.c         ret = ffurl_connect(h, NULL);
NULL              501 libavformat/avio.c     int ret = ffurl_alloc(&h_src, url_src, AVIO_FLAG_READ_WRITE, NULL);
NULL              504 libavformat/avio.c     ret = ffurl_alloc(&h_dst, url_dst, AVIO_FLAG_WRITE, NULL);
NULL              523 libavformat/avio.c     int ret = ffurl_alloc(&h, url, AVIO_FLAG_WRITE, NULL);
NULL              538 libavformat/avio.c     URLContext *h = NULL;
NULL              539 libavformat/avio.c     AVIODirContext *ctx = NULL;
NULL              549 libavformat/avio.c     if ((ret = ffurl_alloc(&h, url, AVIO_FLAG_READ, NULL)) < 0)
NULL              569 libavformat/avio.c     *s = NULL;
NULL              598 libavformat/avio.c     *s = NULL;
NULL              595 libavformat/avio.h     avio_print_string_array(s, (const char*[]){__VA_ARGS__, NULL})
NULL               48 libavformat/aviobuf.c     return prev ? NULL : s->opaque;
NULL               53 libavformat/aviobuf.c     return prev ? NULL : &ffurl_context_class;
NULL               60 libavformat/aviobuf.c     {"protocol_whitelist", "List of protocols that are allowed to be used", OFFSET(protocol_whitelist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, D },
NULL               61 libavformat/aviobuf.c     { NULL },
NULL              106 libavformat/aviobuf.c     s->update_checksum = NULL;
NULL              113 libavformat/aviobuf.c     s->read_pause = NULL;
NULL              114 libavformat/aviobuf.c     s->read_seek  = NULL;
NULL              116 libavformat/aviobuf.c     s->write_data_type       = NULL;
NULL              120 libavformat/aviobuf.c     s->short_seek_get        = NULL;
NULL              137 libavformat/aviobuf.c         return NULL;
NULL              516 libavformat/aviobuf.c         av_log(NULL, AV_LOG_WARNING, "Invalid return value 0 for stream protocol\n");
NULL              600 libavformat/aviobuf.c     s->update_checksum = NULL;
NULL              920 libavformat/aviobuf.c     uint8_t *buffer = NULL;
NULL              974 libavformat/aviobuf.c         return NULL;
NULL              979 libavformat/aviobuf.c         return NULL;
NULL             1117 libavformat/aviobuf.c     return avio_open2(s, filename, flags, NULL, NULL);
NULL             1128 libavformat/aviobuf.c     *s = NULL;
NULL             1130 libavformat/aviobuf.c     err = ffurl_open_whitelist(&h, filename, flags, int_cb, options, whitelist, blacklist, NULL);
NULL             1144 libavformat/aviobuf.c     return ffio_open_whitelist(s, filename, flags, int_cb, options, NULL, NULL);
NULL             1156 libavformat/aviobuf.c     s->opaque = NULL;
NULL             1173 libavformat/aviobuf.c     *s = NULL;
NULL             1187 libavformat/aviobuf.c         av_bprint_finalize(&bp, NULL);
NULL             1192 libavformat/aviobuf.c     av_bprint_finalize(&bp, NULL);
NULL             1250 libavformat/aviobuf.c     URLContext *cc = NULL;
NULL             1345 libavformat/aviobuf.c     *s = avio_alloc_context(d->io_buffer, d->io_buffer_size, 1, d, NULL,
NULL             1347 libavformat/aviobuf.c                             max_packet_size ? NULL : dyn_buf_seek);
NULL             1373 libavformat/aviobuf.c         *pbuffer = NULL;
NULL             1395 libavformat/aviobuf.c     ffio_init_context(s, d->io_buffer, d->io_buffer_size, 1, d, NULL,
NULL             1409 libavformat/aviobuf.c         *pbuffer = NULL;
NULL              110 libavformat/avisynth.c static AviSynthContext *avs_ctx_list = NULL;
NULL              204 libavformat/avisynth.c         avs->clip = NULL;
NULL              208 libavformat/avisynth.c         avs->env = NULL;
NULL              525 libavformat/avisynth.c         st = avformat_new_stream(s, NULL);
NULL              533 libavformat/avisynth.c         st = avformat_new_stream(s, NULL);
NULL              560 libavformat/avisynth.c                         MAX_PATH * 4, NULL, NULL);
NULL              644 libavformat/avisynth.c     if (GetProcAddress(avs_library.library, "avs_is_planar_rgb") == NULL)
NULL              741 libavformat/avisynth.c         pkt->data = NULL;
NULL              739 libavformat/avlanguage.c     const LangEntry *entry = NULL;
NULL              743 libavformat/avlanguage.c         return NULL;
NULL              752 libavformat/avlanguage.c         return NULL;
NULL              764 libavformat/avlanguage.c     return NULL;
NULL               45 libavformat/avr.c     st = avformat_new_stream(s, NULL);
NULL               81 libavformat/avs.c     avs->st_video = avs->st_audio = NULL;
NULL              189 libavformat/avs.c                     avs->st_video = avformat_new_stream(s, NULL);
NULL              208 libavformat/avs.c                     avs->st_audio = avformat_new_stream(s, NULL);
NULL              100 libavformat/bethsoftvid.c     uint8_t * vidbuf_start = NULL;
NULL              110 libavformat/bethsoftvid.c         st = avformat_new_stream(s, NULL);
NULL              245 libavformat/bethsoftvid.c                 AVStream *st = avformat_new_stream(s, NULL);
NULL               60 libavformat/bfi.c     vstream = avformat_new_stream(s, NULL);
NULL               65 libavformat/bfi.c     astream = avformat_new_stream(s, NULL);
NULL              100 libavformat/bink.c     vst = avformat_new_stream(s, NULL);
NULL              178 libavformat/bink.c             ast = avformat_new_stream(s, NULL);
NULL               54 libavformat/bintext.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               56 libavformat/bintext.c         return NULL;
NULL              254 libavformat/bintext.c         ff_sauce_read(s, &bin->fsize, NULL, 0);
NULL              379 libavformat/bintext.c     { "video_size", "set video size, such as 640x480 or hd720.", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
NULL              381 libavformat/bintext.c     { NULL },
NULL               58 libavformat/bit.c     st=avformat_new_stream(s, NULL);
NULL               50 libavformat/bluray.c {NULL}
NULL              122 libavformat/bluray.c     bd->bd = bd_open(diskname, NULL);
NULL               46 libavformat/boadec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               99 libavformat/brstm.c     st = avformat_new_stream(s, NULL);
NULL               82 libavformat/c93.c     video = avformat_new_stream(s, NULL);
NULL              120 libavformat/c93.c                 c93->audio = avformat_new_stream(s, NULL);
NULL              104 libavformat/cache.c     CacheEntry *entry = NULL, *next[2] = {NULL, NULL};
NULL              106 libavformat/cache.c     struct AVTreeNode *node = NULL;
NULL              165 libavformat/cache.c     CacheEntry *entry, *next[2] = {NULL, NULL};
NULL              314 libavformat/cache.c     av_tree_enumerate(c->root, NULL, NULL, enu_free);
NULL              325 libavformat/cache.c     {NULL},
NULL               67 libavformat/cafdec.c     st = avformat_new_stream(s, NULL);
NULL              110 libavformat/cafenc.c     AVDictionaryEntry *t = NULL;
NULL              194 libavformat/cafenc.c         t = NULL;
NULL              218 libavformat/cafenc.c             caf->pkt_sizes = NULL;
NULL               69 libavformat/cavsvideodec.c FF_DEF_RAWVIDEO_DEMUXER(cavsvideo, "raw Chinese AVS (Audio Video Standard)", cavsvideo_probe, NULL, AV_CODEC_ID_CAVS)
NULL               38 libavformat/cdg.c     vst = avformat_new_stream(s, NULL);
NULL              150 libavformat/cdxl.c             AVStream *st = avformat_new_stream(s, NULL);
NULL              179 libavformat/cdxl.c             AVStream *st = avformat_new_stream(s, NULL);
NULL              228 libavformat/cdxl.c     { "framerate",   "", OFFSET(framerate),   AV_OPT_TYPE_STRING, { .str = NULL },  0, 0,       AV_OPT_FLAG_DECODING_PARAM },
NULL              229 libavformat/cdxl.c     { NULL },
NULL              124 libavformat/chromaprint.c     void *fp = NULL;
NULL              125 libavformat/chromaprint.c     char *enc_fp = NULL;
NULL              172 libavformat/chromaprint.c     { NULL },
NULL              101 libavformat/cinedec.c     st = avformat_new_stream(avctx, NULL);
NULL               91 libavformat/codec2.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              187 libavformat/codec2.c     st = avformat_new_stream(s, NULL);
NULL              210 libavformat/codec2.c     { NULL },
NULL              216 libavformat/codec2.c     { NULL },
NULL               61 libavformat/concat.c     char *node_uri = NULL;
NULL               83 libavformat/concat.c     if (!(nodes = av_realloc(NULL, sizeof(*nodes) * len)))
NULL              101 libavformat/concat.c                                    &h->interrupt_callback, NULL, h->protocol_whitelist, h->protocol_blacklist, h);
NULL              114 libavformat/concatdec.c     char *url = NULL;
NULL              129 libavformat/concatdec.c         filename = NULL;
NULL              246 libavformat/concatdec.c             if (!(st = avformat_new_stream(avf, NULL)))
NULL              347 libavformat/concatdec.c     if ((ret = avformat_open_input(&cat->avf, file->url, NULL, NULL)) < 0 ||
NULL              348 libavformat/concatdec.c         (ret = avformat_find_stream_info(cat->avf, NULL)) < 0) {
NULL              403 libavformat/concatdec.c     ConcatFile *file = NULL;
NULL              461 libavformat/concatdec.c             if (!avformat_new_stream(avf, NULL))
NULL              470 libavformat/concatdec.c                 strtol(get_keyword(&cursor), NULL, 0);
NULL              513 libavformat/concatdec.c     av_bprint_finalize(&bp, NULL);
NULL              517 libavformat/concatdec.c     av_bprint_finalize(&bp, NULL);
NULL              722 libavformat/concatdec.c             cat->avf = NULL;
NULL              740 libavformat/concatdec.c     cat->avf = NULL;
NULL              767 libavformat/concatdec.c     { NULL }
NULL               73 libavformat/crypto.c     { NULL }
NULL               85 libavformat/dash.c                     av_log(NULL, AV_LOG_WARNING, "Failed to parse format-tag beginning with %s. Expected either a "
NULL              168 libavformat/dashdec.c     return av_strstart(proto_name, "http", NULL);
NULL              361 libavformat/dashdec.c         pls->ctx->pb = NULL;
NULL              406 libavformat/dashdec.c     AVDictionary *tmp = NULL;
NULL              407 libavformat/dashdec.c     const char *proto_name = NULL;
NULL              413 libavformat/dashdec.c     if (av_strstart(url, "crypto", NULL)) {
NULL              425 libavformat/dashdec.c     if (av_strstart(proto_name, "file", NULL)) {
NULL              433 libavformat/dashdec.c     } else if (av_strstart(proto_name, "http", NULL)) {
NULL              440 libavformat/dashdec.c     else if (av_strstart(url, "crypto", NULL) && !strncmp(proto_name, url + 7, strlen(proto_name)) && url[7 + strlen(proto_name)] == ':')
NULL              449 libavformat/dashdec.c         char *new_cookies = NULL;
NULL              463 libavformat/dashdec.c         *is_http = av_strstart(proto_name, "http", NULL);
NULL              477 libavformat/dashdec.c     char *url = NULL;
NULL              482 libavformat/dashdec.c         return NULL;
NULL              537 libavformat/dashdec.c     return NULL;
NULL              544 libavformat/dashdec.c         return NULL;
NULL              554 libavformat/dashdec.c     return NULL;
NULL              562 libavformat/dashdec.c     char *val = NULL;
NULL              588 libavformat/dashdec.c         return NULL;
NULL              594 libavformat/dashdec.c         seg->url_offset = strtoll(str_offset, NULL, 10);
NULL              595 libavformat/dashdec.c         seg->size = strtoll(str_end_offset, NULL, 10) - seg->url_offset + 1;
NULL              608 libavformat/dashdec.c     char *initialization_val = NULL;
NULL              609 libavformat/dashdec.c     char *media_val = NULL;
NULL              610 libavformat/dashdec.c     char *range_val = NULL;
NULL              671 libavformat/dashdec.c     xmlAttrPtr attr = NULL;
NULL              672 libavformat/dashdec.c     char *val  = NULL;
NULL              689 libavformat/dashdec.c                 tml->starttime = (int64_t)strtoll(val, NULL, 10);
NULL              691 libavformat/dashdec.c                 tml->repeat =(int64_t) strtoll(val, NULL, 10);
NULL              693 libavformat/dashdec.c                 tml->duration = (int64_t)strtoll(val, NULL, 10);
NULL              706 libavformat/dashdec.c     char *tmp_str = NULL;
NULL              707 libavformat/dashdec.c     char *path = NULL;
NULL              708 libavformat/dashdec.c     char *mpdName = NULL;
NULL              709 libavformat/dashdec.c     xmlNodePtr node = NULL;
NULL              710 libavformat/dashdec.c     char *baseurl = NULL;
NULL              711 libavformat/dashdec.c     char *root_url = NULL;
NULL              712 libavformat/dashdec.c     char *text = NULL;
NULL              713 libavformat/dashdec.c     char *tmp = NULL;
NULL              789 libavformat/dashdec.c         if (text && !av_strstart(text, "/", NULL)) {
NULL              841 libavformat/dashdec.c     struct representation *rep = NULL;
NULL              842 libavformat/dashdec.c     struct fragment *seg = NULL;
NULL              843 libavformat/dashdec.c     xmlNodePtr representation_segmenttemplate_node = NULL;
NULL              844 libavformat/dashdec.c     xmlNodePtr representation_baseurl_node = NULL;
NULL              845 libavformat/dashdec.c     xmlNodePtr representation_segmentlist_node = NULL;
NULL              847 libavformat/dashdec.c     xmlNodePtr fragment_timeline_node = NULL;
NULL              849 libavformat/dashdec.c     char *duration_val = NULL;
NULL              850 libavformat/dashdec.c     char *presentation_timeoffset_val = NULL;
NULL              851 libavformat/dashdec.c     char *startnumber_val = NULL;
NULL              852 libavformat/dashdec.c     char *timescale_val = NULL;
NULL              853 libavformat/dashdec.c     char *initialization_val = NULL;
NULL              854 libavformat/dashdec.c     char *media_val = NULL;
NULL              855 libavformat/dashdec.c     char *val = NULL;
NULL              908 libavformat/dashdec.c             fragment_timeline_node = NULL;
NULL              948 libavformat/dashdec.c                 rep->presentation_timeoffset = (int64_t) strtoll(presentation_timeoffset_val, NULL, 10);
NULL              953 libavformat/dashdec.c                 rep->fragment_duration = (int64_t) strtoll(duration_val, NULL, 10);
NULL              958 libavformat/dashdec.c                 rep->fragment_timescale = (int64_t) strtoll(timescale_val, NULL, 10);
NULL              963 libavformat/dashdec.c                 rep->start_number = rep->first_seq_no = (int64_t) strtoll(startnumber_val, NULL, 10);
NULL              973 libavformat/dashdec.c                         rep->last_seq_no =(int64_t) strtoll(val, NULL, 10) - 1;
NULL             1003 libavformat/dashdec.c             seg->url = get_content_url(baseurl_nodes, 4, c->max_url_size, rep_id_val, rep_bandwidth_val, NULL);
NULL             1014 libavformat/dashdec.c             xmlNodePtr fragmenturl_node = NULL;
NULL             1023 libavformat/dashdec.c                 rep->fragment_duration = (int64_t) strtoll(duration_val, NULL, 10);
NULL             1028 libavformat/dashdec.c                 rep->fragment_timescale = (int64_t) strtoll(timescale_val, NULL, 10);
NULL             1033 libavformat/dashdec.c                 rep->start_number = rep->first_seq_no = (int64_t) strtoll(startnumber_val, NULL, 10);
NULL             1070 libavformat/dashdec.c             rep = NULL;
NULL             1143 libavformat/dashdec.c     xmlNodePtr fragment_template_node = NULL;
NULL             1144 libavformat/dashdec.c     xmlNodePtr content_component_node = NULL;
NULL             1145 libavformat/dashdec.c     xmlNodePtr adaptionset_baseurl_node = NULL;
NULL             1146 libavformat/dashdec.c     xmlNodePtr adaptionset_segmentlist_node = NULL;
NULL             1147 libavformat/dashdec.c     xmlNodePtr adaptionset_supplementalproperty_node = NULL;
NULL             1148 libavformat/dashdec.c     xmlNodePtr node = NULL;
NULL             1191 libavformat/dashdec.c     xmlChar *val = NULL;
NULL             1213 libavformat/dashdec.c         val = NULL;
NULL             1223 libavformat/dashdec.c     uint8_t *new_url = NULL;
NULL             1226 libavformat/dashdec.c     AVDictionary *opts = NULL;
NULL             1227 libavformat/dashdec.c     xmlDoc *doc = NULL;
NULL             1228 libavformat/dashdec.c     xmlNodePtr root_element = NULL;
NULL             1229 libavformat/dashdec.c     xmlNodePtr node = NULL;
NULL             1230 libavformat/dashdec.c     xmlNodePtr period_node = NULL;
NULL             1231 libavformat/dashdec.c     xmlNodePtr tmp_node = NULL;
NULL             1232 libavformat/dashdec.c     xmlNodePtr mpd_baseurl_node = NULL;
NULL             1233 libavformat/dashdec.c     xmlNodePtr period_baseurl_node = NULL;
NULL             1234 libavformat/dashdec.c     xmlNodePtr period_segmenttemplate_node = NULL;
NULL             1235 libavformat/dashdec.c     xmlNodePtr period_segmentlist_node = NULL;
NULL             1236 libavformat/dashdec.c     xmlNodePtr adaptionset_node = NULL;
NULL             1237 libavformat/dashdec.c     xmlAttrPtr attr = NULL;
NULL             1238 libavformat/dashdec.c     char *val  = NULL;
NULL             1275 libavformat/dashdec.c         doc = xmlReadMemory(buf.str, filesize, c->base_url, NULL, 0);
NULL             1339 libavformat/dashdec.c             mpd_baseurl_node = xmlNewNode(NULL, "BaseURL");
NULL             1398 libavformat/dashdec.c     av_bprint_finalize(&buf, NULL);
NULL             1491 libavformat/dashdec.c         rep_src->timelines = NULL;
NULL             1509 libavformat/dashdec.c         rep_src->fragments = NULL;
NULL             1528 libavformat/dashdec.c     c->base_url = NULL;
NULL             1530 libavformat/dashdec.c     c->videos = NULL;
NULL             1532 libavformat/dashdec.c     c->audios = NULL;
NULL             1534 libavformat/dashdec.c     c->subtitles = NULL;
NULL             1535 libavformat/dashdec.c     ret = parse_manifest(s, s->url, NULL);
NULL             1618 libavformat/dashdec.c     struct fragment *seg = NULL;
NULL             1619 libavformat/dashdec.c     struct fragment *seg_ptr = NULL;
NULL             1627 libavformat/dashdec.c                 return NULL;
NULL             1632 libavformat/dashdec.c                 return NULL;
NULL             1658 libavformat/dashdec.c             return NULL;
NULL             1663 libavformat/dashdec.c             return NULL;
NULL             1669 libavformat/dashdec.c             return NULL;
NULL             1679 libavformat/dashdec.c                 return NULL;
NULL             1707 libavformat/dashdec.c     AVDictionary *opts = NULL;
NULL             1708 libavformat/dashdec.c     char *url = NULL;
NULL             1727 libavformat/dashdec.c     ret = open_url(pls->parent, &pls->input, url, c->avio_opts, opts, NULL);
NULL             1861 libavformat/dashdec.c         "headers", "user_agent", "cookies", "http_proxy", "referer", "rw_timeout", "icy", NULL };
NULL             1863 libavformat/dashdec.c     uint8_t *buf = NULL;
NULL             1899 libavformat/dashdec.c     pls->ctx->pb = NULL;
NULL             1901 libavformat/dashdec.c     pls->ctx = NULL;
NULL             1907 libavformat/dashdec.c     ff_const59 AVInputFormat *in_fmt = NULL;
NULL             1908 libavformat/dashdec.c     AVDictionary  *in_fmt_opts = NULL;
NULL             1909 libavformat/dashdec.c     uint8_t *avio_ctx_buffer  = NULL;
NULL             1930 libavformat/dashdec.c         pls->ctx = NULL;
NULL             1934 libavformat/dashdec.c         ffio_init_context(&pls->pb, avio_ctx_buffer , INITIAL_BUFFER_SIZE, 0, pls, read_data, NULL, NULL);
NULL             1936 libavformat/dashdec.c         ffio_init_context(&pls->pb, avio_ctx_buffer , INITIAL_BUFFER_SIZE, 0, pls, read_data, NULL, seek_data);
NULL             1946 libavformat/dashdec.c     ret = av_probe_input_buffer(&pls->pb, &in_fmt, "", NULL, 0, 0);
NULL             1950 libavformat/dashdec.c         pls->ctx = NULL;
NULL             1969 libavformat/dashdec.c         ret = avformat_find_stream_info(pls->ctx, NULL);
NULL             1995 libavformat/dashdec.c         AVStream *st = avformat_new_stream(s, NULL);
NULL             2014 libavformat/dashdec.c     char *url =NULL;
NULL             2019 libavformat/dashdec.c     if (first_init_section == NULL || n_pls == 0)
NULL             2211 libavformat/dashdec.c     struct representation *cur = NULL;
NULL             2212 libavformat/dashdec.c     struct representation *rep = NULL;
NULL             2397 libavformat/dashdec.c     {NULL}
NULL              210 libavformat/dashenc.c     { 0, NULL }
NULL              220 libavformat/dashenc.c     { 0, NULL }
NULL              266 libavformat/dashenc.c     return NULL;
NULL              275 libavformat/dashenc.c     default: return NULL;
NULL              361 libavformat/dashenc.c     const AVCodecTag *tags[2] = { NULL, NULL };
NULL              415 libavformat/dashenc.c         uint8_t *tmpbuf = NULL;
NULL              463 libavformat/dashenc.c     av_write_frame(os->ctx, NULL);
NULL              469 libavformat/dashenc.c         os->ctx->pb = NULL;
NULL              521 libavformat/dashenc.c     AVDictionary *http_opts = NULL;
NULL              573 libavformat/dashenc.c                                 seg->range_length, seg->start_pos, NULL,
NULL              722 libavformat/dashenc.c         write_hls_media_playlist(os, s, representation_id, final, NULL);
NULL              729 libavformat/dashenc.c     char *out = av_realloc(NULL, outlen + 1);
NULL              732 libavformat/dashenc.c         return NULL;
NULL              740 libavformat/dashenc.c                 return NULL;
NULL              819 libavformat/dashenc.c     lang = av_dict_get(as->metadata, "language", NULL, 0);
NULL              828 libavformat/dashenc.c     role = av_dict_get(as->metadata, "role", NULL, 0);
NULL             1146 libavformat/dashenc.c     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
NULL             1147 libavformat/dashenc.c     AVDictionary *opts = NULL;
NULL             1287 libavformat/dashenc.c             get_hls_playlist_name(playlist_file, sizeof(playlist_file), NULL, i);
NULL             1289 libavformat/dashenc.c                                          playlist_file, NULL, i, is_default);
NULL             1305 libavformat/dashenc.c             char *agroup = NULL;
NULL             1306 libavformat/dashenc.c             char *codec_str_ptr = NULL;
NULL             1322 libavformat/dashenc.c             get_hls_playlist_name(playlist_file, sizeof(playlist_file), NULL, i);
NULL             1325 libavformat/dashenc.c                                      codec_str_ptr, NULL, NULL);
NULL             1339 libavformat/dashenc.c     AVDictionaryEntry *entry = av_dict_get(src, key, NULL, 0);
NULL             1467 libavformat/dashenc.c         AVDictionary *opts = NULL;
NULL             1519 libavformat/dashenc.c         ctx->oformat = av_guess_format(os->format_name, NULL, NULL);
NULL             1528 libavformat/dashenc.c         if (!(st = avformat_new_stream(ctx, NULL)))
NULL             1539 libavformat/dashenc.c             os->parser_avctx = avcodec_alloc_context3(NULL);
NULL             1565 libavformat/dashenc.c             ret = avio_open2(&ctx->pb, filename, AVIO_FLAG_WRITE, NULL, &opts);
NULL             1712 libavformat/dashenc.c         if ((ret = avformat_write_header(os->ctx, NULL)) < 0)
NULL             1758 libavformat/dashenc.c         av_log(NULL, AV_LOG_WARNING, "Correcting the segment index after file %s: current=%d corrected=%d\n",
NULL             1782 libavformat/dashenc.c     ret = s->io_open(s, &pb, full_path, AVIO_FLAG_READ, NULL);
NULL             1828 libavformat/dashenc.c         AVIOContext *out = NULL;
NULL             1829 libavformat/dashenc.c         AVDictionary *http_opts = NULL;
NULL             1859 libavformat/dashenc.c         av_bprint_finalize(&buf, NULL);
NULL             1866 libavformat/dashenc.c     av_bprint_finalize(&buf, NULL);
NULL             2188 libavformat/dashenc.c             ret = av_write_frame(os->ctx, NULL);
NULL             2220 libavformat/dashenc.c         AVDictionary *opts = NULL;
NULL             2240 libavformat/dashenc.c             char *prefetch_url = use_rename ? NULL : os->filename;
NULL             2248 libavformat/dashenc.c         uint8_t *buf = NULL;
NULL             2317 libavformat/dashenc.c             ost->internal->bsfc = NULL;
NULL             2344 libavformat/dashenc.c     { "single_file_name", "DASH-templated name to be used for baseURL. Implies storing all segments in one file, accessed using byte ranges", OFFSET(single_file_name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL             2348 libavformat/dashenc.c     { "method", "set the HTTP method", OFFSET(method), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
NULL             2349 libavformat/dashenc.c     { "http_user_agent", "override User-Agent field in HTTP header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E},
NULL             2355 libavformat/dashenc.c     { "format_options","set list of options for the container format (mp4/webm) used for dash", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL},  0, 0, E},
NULL             2369 libavformat/dashenc.c     { "http_opts", "HTTP protocol options", OFFSET(http_opts), AV_OPT_TYPE_DICT, { .str = NULL }, 0, 0, E },
NULL             2373 libavformat/dashenc.c     { NULL },
NULL               26 libavformat/dauddec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               39 libavformat/dcstr.c     st = avformat_new_stream(s, NULL);
NULL               46 libavformat/derf.c     st = avformat_new_stream(s, NULL);
NULL               55 libavformat/dfa.c     st = avformat_new_stream(s, NULL);
NULL              348 libavformat/dhav.c         AVStream *st = avformat_new_stream(s, NULL);
NULL              377 libavformat/dhav.c         AVStream *st = avformat_new_stream(s, NULL);
NULL               43 libavformat/diracdec.c FF_DEF_RAWVIDEO_DEMUXER(dirac, "raw Dirac", dirac_probe, NULL, AV_CODEC_ID_DIRAC)
NULL               46 libavformat/dnxhddec.c FF_DEF_RAWVIDEO_DEMUXER(dnxhd, "raw DNxHD (SMPTE VC-3)", dnxhd_probe, NULL, AV_CODEC_ID_DNXHD)
NULL               53 libavformat/dsfdec.c     ID3v2ExtraMeta *id3v2_extra_meta = NULL;
NULL               78 libavformat/dsfdec.c     st = avformat_new_stream(s, NULL);
NULL              113 libavformat/dsicin.c     st = avformat_new_stream(s, NULL);
NULL              126 libavformat/dsicin.c     st = avformat_new_stream(s, NULL);
NULL              120 libavformat/dss.c     st = avformat_new_stream(s, NULL);
NULL               63 libavformat/dtshddec.c     st = avformat_new_stream(s, NULL);
NULL               77 libavformat/dump.c     hex_dump_internal(NULL, f, 0, buf, size);
NULL               82 libavformat/dump.c     hex_dump_internal(avcl, NULL, level, buf, size);
NULL              111 libavformat/dump.c     pkt_dump_internal(NULL, f, 0, pkt, dump_payload, st->time_base);
NULL              117 libavformat/dump.c     pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base);
NULL              125 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "%1.4f %s", d, postfix);
NULL              127 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "%3.2f %s", d, postfix);
NULL              129 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "%1.0f %s", d, postfix);
NULL              131 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "%1.0fk %s", d / 1000, postfix);
NULL              136 libavformat/dump.c     if (m && !(av_dict_count(m) == 1 && av_dict_get(m, "language", NULL, 0))) {
NULL              137 libavformat/dump.c         AVDictionaryEntry *tag = NULL;
NULL              488 libavformat/dump.c     AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
NULL              493 libavformat/dump.c     avctx = avcodec_alloc_context3(NULL);
NULL              516 libavformat/dump.c     av_log(NULL, AV_LOG_INFO, "    Stream #%d:%d", index, i);
NULL              521 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id);
NULL              523 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "(%s)", lang->value);
NULL              524 libavformat/dump.c     av_log(NULL, AV_LOG_DEBUG, ", %d, %d/%d", st->codec_info_nb_frames,
NULL              526 libavformat/dump.c     av_log(NULL, AV_LOG_INFO, ": %s", buf);
NULL              535 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, ", SAR %d:%d DAR %d:%d",
NULL              547 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "%s", separator);
NULL              560 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (default)");
NULL              562 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (dub)");
NULL              564 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (original)");
NULL              566 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (comment)");
NULL              568 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (lyrics)");
NULL              570 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (karaoke)");
NULL              572 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (forced)");
NULL              574 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (hearing impaired)");
NULL              576 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (visual impaired)");
NULL              578 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (clean effects)");
NULL              580 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (attached pic)");
NULL              582 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (timed thumbnails)");
NULL              584 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (captions)");
NULL              586 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (descriptions)");
NULL              588 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (metadata)");
NULL              590 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (dependent)");
NULL              592 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, " (still image)");
NULL              593 libavformat/dump.c     av_log(NULL, AV_LOG_INFO, "\n");
NULL              595 libavformat/dump.c     dump_metadata(NULL, st->metadata, "    ");
NULL              597 libavformat/dump.c     dump_sidedata(NULL, st, "    ");
NULL              604 libavformat/dump.c     uint8_t *printed = ic->nb_streams ? av_mallocz(ic->nb_streams) : NULL;
NULL              608 libavformat/dump.c     av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
NULL              613 libavformat/dump.c     dump_metadata(NULL, ic->metadata, "  ");
NULL              616 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "  Duration: ");
NULL              626 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "%02"PRId64":%02"PRId64":%02"PRId64".%02"PRId64"", hours, mins, secs,
NULL              629 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "N/A");
NULL              633 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, ", start: ");
NULL              636 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "%s%d.%06d",
NULL              641 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, ", bitrate: ");
NULL              643 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "%"PRId64" kb/s", ic->bit_rate / 1000);
NULL              645 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "N/A");
NULL              646 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "\n");
NULL              651 libavformat/dump.c         av_log(NULL, AV_LOG_INFO, "    Chapter #%d:%d: ", index, i);
NULL              652 libavformat/dump.c         av_log(NULL, AV_LOG_INFO,
NULL              654 libavformat/dump.c         av_log(NULL, AV_LOG_INFO,
NULL              657 libavformat/dump.c         dump_metadata(NULL, ch->metadata, "    ");
NULL              664 libavformat/dump.c                                                   "name", NULL, 0);
NULL              665 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "  Program %d %s\n", ic->programs[j]->id,
NULL              667 libavformat/dump.c             dump_metadata(NULL, ic->programs[j]->metadata, "    ");
NULL              676 libavformat/dump.c             av_log(NULL, AV_LOG_INFO, "  No Program\n");
NULL               98 libavformat/dv.c             return NULL;
NULL              104 libavformat/dv.c     return frame[offs] == t ? &frame[offs] : NULL;
NULL              149 libavformat/dv.c         av_log(NULL, AV_LOG_ERROR, "too many dv pcm frames\n");
NULL              258 libavformat/dv.c             c->ast[i] = avformat_new_stream(c->fctx, NULL);
NULL              330 libavformat/dv.c         return NULL;
NULL              332 libavformat/dv.c     c->vst = avformat_new_stream(s, NULL);
NULL              335 libavformat/dv.c         return NULL;
NULL               70 libavformat/dvbsub.c FF_DEF_RAWSUB_DEMUXER(dvbsub, "raw dvbsub", dvbsub_probe, NULL, AV_CODEC_ID_DVB_SUBTITLE, AVFMT_GENERIC_INDEX)
NULL               50 libavformat/dvbtxt.c FF_DEF_RAWSUB_DEMUXER(dvbtxt, "dvbtxt", dvbtxt_probe, NULL, AV_CODEC_ID_DVB_TELETEXT, 0)
NULL              265 libavformat/dvenc.c         av_fifo_generic_write(c->audio_data[i], data, data_size, NULL);
NULL              301 libavformat/dvenc.c     AVStream *vst = NULL;
NULL              306 libavformat/dvenc.c         return NULL;
NULL              312 libavformat/dvenc.c             if (vst) return NULL;
NULL              316 libavformat/dvenc.c             if (c->n_ast > 1) return NULL;
NULL              371 libavformat/dvenc.c     return NULL;
NULL              378 libavformat/dvenc.c     AVDictionaryEntry *tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
NULL              392 libavformat/dvenc.c             tcr = av_dict_get(s->streams[i]->metadata, "timecode", NULL, 0);
NULL               93 libavformat/dxa.c     st = avformat_new_stream(s, NULL);
NULL              106 libavformat/dxa.c         ast = avformat_new_stream(s, NULL);
NULL               70 libavformat/eacdata.c     st = avformat_new_stream(s, NULL);
NULL              498 libavformat/electronicarts.c     st = avformat_new_stream(s, NULL);
NULL              550 libavformat/electronicarts.c         st = avformat_new_stream(s, NULL);
NULL               66 libavformat/epafdec.c     st = avformat_new_stream(s, NULL);
NULL              121 libavformat/ffmetadec.c     return avpriv_new_chapter(s, s->nb_chapters, tb, start, end, NULL);
NULL              131 libavformat/ffmetadec.c         return NULL;
NULL              182 libavformat/ffmetadec.c             AVStream *st = avformat_new_stream(s, NULL);
NULL              202 libavformat/ffmetadec.c     av_bprint_finalize(&bp, NULL);
NULL               43 libavformat/ffmetaenc.c     AVDictionaryEntry *t = NULL;
NULL              119 libavformat/fifo.c     AVDictionary *format_options = NULL;
NULL              142 libavformat/fifo.c         AVDictionaryEntry *entry = NULL;
NULL              159 libavformat/fifo.c     return av_write_frame(avf2, NULL);
NULL              441 libavformat/fifo.c     return NULL;
NULL              451 libavformat/fifo.c     ret = avformat_alloc_output_context2(&avf2, oformat, NULL, filename);
NULL              468 libavformat/fifo.c         AVStream *st = avformat_new_stream(avf2, NULL);
NULL              492 libavformat/fifo.c     oformat = av_guess_format(fifo->format, avf->url, NULL);
NULL              509 libavformat/fifo.c     ret = pthread_mutex_init(&fifo->overflow_flag_lock, NULL);
NULL              522 libavformat/fifo.c     ret = pthread_create(&fifo->writer_thread, NULL, fifo_consumer_thread, avf);
NULL              580 libavformat/fifo.c     ret = pthread_join(fifo->writer_thread, NULL);
NULL              604 libavformat/fifo.c          AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM},
NULL              610 libavformat/fifo.c          AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM},
NULL              633 libavformat/fifo.c         {NULL},
NULL              131 libavformat/fifo_test.c         {NULL}
NULL               87 libavformat/file.c     { NULL }
NULL               92 libavformat/file.c     { NULL }
NULL              292 libavformat/file.c     char *fullpath = NULL;
NULL               53 libavformat/filmstripdec.c     st = avformat_new_stream(s, NULL);
NULL               55 libavformat/fitsdec.c     st = avformat_new_stream(s, NULL);
NULL               97 libavformat/fitsdec.c             ret = avpriv_fits_header_parse_line(s, header, buf + buf_size, NULL);
NULL              160 libavformat/fitsdec.c         av_bprint_finalize(&avbuf, NULL);
NULL              204 libavformat/fitsdec.c     av_bprint_finalize(&avbuf, NULL);
NULL              210 libavformat/fitsdec.c     { NULL },
NULL               36 libavformat/flac_picture.c     AVBufferRef *data = NULL;
NULL               37 libavformat/flac_picture.c     uint8_t mimetype[64], *desc = NULL;
NULL              163 libavformat/flac_picture.c     st = avformat_new_stream(s, NULL);
NULL               52 libavformat/flacdec.c     uint8_t *buffer=NULL;
NULL               54 libavformat/flacdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              110 libavformat/flacdec.c             buffer = NULL;
NULL              188 libavformat/flacdec.c                 chmask = av_dict_get(s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
NULL              190 libavformat/flacdec.c                     uint64_t mask = strtol(chmask->value, NULL, 0);
NULL              196 libavformat/flacdec.c                         av_dict_set(&s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
NULL               65 libavformat/flacenc.c     ff_metadata_conv(m, ff_vorbiscomment_metadata_conv, NULL);
NULL               67 libavformat/flacenc.c     len = ff_vorbiscomment_length(*m, vendor, NULL, 0);
NULL               73 libavformat/flacenc.c     ff_vorbiscomment_write(pb, *m, vendor, NULL, 0);
NULL               85 libavformat/flacenc.c     const char *mimetype = NULL, *desc = "";
NULL              107 libavformat/flacenc.c     e = av_dict_get(st->metadata, "comment", NULL, 0);
NULL              130 libavformat/flacenc.c     if ((e = av_dict_get(st->metadata, "title", NULL, 0)))
NULL              243 libavformat/flacenc.c                                                 NULL, 0);
NULL              401 libavformat/flacenc.c     { NULL },
NULL              108 libavformat/flic.c     st = avformat_new_stream(s, NULL);
NULL              148 libavformat/flic.c         ast = avformat_new_stream(s, NULL);
NULL              132 libavformat/flvdec.c     AVStream *stream  = NULL;
NULL              163 libavformat/flvdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              165 libavformat/flvdec.c         return NULL;
NULL              403 libavformat/flvdec.c     int64_t *times         = NULL;
NULL              404 libavformat/flvdec.c     int64_t *filepositions = NULL;
NULL              470 libavformat/flvdec.c         times = NULL;
NULL              471 libavformat/flvdec.c         filepositions = NULL;
NULL              560 libavformat/flvdec.c             if (amf_parse_object(s, NULL, NULL, NULL, max_pos,
NULL              576 libavformat/flvdec.c         apar = astream ? astream->codecpar : NULL;
NULL              577 libavformat/flvdec.c         vpar = vstream ? vstream->codecpar : NULL;
NULL              699 libavformat/flvdec.c     astream = NULL;
NULL              700 libavformat/flvdec.c     vstream = NULL;
NULL              701 libavformat/flvdec.c     dstream = NULL;
NULL              885 libavformat/flvdec.c     AVStream *st    = NULL;
NULL             1000 libavformat/flvdec.c     AVStream *st    = NULL;
NULL             1263 libavformat/flvdec.c             t = av_dict_get(s->metadata, "Encoder", NULL, 0);
NULL             1290 libavformat/flvdec.c             flv->new_extradata[stream_type]      = NULL;
NULL             1346 libavformat/flvdec.c     { NULL }
NULL              281 libavformat/flvenc.c     AVDictionaryEntry *tag = NULL;
NULL              565 libavformat/flvenc.c         position->next = NULL;
NULL              568 libavformat/flvenc.c         position->next = NULL;
NULL              616 libavformat/flvenc.c     ret = s->io_open(s, &read_pb, s->url, AVIO_FLAG_READ, NULL);
NULL              825 libavformat/flvenc.c                 p = NULL;
NULL              828 libavformat/flvenc.c                 newflv_posinfo = NULL;
NULL              886 libavformat/flvenc.c     uint8_t *data = NULL;
NULL             1093 libavformat/flvenc.c             ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
NULL             1105 libavformat/flvenc.c     { NULL },
NULL               54 libavformat/format.c     const AVOutputFormat *fmt = NULL;
NULL               55 libavformat/format.c     AVOutputFormat *fmt_found = NULL;
NULL               64 libavformat/format.c         return av_guess_format("image2", NULL, NULL);
NULL               92 libavformat/format.c         ff_const59 AVOutputFormat *fmt2 = av_guess_format(NULL, filename, NULL);
NULL              120 libavformat/format.c     const AVInputFormat *fmt = NULL;
NULL              125 libavformat/format.c     return NULL;
NULL              132 libavformat/format.c     const AVInputFormat *fmt1 = NULL;
NULL              133 libavformat/format.c     ff_const59 AVInputFormat *fmt = NULL;
NULL              167 libavformat/format.c                 av_log(NULL, AV_LOG_TRACE, "Probing %s score:%d size:%d\n", fmt1->name, score, lpd.buf_size);
NULL              188 libavformat/format.c                 av_log(NULL, AV_LOG_DEBUG, "Probing %s score:%d increased to %d due to MIME type\n", fmt1->name, score, AVPROBE_SCORE_MIME);
NULL              196 libavformat/format.c             fmt = NULL;
NULL              213 libavformat/format.c         return NULL;
NULL              227 libavformat/format.c     uint8_t *buf = NULL;
NULL              244 libavformat/format.c         uint8_t *mime_type_opt = NULL;
NULL              248 libavformat/format.c         semi = pd.mime_type ? strchr(pd.mime_type, ';') : NULL;
NULL               43 libavformat/fsb.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               89 libavformat/ftp.c     {NULL}
NULL              158 libavformat/ftp.c                 av_bprint_finalize(&line_buffer, NULL);
NULL              215 libavformat/ftp.c         *response = NULL;
NULL              254 libavformat/ftp.c     err = ftp_send_command(s, buf, user_codes, NULL);
NULL              260 libavformat/ftp.c             err = ftp_send_command(s, buf, pass_codes, NULL);
NULL              272 libavformat/ftp.c     char *res = NULL, *start = NULL, *end = NULL;
NULL              314 libavformat/ftp.c     char *res = NULL, *start = NULL, *end = NULL;
NULL              336 libavformat/ftp.c     if (!av_strtok(NULL, ",", &end)) goto fail;
NULL              337 libavformat/ftp.c     if (!av_strtok(NULL, ",", &end)) goto fail;
NULL              338 libavformat/ftp.c     if (!av_strtok(NULL, ",", &end)) goto fail;
NULL              341 libavformat/ftp.c     start = av_strtok(NULL, ",", &end);
NULL              344 libavformat/ftp.c     start = av_strtok(NULL, ",", &end);
NULL              360 libavformat/ftp.c     char *res = NULL, *start = NULL, *end = NULL;
NULL              399 libavformat/ftp.c     char *res = NULL;
NULL              404 libavformat/ftp.c         s->filesize = strtoll(&res[4], NULL, 10);
NULL              422 libavformat/ftp.c     resp_code = ftp_send_command(s, command, retr_codes, NULL);
NULL              438 libavformat/ftp.c     resp_code = ftp_send_command(s, command, stor_codes, NULL);
NULL              452 libavformat/ftp.c     if (ftp_send_command(s, command, type_codes, NULL) != 200)
NULL              464 libavformat/ftp.c     if (ftp_send_command(s, command, rest_codes, NULL) != 350)
NULL              476 libavformat/ftp.c     if (ftp_send_command(s, command, cwd_codes, NULL) != 250)
NULL              486 libavformat/ftp.c     if (ftp_send_command(s, command, mlsd_codes, NULL) != 150)
NULL              497 libavformat/ftp.c     if (ftp_send_command(s, command, nlst_codes, NULL) != 226)
NULL              519 libavformat/ftp.c     return av_stristr(s->features, feature_name) != NULL;
NULL              535 libavformat/ftp.c         int ret = ftp_send_command(s, enable_utf8_command, opts_codes, NULL);
NULL              545 libavformat/ftp.c     char buf[CONTROL_BUFFER_SIZE], *response = NULL;
NULL              547 libavformat/ftp.c     AVDictionary *opts = NULL;
NULL              552 libavformat/ftp.c         ff_url_join(buf, sizeof(buf), "tcp", NULL,
NULL              553 libavformat/ftp.c                     s->hostname, s->server_control_port, NULL);
NULL              567 libavformat/ftp.c         if (ftp_status(s, ((h->flags & AVIO_FLAG_WRITE) ? &response : NULL), connect_codes) != 220) {
NULL              596 libavformat/ftp.c     AVDictionary *opts = NULL;
NULL              607 libavformat/ftp.c         ff_url_join(buf, sizeof(buf), "tcp", NULL, s->hostname, s->server_data_port, NULL);
NULL              643 libavformat/ftp.c     if (ftp_send_command(s, command, NULL, NULL) < 0) {
NULL              651 libavformat/ftp.c         if (ftp_status(s, NULL, abor_codes) < 225) {
NULL              667 libavformat/ftp.c     const char *tok_user = NULL, *tok_pass = NULL;
NULL              668 libavformat/ftp.c     char *newpath = NULL;
NULL              676 libavformat/ftp.c     s->features = NULL;
NULL              823 libavformat/ftp.c            char *response = NULL;
NULL              966 libavformat/ftp.c     char *saveptr = NULL, *p = mlsd;
NULL              967 libavformat/ftp.c     ff_dlog(NULL, "%s\n", mlsd);
NULL              969 libavformat/ftp.c         p = NULL;
NULL              987 libavformat/ftp.c             next->filemode = strtoumax(value, NULL, 8);
NULL              989 libavformat/ftp.c             next->user_id = strtoumax(value, NULL, 10);
NULL              991 libavformat/ftp.c             next->group_id = strtoumax(value, NULL, 10);
NULL              993 libavformat/ftp.c             next->size = strtoll(value, NULL, 10);
NULL             1036 libavformat/ftp.c                 *next = NULL;
NULL             1084 libavformat/ftp.c     if (ftp_send_command(s, command, del_codes, NULL) == 250) {
NULL             1090 libavformat/ftp.c     if (ftp_send_command(s, command, rmd_codes, NULL) == 250)
NULL             1112 libavformat/ftp.c     if (ftp_send_command(s, command, rnfr_codes, NULL) != 350) {
NULL             1121 libavformat/ftp.c     if (ftp_send_command(s, command, rnto_codes, NULL) == 250)
NULL               53 libavformat/fwse.c     st = avformat_new_stream(s, NULL);
NULL               31 libavformat/g722.c     st = avformat_new_stream(s, NULL);
NULL               38 libavformat/g723_1.c     st = avformat_new_stream(s, NULL);
NULL               35 libavformat/g726.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               65 libavformat/g726.c     { NULL },
NULL               39 libavformat/g729dec.c     st = avformat_new_stream(s, NULL);
NULL               86 libavformat/g729dec.c     { NULL },
NULL               52 libavformat/genh.c     st = avformat_new_stream(s, NULL);
NULL              180 libavformat/gif.c     gif_write_packet(s, NULL);
NULL              196 libavformat/gif.c     { NULL },
NULL              131 libavformat/gifdec.c     st = avformat_new_stream(s, NULL);
NULL              152 libavformat/gifdec.c                 av_bprint_finalize(&bp, NULL);
NULL              389 libavformat/gifdec.c     { NULL },
NULL               84 libavformat/gopher.c     av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
NULL               90 libavformat/gopher.c     ff_url_join(buf, sizeof(buf), "tcp", NULL, hostname, port, NULL);
NULL               92 libavformat/gopher.c     s->hd = NULL;
NULL               94 libavformat/gopher.c                                &h->interrupt_callback, NULL, h->protocol_whitelist, h->protocol_blacklist, h);
NULL               76 libavformat/gsmdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               96 libavformat/gsmdec.c     { NULL },
NULL              106 libavformat/gxf.c     AVStream *st = NULL;
NULL              110 libavformat/gxf.c     st = avformat_new_stream(s, NULL);
NULL              704 libavformat/gxfenc.c     GXFStreamContext *vsc = NULL;
NULL              708 libavformat/gxfenc.c     AVDictionaryEntry *tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
NULL              773 libavformat/gxfenc.c                 tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
NULL             1025 libavformat/gxfenc.c     return ff_interleave_packet_per_dts(s, out, NULL, flush);
NULL               78 libavformat/h263dec.c FF_DEF_RAWVIDEO_DEMUXER(h263, "raw H.263", h263_probe, NULL, AV_CODEC_ID_H263)
NULL              112 libavformat/h264dec.c     ff_tlog(NULL, "sps:%d pps:%d idr:%d sli:%d res:%d\n", sps, pps, idr, sli, res);
NULL               48 libavformat/hashenc.c     { NULL },
NULL               56 libavformat/hashenc.c     { NULL },
NULL               63 libavformat/hashenc.c     { NULL },
NULL               70 libavformat/hashenc.c     { NULL },
NULL               78 libavformat/hashenc.c     { NULL },
NULL               58 libavformat/hca.c     st = avformat_new_stream(s, NULL);
NULL               60 libavformat/hcom.c     st = avformat_new_stream(s, NULL);
NULL              173 libavformat/hdsenc.c     ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL);
NULL              241 libavformat/hdsenc.c     ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL);
NULL              291 libavformat/hdsenc.c     ret = s->io_open(s, &os->out, os->temp_filename, AVIO_FLAG_WRITE, NULL);
NULL              324 libavformat/hdsenc.c     oformat = av_guess_format("flv", NULL, NULL);
NULL              374 libavformat/hdsenc.c                                          NULL, hds_write, NULL);
NULL              383 libavformat/hdsenc.c         if (!(st = avformat_new_stream(ctx, NULL))) {
NULL              397 libavformat/hdsenc.c         if ((ret = avformat_write_header(os->ctx, NULL)) < 0) {
NULL              559 libavformat/hdsenc.c     { NULL },
NULL              834 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "configurationVersion:                %"PRIu8"\n",
NULL              836 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "general_profile_space:               %"PRIu8"\n",
NULL              838 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "general_tier_flag:                   %"PRIu8"\n",
NULL              840 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "general_profile_idc:                 %"PRIu8"\n",
NULL              842 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE, "general_profile_compatibility_flags: 0x%08"PRIx32"\n",
NULL              844 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE, "general_constraint_indicator_flags:  0x%012"PRIx64"\n",
NULL              846 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "general_level_idc:                   %"PRIu8"\n",
NULL              848 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "min_spatial_segmentation_idc:        %"PRIu16"\n",
NULL              850 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "parallelismType:                     %"PRIu8"\n",
NULL              852 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "chromaFormat:                        %"PRIu8"\n",
NULL              854 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "bitDepthLumaMinus8:                  %"PRIu8"\n",
NULL              856 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "bitDepthChromaMinus8:                %"PRIu8"\n",
NULL              858 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "avgFrameRate:                        %"PRIu16"\n",
NULL              860 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "constantFrameRate:                   %"PRIu8"\n",
NULL              862 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "numTemporalLayers:                   %"PRIu8"\n",
NULL              864 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "temporalIdNested:                    %"PRIu8"\n",
NULL              866 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "lengthSizeMinusOne:                  %"PRIu8"\n",
NULL              868 libavformat/hevc.c     av_log(NULL, AV_LOG_TRACE,  "numOfArrays:                         %"PRIu8"\n",
NULL              871 libavformat/hevc.c         av_log(NULL, AV_LOG_TRACE, "array_completeness[%"PRIu8"]:               %"PRIu8"\n",
NULL              873 libavformat/hevc.c         av_log(NULL, AV_LOG_TRACE, "NAL_unit_type[%"PRIu8"]:                    %"PRIu8"\n",
NULL              875 libavformat/hevc.c         av_log(NULL, AV_LOG_TRACE, "numNalus[%"PRIu8"]:                         %"PRIu16"\n",
NULL              878 libavformat/hevc.c             av_log(NULL, AV_LOG_TRACE,
NULL             1003 libavformat/hevc.c     uint8_t *buf, *end, *start = NULL;
NULL             1072 libavformat/hevc.c     uint8_t *buf, *end, *start = NULL;
NULL              266 libavformat/hls.c             pls->ctx->pb = NULL;
NULL              303 libavformat/hls.c     pkt->data = NULL;
NULL              311 libavformat/hls.c         return NULL;
NULL              315 libavformat/hls.c         return NULL;
NULL              341 libavformat/hls.c         return NULL;
NULL              345 libavformat/hls.c         return NULL;
NULL              411 libavformat/hls.c         return NULL;
NULL              415 libavformat/hls.c         return NULL;
NULL              423 libavformat/hls.c             return NULL;
NULL              429 libavformat/hls.c         return NULL;
NULL              433 libavformat/hls.c         sec->size = strtoll(info->byterange, NULL, 10);
NULL              436 libavformat/hls.c             sec->url_offset = strtoll(ptr+1, NULL, 10);
NULL              489 libavformat/hls.c         return NULL;
NULL              493 libavformat/hls.c         return NULL;
NULL              499 libavformat/hls.c         return NULL;
NULL              506 libavformat/hls.c             return NULL;
NULL              511 libavformat/hls.c         return NULL;
NULL              549 libavformat/hls.c         chr_ptr = NULL;
NULL              603 libavformat/hls.c     if (!new_variant(c, NULL, url, NULL))
NULL              631 libavformat/hls.c     AVDictionary *tmp = NULL;
NULL              632 libavformat/hls.c     const char *proto_name = NULL;
NULL              636 libavformat/hls.c     if (av_strstart(url, "crypto", NULL)) {
NULL              639 libavformat/hls.c     } else if (av_strstart(url, "data", NULL)) {
NULL              651 libavformat/hls.c     if (av_strstart(proto_name, "file", NULL)) {
NULL              659 libavformat/hls.c     } else if (av_strstart(proto_name, "http", NULL)) {
NULL              661 libavformat/hls.c     } else if (av_strstart(proto_name, "data", NULL)) {
NULL              668 libavformat/hls.c     else if (av_strstart(url, "crypto", NULL) && !strncmp(proto_name, url + 7, strlen(proto_name)) && url[7 + strlen(proto_name)] == ':')
NULL              670 libavformat/hls.c     else if (av_strstart(url, "data", NULL) && !strncmp(proto_name, url + 5, strlen(proto_name)) && url[5 + strlen(proto_name)] == ':')
NULL              695 libavformat/hls.c         char *new_cookies = NULL;
NULL              726 libavformat/hls.c     uint8_t *new_url = NULL;
NULL              729 libavformat/hls.c     struct segment *cur_init_section = NULL;
NULL              730 libavformat/hls.c     int is_http = av_strstart(url, "http", NULL);
NULL              731 libavformat/hls.c     struct segment **prev_segments = NULL;
NULL              737 libavformat/hls.c         ret = open_url_keepalive(c->ctx, &c->playlist_pb, url, NULL);
NULL              745 libavformat/hls.c             in = NULL;
NULL              750 libavformat/hls.c         AVDictionary *opts = NULL;
NULL              780 libavformat/hls.c         pls->segments = NULL;
NULL              817 libavformat/hls.c             pls->target_duration = strtoll(ptr, NULL, 10) * AV_TIME_BASE;
NULL              862 libavformat/hls.c                 cur_init_section->key = NULL;
NULL              872 libavformat/hls.c             seg_size = strtoll(ptr, NULL, 10);
NULL              875 libavformat/hls.c                 seg_offset = strtoll(ptr+1, NULL, 10);
NULL              876 libavformat/hls.c         } else if (av_strstart(line, "#", NULL)) {
NULL              919 libavformat/hls.c                     seg->key = NULL;
NULL             1004 libavformat/hls.c         return NULL;
NULL             1054 libavformat/hls.c     AVDictionaryEntry *entry = NULL;
NULL             1058 libavformat/hls.c         oldentry = av_dict_get(pls->id3_initial, entry->key, NULL, AV_DICT_MATCH_CASE);
NULL             1082 libavformat/hls.c     AVDictionary *metadata = NULL;
NULL             1083 libavformat/hls.c     ID3v2ExtraMetaAPIC *apic = NULL;
NULL             1084 libavformat/hls.c     ID3v2ExtraMeta *extra_meta = NULL;
NULL             1214 libavformat/hls.c         ffio_init_context(&id3ioctx, pls->id3_buf, id3_buf_pos, 0, NULL, NULL, NULL, NULL);
NULL             1224 libavformat/hls.c     AVDictionary *opts = NULL;
NULL             1246 libavformat/hls.c             AVIOContext *pb = NULL;
NULL             1247 libavformat/hls.c             if (open_url(pls->parent, &pb, seg->key, c->avio_opts, opts, NULL) == 0) {
NULL             1320 libavformat/hls.c     pls->cur_init_section = NULL;
NULL             1455 libavformat/hls.c             if ((ret = parse_playlist(c, v->url, v, NULL)) < 0) {
NULL             1524 libavformat/hls.c         uint8_t *http_version_opt = NULL;
NULL             1534 libavformat/hls.c         seg && seg->key_type == KEY_NONE && av_strstart(seg->url, "http", NULL)) {
NULL             1567 libavformat/hls.c         seg->key_type == KEY_NONE && av_strstart(seg->url, "http", NULL)) {
NULL             1668 libavformat/hls.c         parse_playlist(c, pls->url, pls, NULL);
NULL             1704 libavformat/hls.c         "headers", "http_proxy", "user_agent", "cookies", "referer", "rw_timeout", "icy", NULL };
NULL             1783 libavformat/hls.c         AVStream *st = avformat_new_stream(s, NULL);
NULL             1858 libavformat/hls.c     if ((ret = parse_playlist(c, s->url, NULL, s->pb)) < 0)
NULL             1872 libavformat/hls.c             if ((ret = parse_playlist(c, pls->url, pls, NULL)) < 0) {
NULL             1936 libavformat/hls.c         ff_const59 AVInputFormat *in_fmt = NULL;
NULL             1966 libavformat/hls.c             pls->ctx = NULL;
NULL             1970 libavformat/hls.c                           read_data, NULL, NULL);
NULL             1974 libavformat/hls.c         ret = av_probe_input_buffer(&pls->pb, &in_fmt, url, NULL, 0, 0);
NULL             1983 libavformat/hls.c             pls->ctx = NULL;
NULL             1993 libavformat/hls.c         ret = avformat_open_input(&pls->ctx, pls->segments[0]->url, in_fmt, NULL);
NULL             2014 libavformat/hls.c             ret = avformat_find_stream_info(pls->ctx, NULL);
NULL             2190 libavformat/hls.c                                      NULL : c->playlists[minplaylist];
NULL             2269 libavformat/hls.c     struct playlist *seek_pls = NULL;
NULL             2380 libavformat/hls.c     {NULL}
NULL              397 libavformat/hlsenc.c         av_bprint_finalize(&buf, NULL);
NULL              446 libavformat/hlsenc.c         av_bprint_finalize(&buf, NULL);
NULL              474 libavformat/hlsenc.c     av_write_frame(ctx, NULL);
NULL              478 libavformat/hlsenc.c     ctx->pb = NULL;
NULL              502 libavformat/hlsenc.c         AVDictionary *opt = NULL;
NULL              503 libavformat/hlsenc.c         AVIOContext  *out = NULL;
NULL              522 libavformat/hlsenc.c     HLSSegment *segment, *previous_segment = NULL;
NULL              527 libavformat/hlsenc.c     const char *dirname = NULL;
NULL              528 libavformat/hlsenc.c     char *dirname_r = NULL;
NULL              529 libavformat/hlsenc.c     char *dirname_repl = NULL;
NULL              530 libavformat/hlsenc.c     const char *vtt_dirname = NULL;
NULL              531 libavformat/hlsenc.c     char *vtt_dirname_r = NULL;
NULL              532 libavformat/hlsenc.c     const char *proto = NULL;
NULL              550 libavformat/hlsenc.c             previous_segment->next = NULL;
NULL              554 libavformat/hlsenc.c             previous_segment->next = NULL;
NULL              622 libavformat/hlsenc.c     av_bprint_finalize(&path, NULL);
NULL              693 libavformat/hlsenc.c         AVDictionary *options = NULL;
NULL              723 libavformat/hlsenc.c     AVDictionary *options = NULL;
NULL              778 libavformat/hlsenc.c     AVDictionary *options = NULL;
NULL              781 libavformat/hlsenc.c     AVFormatContext *vtt_oc = NULL;
NULL              786 libavformat/hlsenc.c     ret = avformat_alloc_output_context2(&vs->avf, vs->oformat, NULL, NULL);
NULL              804 libavformat/hlsenc.c         ret = avformat_alloc_output_context2(&vs->vtt_avf, vs->vtt_oformat, NULL, NULL);
NULL              819 libavformat/hlsenc.c         if (!(st = avformat_new_stream(loc, NULL)))
NULL              897 libavformat/hlsenc.c     return (HLSSegment *) NULL;
NULL              912 libavformat/hlsenc.c             char *filename = NULL;
NULL              924 libavformat/hlsenc.c             char *filename = NULL;
NULL              993 libavformat/hlsenc.c         char *filename = NULL;
NULL             1012 libavformat/hlsenc.c             char *filename = NULL;
NULL             1023 libavformat/hlsenc.c             char *filename = NULL;
NULL             1078 libavformat/hlsenc.c     en->next     = NULL;
NULL             1140 libavformat/hlsenc.c                                    &s->interrupt_callback, NULL,
NULL             1154 libavformat/hlsenc.c             int64_t tmp_sequence = strtoll(ptr, NULL, 10);
NULL             1193 libavformat/hlsenc.c         } else if (av_strstart(line, "#", NULL)) {
NULL             1256 libavformat/hlsenc.c             av_log(NULL, AV_LOG_WARNING, "Unable to find relative url\n");
NULL             1257 libavformat/hlsenc.c             return NULL;
NULL             1271 libavformat/hlsenc.c         NULL
NULL             1288 libavformat/hlsenc.c     AVDictionary *options = NULL;
NULL             1291 libavformat/hlsenc.c     const char *m3u8_rel_name = NULL;
NULL             1292 libavformat/hlsenc.c     const char *vtt_m3u8_rel_name = NULL;
NULL             1294 libavformat/hlsenc.c     const char *sgroup = NULL;
NULL             1362 libavformat/hlsenc.c         vid_st = NULL;
NULL             1363 libavformat/hlsenc.c         aud_st = NULL;
NULL             1402 libavformat/hlsenc.c         ccgroup = NULL;
NULL             1430 libavformat/hlsenc.c                     aud_st ? vs->agroup : NULL, vs->codec_attr, ccgroup, sgroup);
NULL             1434 libavformat/hlsenc.c                                          aud_st ? vs->agroup : NULL, vs->codec_attr, ccgroup, sgroup);
NULL             1461 libavformat/hlsenc.c     char *key_uri = NULL;
NULL             1462 libavformat/hlsenc.c     char *iv_string = NULL;
NULL             1463 libavformat/hlsenc.c     AVDictionary *options = NULL;
NULL             1465 libavformat/hlsenc.c     double *prog_date_time_p = (hls->flags & HLS_PROGRAM_DATE_TIME) ? &prog_date_time : NULL;
NULL             1549 libavformat/hlsenc.c                                           hls->baseurl, en->sub_filename, NULL, 0, 0, 0);
NULL             1584 libavformat/hlsenc.c     AVDictionary *options = NULL;
NULL             1585 libavformat/hlsenc.c     const char *proto = NULL;
NULL             1602 libavformat/hlsenc.c         char *filename = NULL;
NULL             1649 libavformat/hlsenc.c             char *filename = NULL;
NULL             1663 libavformat/hlsenc.c             char *filename = NULL;
NULL             1746 libavformat/hlsenc.c         err = avformat_write_header(vtt_oc,NULL);
NULL             1761 libavformat/hlsenc.c     time_t t = time(NULL);
NULL             1796 libavformat/hlsenc.c     char *fn_dup = NULL;
NULL             1809 libavformat/hlsenc.c         av_log(NULL, AV_LOG_ERROR, "More than 1 variant streams are present, %%v is expected "
NULL             1816 libavformat/hlsenc.c         av_log(NULL, AV_LOG_ERROR, "%%v is expected either in the filename or "
NULL             1830 libavformat/hlsenc.c     char *orig_buf_dup = NULL, *mod_buf_dup = NULL;
NULL             1922 libavformat/hlsenc.c         q = NULL;
NULL             1935 libavformat/hlsenc.c         p = NULL;
NULL             1963 libavformat/hlsenc.c             varstr = NULL;
NULL             2039 libavformat/hlsenc.c     char *saveptr1 = NULL, *saveptr2 = NULL;
NULL             2049 libavformat/hlsenc.c         q = NULL;
NULL             2062 libavformat/hlsenc.c         p = NULL;
NULL             2070 libavformat/hlsenc.c             ccstr = NULL;
NULL             2153 libavformat/hlsenc.c     char *fn1= NULL, *fn2 = NULL;
NULL             2195 libavformat/hlsenc.c     VariantStream *vs = NULL;
NULL             2200 libavformat/hlsenc.c         ret = avformat_write_header(vs->avf, NULL);
NULL             2223 libavformat/hlsenc.c                 inner_st = NULL;
NULL             2249 libavformat/hlsenc.c     AVDictionary *options = NULL;
NULL             2266 libavformat/hlsenc.c     AVFormatContext *oc = NULL;
NULL             2273 libavformat/hlsenc.c     const char *proto = NULL;
NULL             2275 libavformat/hlsenc.c     VariantStream *vs = NULL;
NULL             2276 libavformat/hlsenc.c     char *old_filename = NULL;
NULL             2354 libavformat/hlsenc.c         av_write_frame(oc, NULL); /* Flush any buffered data */
NULL             2396 libavformat/hlsenc.c                 AVDictionary *options = NULL;
NULL             2397 libavformat/hlsenc.c                 char *filename = NULL;
NULL             2533 libavformat/hlsenc.c     VariantStream *vs = NULL;
NULL             2565 libavformat/hlsenc.c     AVFormatContext *oc = NULL;
NULL             2566 libavformat/hlsenc.c     AVFormatContext *vtt_oc = NULL;
NULL             2567 libavformat/hlsenc.c     char *old_filename = NULL;
NULL             2568 libavformat/hlsenc.c     const char *proto = NULL;
NULL             2572 libavformat/hlsenc.c     VariantStream *vs = NULL;
NULL             2573 libavformat/hlsenc.c     AVDictionary *options = NULL;
NULL             2577 libavformat/hlsenc.c         char *filename = NULL;
NULL             2602 libavformat/hlsenc.c                 uint8_t *buffer = NULL;
NULL             2603 libavformat/hlsenc.c                 av_write_frame(oc, NULL); /* Flush any buffered data */
NULL             2704 libavformat/hlsenc.c     VariantStream *vs = NULL;
NULL             2706 libavformat/hlsenc.c     char *p = NULL;
NULL             2765 libavformat/hlsenc.c         time_t t = time(NULL);
NULL             2777 libavformat/hlsenc.c             hls->start_sequence = strtoll(b, NULL, 10);
NULL             2823 libavformat/hlsenc.c             vs->oformat = av_guess_format("mp4", NULL, NULL);
NULL             2825 libavformat/hlsenc.c             vs->oformat = av_guess_format("mpegts", NULL, NULL);
NULL             2892 libavformat/hlsenc.c             vs->vtt_oformat = av_guess_format("webvtt", NULL, NULL);
NULL             2947 libavformat/hlsenc.c     {"hls_ts_options","set hls mpegts list of options for the container format used for hls", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL},  0, 0,    E},
NULL             2948 libavformat/hlsenc.c     {"hls_vtt_options","set hls vtt list of options for the container format used for hls", OFFSET(vtt_format_options_str), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
NULL             2953 libavformat/hlsenc.c     {"hls_base_url",  "url to prepend to each playlist entry",   OFFSET(baseurl), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E},
NULL             2954 libavformat/hlsenc.c     {"hls_segment_filename", "filename template for segment files", OFFSET(segment_filename),   AV_OPT_TYPE_STRING, {.str = NULL},            0,       0,         E},
NULL             2956 libavformat/hlsenc.c     {"hls_key_info_file",    "file with key URI and key file path", OFFSET(key_info_file),      AV_OPT_TYPE_STRING, {.str = NULL},            0,       0,         E},
NULL             2959 libavformat/hlsenc.c     {"hls_enc_key_url",    "url to access the key to decrypt the segments", OFFSET(key_url),      AV_OPT_TYPE_STRING, {.str = NULL},            0,       0,         E},
NULL             2961 libavformat/hlsenc.c     {"hls_subtitle_path",     "set path of hls subtitles", OFFSET(subtitle_filename), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
NULL             2994 libavformat/hlsenc.c     {"method", "set the HTTP method(default: PUT)", OFFSET(method), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
NULL             3000 libavformat/hlsenc.c     {"http_user_agent", "override User-Agent field in HTTP header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
NULL             3001 libavformat/hlsenc.c     {"var_stream_map", "Variant stream map string", OFFSET(var_stream_map), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
NULL             3002 libavformat/hlsenc.c     {"cc_stream_map", "Closed captions stream map string", OFFSET(cc_stream_map), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
NULL             3003 libavformat/hlsenc.c     {"master_pl_name", "Create HLS master playlist with this name", OFFSET(master_pl_name), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,    E},
NULL             3008 libavformat/hlsenc.c     {"headers", "set custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL             3009 libavformat/hlsenc.c     { NULL },
NULL               78 libavformat/hlsplaylist.c         av_log(NULL, AV_LOG_WARNING,
NULL              110 libavformat/hlsplaylist.c     av_log(NULL, AV_LOG_VERBOSE, "EXT-X-MEDIA-SEQUENCE:%"PRId64"\n", sequence);
NULL              164 libavformat/hlsplaylist.c             av_log(NULL, AV_LOG_DEBUG, "strftime error in ff_hls_write_file_entry\n");
NULL              113 libavformat/hlsproto.c                                    &h->interrupt_callback, NULL,
NULL              142 libavformat/hlsproto.c         } else if (av_strstart(line, "#", NULL)) {
NULL              300 libavformat/hlsproto.c                                &h->interrupt_callback, NULL,
NULL               80 libavformat/hnm.c     if (!(vst = avformat_new_stream(s, NULL)))
NULL              140 libavformat/http.c     { "http_proxy", "set HTTP proxy to tunnel through", OFFSET(http_proxy), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
NULL              141 libavformat/http.c     { "headers", "set custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
NULL              142 libavformat/http.c     { "content_type", "set a specific content type for the POST messages", OFFSET(content_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
NULL              144 libavformat/http.c     { "referer", "override referer header", OFFSET(referer), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
NULL              150 libavformat/http.c     { "mime_type", "export the MIME type", OFFSET(mime_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
NULL              151 libavformat/http.c     { "http_version", "export the http response version", OFFSET(http_version), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
NULL              152 libavformat/http.c     { "cookies", "set cookies to be sent in applicable future requests, use newline delimited Set-Cookie HTTP field value syntax", OFFSET(cookies), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
NULL              154 libavformat/http.c     { "icy_metadata_headers", "return ICY metadata headers", OFFSET(icy_metadata_headers), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT },
NULL              155 libavformat/http.c     { "icy_metadata_packet", "return current ICY metadata packet", OFFSET(icy_metadata_packet), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT },
NULL              161 libavformat/http.c     { "location", "The actual location of the data received", OFFSET(location), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
NULL              164 libavformat/http.c     { "method", "Override the HTTP method or set the expected HTTP method from a client", OFFSET(method), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
NULL              170 libavformat/http.c     { "resource", "The resource requested by a client", OFFSET(resource), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL              172 libavformat/http.c     { NULL }
NULL              205 libavformat/http.c     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
NULL              209 libavformat/http.c                  proxy_path && av_strstart(proxy_path, "http://", NULL);
NULL              236 libavformat/http.c         ff_url_join(urlbuf, sizeof(urlbuf), proto, NULL, hostname, port, "%s",
NULL              239 libavformat/http.c         av_url_split(NULL, 0, proxyauth, sizeof(proxyauth),
NULL              240 libavformat/http.c                      hostname, sizeof(hostname), &port, NULL, 0, proxy_path);
NULL              243 libavformat/http.c     ff_url_join(buf, sizeof(buf), lower_proto, NULL, hostname, port, NULL);
NULL              334 libavformat/http.c     return ff_http_do_new_request2(h, uri, NULL);
NULL              340 libavformat/http.c     AVDictionary *options = NULL;
NULL              350 libavformat/http.c     av_url_split(proto1, sizeof(proto1), NULL, 0,
NULL              352 libavformat/http.c                  NULL, 0, s->location);
NULL              353 libavformat/http.c     av_url_split(proto2, sizeof(proto2), NULL, 0,
NULL              355 libavformat/http.c                  NULL, 0, uri);
NULL              532 libavformat/http.c     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname), &port,
NULL              533 libavformat/http.c                  NULL, 0, uri);
NULL              536 libavformat/http.c     ff_url_join(lower_url, sizeof(lower_url), lower_proto, NULL, hostname, port,
NULL              537 libavformat/http.c                 NULL);
NULL              602 libavformat/http.c     URLContext *cl = NULL;
NULL              697 libavformat/http.c         s->off = strtoull(p, NULL, 10);
NULL              699 libavformat/http.c             s->filesize = strtoull(slash + 1, NULL, 10);
NULL              789 libavformat/http.c     char *saveptr = NULL;
NULL              809 libavformat/http.c         next_param = NULL;
NULL              825 libavformat/http.c     AVDictionary *new_params = NULL;
NULL              834 libavformat/http.c     cookie_entry = av_dict_get(new_params, "", NULL, AV_DICT_IGNORE_SUFFIX);
NULL              841 libavformat/http.c     if ((e = av_dict_get(new_params, "expires", NULL, 0)) && e->value) {
NULL              853 libavformat/http.c             e2 = av_dict_get(*cookies, cookie_entry->key, NULL, 0);
NULL              855 libavformat/http.c                 AVDictionary *old_params = NULL;
NULL              857 libavformat/http.c                     e2 = av_dict_get(old_params, "expires", NULL, 0);
NULL              887 libavformat/http.c     AVDictionaryEntry *e = NULL;
NULL              895 libavformat/http.c     e = NULL;
NULL             1009 libavformat/http.c             s->filesize = strtoull(p, NULL, 10);
NULL             1042 libavformat/http.c             s->icy_metaint = strtoull(p, NULL, 10);
NULL             1069 libavformat/http.c     char *saveptr = NULL;
NULL             1081 libavformat/http.c     *cookies = NULL;
NULL             1083 libavformat/http.c         AVDictionary *cookie_params = NULL;
NULL             1086 libavformat/http.c         next = NULL;
NULL             1096 libavformat/http.c         cookie_entry = av_dict_get(cookie_params, "", NULL, AV_DICT_IGNORE_SUFFIX);
NULL             1101 libavformat/http.c         if ((e = av_dict_get(cookie_params, "expires", NULL, 0)) && e->value) {
NULL             1110 libavformat/http.c         if ((e = av_dict_get(cookie_params, "domain", NULL, 0)) && e->value) {
NULL             1122 libavformat/http.c         e = av_dict_get(cookie_params, "path", NULL, 0);
NULL             1151 libavformat/http.c     return av_stristart(str, header + 2, NULL) || av_stristr(str, header);
NULL             1224 libavformat/http.c     char *authstr = NULL, *proxyauthstr = NULL;
NULL             1312 libavformat/http.c         char *cookies = NULL;
NULL             1401 libavformat/http.c             s->chunksize = strtoull(line, NULL, 16);
NULL             1724 libavformat/http.c     AVDictionary *options = NULL;
NULL             1758 libavformat/http.c     s->hd = NULL;
NULL             1867 libavformat/http.c     av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
NULL             1869 libavformat/http.c     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
NULL             1874 libavformat/http.c     ff_url_join(lower_url, sizeof(lower_url), "tcp", NULL, hostname, port,
NULL             1875 libavformat/http.c                 NULL);
NULL             1878 libavformat/http.c                                &h->interrupt_callback, NULL,
NULL              163 libavformat/httpauth.c         return NULL;
NULL              166 libavformat/httpauth.c     update_md5_strings(md5ctx, username, ":", state->realm, ":", password, NULL);
NULL              174 libavformat/httpauth.c         update_md5_strings(md5ctx, A1hash, ":", digest->nonce, ":", cnonce, NULL);
NULL              181 libavformat/httpauth.c         return NULL;
NULL              185 libavformat/httpauth.c     update_md5_strings(md5ctx, method, ":", uri, NULL);
NULL              191 libavformat/httpauth.c     update_md5_strings(md5ctx, A1hash, ":", digest->nonce, NULL);
NULL              193 libavformat/httpauth.c         update_md5_strings(md5ctx, ":", nc, ":", cnonce, ":", digest->qop, NULL);
NULL              195 libavformat/httpauth.c     update_md5_strings(md5ctx, ":", A2hash, NULL);
NULL              205 libavformat/httpauth.c         return NULL;
NULL              208 libavformat/httpauth.c         return NULL;
NULL              218 libavformat/httpauth.c         return NULL;
NULL              248 libavformat/httpauth.c     char *authstr = NULL;
NULL              254 libavformat/httpauth.c         return NULL;
NULL              261 libavformat/httpauth.c             return NULL;
NULL              269 libavformat/httpauth.c             return NULL;
NULL              281 libavformat/httpauth.c             return NULL;
NULL               56 libavformat/icecast.c     { "ice_genre", "set stream genre", OFFSET(genre), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               57 libavformat/icecast.c     { "ice_name", "set stream description", OFFSET(name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               58 libavformat/icecast.c     { "ice_description", "set stream description", OFFSET(description), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               59 libavformat/icecast.c     { "ice_url", "set stream website", OFFSET(url), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               61 libavformat/icecast.c     { "user_agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               62 libavformat/icecast.c     { "password", "set password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               63 libavformat/icecast.c     { "content_type", "set content-type, MUST be set if not audio/mpeg", OFFSET(content_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               65 libavformat/icecast.c     { NULL }
NULL               87 libavformat/icecast.c     AVDictionary *opt_dict = NULL;
NULL               91 libavformat/icecast.c     char *headers, *user = NULL;
NULL              107 libavformat/icecast.c         av_bprint_finalize(&bp, NULL);
NULL              127 libavformat/icecast.c     av_url_split(NULL, 0, auth, sizeof(auth), host, sizeof(host),
NULL              167 libavformat/icecast.c     ret = ffurl_open_whitelist(&s->hd, h_url, AVIO_FLAG_READ_WRITE, NULL,
NULL               98 libavformat/icodec.c         st = avformat_new_stream(s, NULL);
NULL              226 libavformat/id3v1.c     char *q, str[512], *first_free_space = NULL;
NULL              239 libavformat/id3v1.c             first_free_space = NULL;
NULL              270 libavformat/id3v2.c             *dst = NULL;
NULL              281 libavformat/id3v2.c             *dst = NULL;
NULL              362 libavformat/id3v2.c     uint8_t *descriptor = NULL; // 'Content descriptor'
NULL              453 libavformat/id3v2.c     ID3v2ExtraMetaGEOB *geob_data = NULL;
NULL              454 libavformat/id3v2.c     ID3v2ExtraMeta *new_extra     = NULL;
NULL              502 libavformat/id3v2.c         geob_data->data     = NULL;
NULL              530 libavformat/id3v2.c     if ((t = av_dict_get(m, tag, NULL, AV_DICT_MATCH_CASE)) &&
NULL              533 libavformat/id3v2.c     return NULL;
NULL              545 libavformat/id3v2.c     av_dict_set(m, "TYER", NULL, 0);
NULL              546 libavformat/id3v2.c     av_dict_set(m, "TYE", NULL, 0);
NULL              552 libavformat/id3v2.c     av_dict_set(m, "TDAT", NULL, 0);
NULL              553 libavformat/id3v2.c     av_dict_set(m, "TDA", NULL, 0);
NULL              560 libavformat/id3v2.c     av_dict_set(m, "TIME", NULL, 0);
NULL              561 libavformat/id3v2.c     av_dict_set(m, "TIM", NULL, 0);
NULL              590 libavformat/id3v2.c     ID3v2ExtraMetaAPIC *apic  = NULL;
NULL              591 libavformat/id3v2.c     ID3v2ExtraMeta *new_extra = NULL;
NULL              681 libavformat/id3v2.c     ID3v2ExtraMeta *new_extra = NULL;
NULL              682 libavformat/id3v2.c     ID3v2ExtraMetaCHAP *chap  = NULL;
NULL              717 libavformat/id3v2.c     ff_metadata_conv(&chap->meta, NULL, ff_id3v2_34_metadata_conv);
NULL              718 libavformat/id3v2.c     ff_metadata_conv(&chap->meta, NULL, ff_id3v2_4_metadata_conv);
NULL              787 libavformat/id3v2.c     { NULL }
NULL              806 libavformat/id3v2.c     return NULL;
NULL              818 libavformat/id3v2.c     const char *reason = NULL;
NULL              821 libavformat/id3v2.c     unsigned char *buffer = NULL;
NULL              823 libavformat/id3v2.c     const ID3v2EMFunc *extra_func = NULL;
NULL              824 libavformat/id3v2.c     unsigned char *uncompressed_buffer = NULL;
NULL              984 libavformat/id3v2.c                 ffio_init_context(&pb_local, buffer, b - buffer, 0, NULL, NULL, NULL,
NULL              985 libavformat/id3v2.c                                   NULL);
NULL             1016 libavformat/id3v2.c                     ffio_init_context(&pb_local, uncompressed_buffer, dlen, 0, NULL, NULL, NULL, NULL);
NULL             1096 libavformat/id3v2.c     ff_metadata_conv(metadata, NULL, ff_id3v2_34_metadata_conv);
NULL             1097 libavformat/id3v2.c     ff_metadata_conv(metadata, NULL, id3v2_2_metadata_conv);
NULL             1098 libavformat/id3v2.c     ff_metadata_conv(metadata, NULL, ff_id3v2_4_metadata_conv);
NULL             1105 libavformat/id3v2.c     id3v2_read_internal(pb, metadata, NULL, magic, extra_meta, 0);
NULL             1127 libavformat/id3v2.c     *extra_meta = NULL;
NULL             1142 libavformat/id3v2.c         if (!(st = avformat_new_stream(s, NULL)))
NULL             1164 libavformat/id3v2.c         apic->buf = NULL;
NULL             1175 libavformat/id3v2.c     ID3v2ExtraMetaCHAP **chapters = NULL;
NULL             1233 libavformat/id3v2.c             if ((key = av_asprintf(ID3v2_PRIV_METADATA_PREFIX "%s", priv->owner)) == NULL) {
NULL              124 libavformat/id3v2enc.c                 avio_w8(dyn_buf, strtol(digits, NULL, 16));
NULL              163 libavformat/id3v2enc.c             return id3v2_put_ttag(id3, pb, t->value, NULL, tag, enc);
NULL              169 libavformat/id3v2enc.c     AVDictionaryEntry *mtag = NULL;
NULL              170 libavformat/id3v2enc.c     AVDictionary *dst = NULL;
NULL              222 libavformat/id3v2enc.c     AVDictionaryEntry *t = NULL;
NULL              225 libavformat/id3v2enc.c     ff_metadata_conv(metadata, ff_id3v2_34_metadata_conv, NULL);
NULL              229 libavformat/id3v2enc.c         ff_metadata_conv(metadata, ff_id3v2_4_metadata_conv, NULL);
NULL              359 libavformat/id3v2enc.c     const char  *mimetype = NULL, *desc = "";
NULL              379 libavformat/id3v2enc.c     e = av_dict_get(st->metadata, "comment", NULL, 0);
NULL              388 libavformat/id3v2enc.c     if ((e = av_dict_get(st->metadata, "title", NULL, 0)))
NULL              195 libavformat/idcin.c     st = avformat_new_stream(s, NULL);
NULL              213 libavformat/idcin.c         st = avformat_new_stream(s, NULL);
NULL              128 libavformat/idroqdec.c                 AVStream *st = avformat_new_stream(s, NULL);
NULL              179 libavformat/idroqdec.c                 AVStream *st = avformat_new_stream(s, NULL);
NULL              131 libavformat/iff.c     uint8_t *buf = ((data_size + 1) == 0) ? NULL : av_malloc(data_size + 1);
NULL              224 libavformat/iff.c         const char * metadata_tag = NULL;
NULL              312 libavformat/iff.c             id3v2_extra_meta = NULL;
NULL              425 libavformat/iff.c     st = avformat_new_stream(s, NULL);
NULL              446 libavformat/iff.c         const char *metadata_tag = NULL;
NULL              498 libavformat/iff.c                 int ret = read_dst_frame(s, NULL);
NULL              137 libavformat/ifv.c     st = avformat_new_stream(s, NULL);
NULL              151 libavformat/ifv.c         st = avformat_new_stream(s, NULL);
NULL              194 libavformat/ifv.c     ev = ea = e_next = NULL;
NULL               73 libavformat/ilbc.c     st = avformat_new_stream(s, NULL);
NULL               85 libavformat/img2.c     { AV_CODEC_ID_NONE,       NULL       }
NULL              191 libavformat/img2dec.c     st = avformat_new_stream(s1, NULL);
NULL              264 libavformat/img2dec.c             gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
NULL              284 libavformat/img2dec.c             gerr = glob(s->path, GLOB_NOCHECK|GLOB_BRACE|GLOB_NOMAGIC, NULL, &s->globstate);
NULL              327 libavformat/img2dec.c             uint8_t *probe_buffer = av_realloc(NULL, probe_buffer_size + AVPROBE_PADDING_SIZE);
NULL              328 libavformat/img2dec.c             const AVInputFormat *fmt = NULL;
NULL              329 libavformat/img2dec.c             void *fmt_iter = NULL;
NULL              383 libavformat/img2dec.c     AVDictionary *d = NULL;
NULL              384 libavformat/img2dec.c     char *packed_metadata = NULL;
NULL              409 libavformat/img2dec.c     AVIOContext *f[3]     = { NULL };
NULL              437 libavformat/img2dec.c             } else if (s1->io_open(s1, &f[i], filename, AVIO_FLAG_READ, NULL) < 0) {
NULL              605 libavformat/img2dec.c     { "pixel_format", "set video pixel format",  OFFSET(pixel_format), AV_OPT_TYPE_STRING,     {.str = NULL}, 0, 0,       DEC }, \
NULL              606 libavformat/img2dec.c     { "video_size",   "set video size",          OFFSET(width),        AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0,       DEC }, \
NULL              608 libavformat/img2dec.c     { NULL },
NULL               82 libavformat/img2enc.c     AVFormatContext *fmt = NULL;
NULL               86 libavformat/img2enc.c     ret = avformat_alloc_output_context2(&fmt, NULL, img->muxer, s->url);
NULL               89 libavformat/img2enc.c     st = avformat_new_stream(fmt, NULL);
NULL              104 libavformat/img2enc.c         (ret = avformat_write_header(fmt, NULL))               < 0 ||
NULL              137 libavformat/img2enc.c     AVDictionary *options = NULL;
NULL              249 libavformat/img2enc.c     { NULL },
NULL               83 libavformat/ip.c         res = NULL;
NULL               98 libavformat/ip.c     struct addrinfo *ai = NULL;
NULL              251 libavformat/ipmovie.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              681 libavformat/ipmovie.c     st = avformat_new_stream(s, NULL);
NULL               85 libavformat/ircamdec.c     st = avformat_new_stream(s, NULL);
NULL              107 libavformat/iss.c     st = avformat_new_stream(s, NULL);
NULL               44 libavformat/iv8.c     st = avformat_new_stream(s, NULL);
NULL               44 libavformat/ivfdec.c     st = avformat_new_stream(s, NULL);
NULL               47 libavformat/ivfenc.c         int ret = ff_stream_add_bitstream_filter(s->streams[0], "vp9_superframe", NULL);
NULL              125 libavformat/jacosubdec.c     return NULL;
NULL              167 libavformat/jacosubdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              226 libavformat/jacosubdec.c             jacosub->timeres = strtol(p, NULL, 10);
NULL               83 libavformat/jvdec.c     ast = avformat_new_stream(s, NULL);
NULL               84 libavformat/jvdec.c     vst = avformat_new_stream(s, NULL);
NULL               55 libavformat/kvag.c     if (!(st = avformat_new_stream(s, NULL)))
NULL               46 libavformat/latmenc.c     {NULL},
NULL              242 libavformat/latmenc.c             ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
NULL               55 libavformat/libamqp.c     { NULL }
NULL               63 libavformat/libamqp.c     const char *user, *password = NULL;
NULL               74 libavformat/libamqp.c     av_url_split(NULL, 0, credentials, sizeof(credentials),
NULL               75 libavformat/libamqp.c                  hostname, sizeof(hostname), &port, NULL, 0, uri);
NULL              253 libavformat/libamqp.c     broker_reply = amqp_consume_message(s->conn, &envelope, NULL, 0);
NULL               49 libavformat/libgme.c     {NULL}
NULL              123 libavformat/libgme.c     st = avformat_new_stream(s, NULL);
NULL               68 libavformat/libmodplug.c     NULL
NULL               94 libavformat/libmodplug.c     {"video_stream_expr", "Color formula",                                  OFFSET(color_eval),     AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, D},
NULL               99 libavformat/libmodplug.c     {NULL},
NULL              184 libavformat/libmodplug.c                               NULL, NULL, NULL, NULL, 0, s);
NULL              223 libavformat/libmodplug.c     st = avformat_new_stream(s, NULL);
NULL              237 libavformat/libmodplug.c         AVStream *vst = avformat_new_stream(s, NULL);
NULL              311 libavformat/libmodplug.c                         color = av_expr_eval(modplug->expr, var_values, NULL);
NULL               59 libavformat/libopenmpt.c     { NULL }
NULL               65 libavformat/libopenmpt.c     if (strstr(message, "ERROR") != NULL) {
NULL              105 libavformat/libopenmpt.c     openmpt->module = openmpt_module_create_from_memory2(buf, size, openmpt_logfunc, s, NULL, NULL, &error, NULL, NULL);
NULL              116 libavformat/libopenmpt.c     openmpt->module = openmpt_module_create_from_memory(buf, size, openmpt_logfunc, s, NULL);
NULL              150 libavformat/libopenmpt.c     st = avformat_new_stream(s, NULL);
NULL              153 libavformat/libopenmpt.c         openmpt->module = NULL;
NULL              210 libavformat/libopenmpt.c     openmpt->module = NULL;
NULL              243 libavformat/libopenmpt.c                            &openmpt_logfunc, NULL, NULL, NULL, NULL, NULL);
NULL               69 libavformat/librtmp.c     av_vlog(NULL, level, fmt, args);
NULL               70 libavformat/librtmp.c     av_log(NULL, level, "\n");
NULL              234 libavformat/librtmp.c     if (!RTMP_Connect(r, NULL) || !RTMP_ConnectStream(r, 0)) {
NULL              322 libavformat/librtmp.c     {"rtmp_app", "Name of application to connect to on the RTMP server", OFFSET(app), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL              324 libavformat/librtmp.c     {"rtmp_conn", "Append arbitrary AMF data to the Connect message", OFFSET(conn), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL              325 libavformat/librtmp.c     {"rtmp_flashver", "Version of the Flash plugin used to run the SWF player.", OFFSET(flashver), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL              330 libavformat/librtmp.c     {"rtmp_pageurl", "URL of the web page in which the media was embedded. By default no value will be sent.", OFFSET(pageurl), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC},
NULL              331 libavformat/librtmp.c     {"rtmp_playpath", "Stream identifier to play or to publish", OFFSET(playpath), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL              332 libavformat/librtmp.c     {"rtmp_subscribe", "Name of live stream to subscribe to. Defaults to rtmp_playpath.", OFFSET(subscribe), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC},
NULL              333 libavformat/librtmp.c     {"rtmp_swfurl", "URL of the SWF player. By default no value will be sent", OFFSET(swfurl), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL              334 libavformat/librtmp.c     {"rtmp_swfverify", "URL to player swf file, compute hash/size automatically. (unimplemented)", OFFSET(swfverify), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC},
NULL              335 libavformat/librtmp.c     {"rtmp_tcurl", "URL of the target stream. Defaults to proto://host[:port]/app.", OFFSET(tcurl), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL              339 libavformat/librtmp.c     { NULL },
NULL               73 libavformat/libsmbclient.c     if (smbc_init(NULL, 0) < 0) {
NULL               90 libavformat/libsmbclient.c         libsmbc->ctx = NULL;
NULL              211 libavformat/libsmbclient.c     struct smbc_dirent *dirent = NULL;
NULL              212 libavformat/libsmbclient.c     char *url = NULL;
NULL              358 libavformat/libsmbclient.c     {NULL}
NULL              105 libavformat/libsrt.c     { "ts_size",        NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_LIVE_DEFAULT_PAYLOAD_SIZE }, INT_MIN, INT_MAX, .flags = D|E, "payload_size" },
NULL              106 libavformat/libsrt.c     { "max_size",       NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_LIVE_MAX_PAYLOAD_SIZE },     INT_MIN, INT_MAX, .flags = D|E, "payload_size" },
NULL              109 libavformat/libsrt.c     { "passphrase",     "Crypto PBKDF2 Passphrase size[0,10..64] 0:disable crypto",             OFFSET(passphrase),       AV_OPT_TYPE_STRING,   { .str = NULL },              .flags = D|E },
NULL              129 libavformat/libsrt.c     { "caller",         NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_MODE_CALLER },     INT_MIN, INT_MAX, .flags = D|E, "mode" },
NULL              130 libavformat/libsrt.c     { "listener",       NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_MODE_LISTENER },   INT_MIN, INT_MAX, .flags = D|E, "mode" },
NULL              131 libavformat/libsrt.c     { "rendezvous",     NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_MODE_RENDEZVOUS }, INT_MIN, INT_MAX, .flags = D|E, "mode" },
NULL              136 libavformat/libsrt.c     { "streamid",       "A string of up to 512 characters that an Initiator can pass to a Responder",  OFFSET(streamid),  AV_OPT_TYPE_STRING,   { .str = NULL },              .flags = D|E },
NULL              137 libavformat/libsrt.c     { "smoother",       "The type of Smoother used for the transmission for that socket",       OFFSET(smoother),         AV_OPT_TYPE_STRING,   { .str = NULL },              .flags = D|E },
NULL              140 libavformat/libsrt.c     { "live",           NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRTT_LIVE }, INT_MIN, INT_MAX, .flags = D|E, "transtype" },
NULL              141 libavformat/libsrt.c     { "file",           NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRTT_FILE }, INT_MIN, INT_MAX, .flags = D|E, "transtype" },
NULL              143 libavformat/libsrt.c     { NULL }
NULL              181 libavformat/libsrt.c         if (srt_getlasterror(NULL) == SRT_ETIMEOUT)
NULL              234 libavformat/libsrt.c     ret = srt_accept(fd, NULL, NULL);
NULL              372 libavformat/libsrt.c     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
NULL              383 libavformat/libsrt.c             s->rw_timeout = strtol(buf, NULL, 10);
NULL              386 libavformat/libsrt.c             s->listen_timeout = strtol(buf, NULL, 10);
NULL              397 libavformat/libsrt.c     ret = getaddrinfo(hostname[0] ? hostname : NULL, portstr, &hints, &ai);
NULL              501 libavformat/libsrt.c             s->maxbw = strtoll(buf, NULL, 0);
NULL              504 libavformat/libsrt.c             s->pbkeylen = strtol(buf, NULL, 10);
NULL              512 libavformat/libsrt.c             s->enforced_encryption = strtol(buf, NULL, 10);
NULL              515 libavformat/libsrt.c             s->kmrefreshrate = strtol(buf, NULL, 10);
NULL              518 libavformat/libsrt.c             s->kmpreannounce = strtol(buf, NULL, 10);
NULL              522 libavformat/libsrt.c             s->mss = strtol(buf, NULL, 10);
NULL              525 libavformat/libsrt.c             s->ffs = strtol(buf, NULL, 10);
NULL              528 libavformat/libsrt.c             s->ipttl = strtol(buf, NULL, 10);
NULL              531 libavformat/libsrt.c             s->iptos = strtol(buf, NULL, 10);
NULL              534 libavformat/libsrt.c             s->inputbw = strtoll(buf, NULL, 10);
NULL              537 libavformat/libsrt.c             s->oheadbw = strtoll(buf, NULL, 10);
NULL              540 libavformat/libsrt.c             s->latency = strtol(buf, NULL, 10);
NULL              543 libavformat/libsrt.c             s->latency = strtol(buf, NULL, 10);
NULL              546 libavformat/libsrt.c             s->rcvlatency = strtol(buf, NULL, 10);
NULL              549 libavformat/libsrt.c             s->peerlatency = strtol(buf, NULL, 10);
NULL              552 libavformat/libsrt.c             s->tlpktdrop = strtol(buf, NULL, 10);
NULL              555 libavformat/libsrt.c             s->nakreport = strtol(buf, NULL, 10);
NULL              558 libavformat/libsrt.c             s->connect_timeout = strtol(buf, NULL, 10);
NULL              562 libavformat/libsrt.c             s->payload_size = strtol(buf, NULL, 10);
NULL              576 libavformat/libsrt.c             s->sndbuf = strtol(buf, NULL, 10);
NULL              579 libavformat/libsrt.c             s->rcvbuf = strtol(buf, NULL, 10);
NULL              582 libavformat/libsrt.c             s->lossmaxttl = strtol(buf, NULL, 10);
NULL              585 libavformat/libsrt.c             s->minversion = strtol(buf, NULL, 0);
NULL              604 libavformat/libsrt.c             s->messageapi = strtol(buf, NULL, 10);
NULL              617 libavformat/libsrt.c             s->linger = strtol(buf, NULL, 10);
NULL               60 libavformat/libssh.c     if (ssh_options_parse_config(libssh->session, NULL) < 0) {
NULL               80 libavformat/libssh.c     if (ssh_userauth_none(libssh->session, NULL) == SSH_AUTH_SUCCESS)
NULL               83 libavformat/libssh.c     auth_methods = ssh_userauth_list(libssh->session, NULL);
NULL               92 libavformat/libssh.c                 if (ssh_userauth_pubkey(libssh->session, NULL, pub_key, priv_key) == SSH_AUTH_SUCCESS) {
NULL              107 libavformat/libssh.c         if (ssh_userauth_password(libssh->session, NULL, password) == SSH_AUTH_SUCCESS) {
NULL              178 libavformat/libssh.c         libssh->file = NULL;
NULL              182 libavformat/libssh.c         libssh->sftp = NULL;
NULL              187 libavformat/libssh.c         libssh->session = NULL;
NULL              197 libavformat/libssh.c     const char *user = NULL, *pass = NULL;
NULL              198 libavformat/libssh.c     char *end = NULL;
NULL              338 libavformat/libssh.c     sftp_attributes attr = NULL;
NULL              390 libavformat/libssh.c     libssh->dir = NULL;
NULL              399 libavformat/libssh.c     sftp_attributes attr = NULL;
NULL              440 libavformat/libssh.c     av_url_split(NULL, 0,
NULL              447 libavformat/libssh.c     av_url_split(NULL, 0,
NULL              481 libavformat/libssh.c     {"private_key", "set path to private key", OFFSET(priv_key), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D|E },
NULL              482 libavformat/libssh.c     {NULL}
NULL               44 libavformat/libzmq.c     { NULL }
NULL               66 libavformat/lmlm4.c     if (!(st = avformat_new_stream(s, NULL)))
NULL               73 libavformat/lmlm4.c     if (!(st = avformat_new_stream(s, NULL)))
NULL               72 libavformat/loasdec.c     st = avformat_new_stream(s, NULL);
NULL              162 libavformat/lrcdec.c     st = avformat_new_stream(s, NULL);
NULL              215 libavformat/lrcdec.c     ff_metadata_conv_ctx(s, NULL, ff_lrc_metadata_conv);
NULL              216 libavformat/lrcdec.c     av_bprint_finalize(&line, NULL);
NULL               56 libavformat/lrcenc.c     ff_metadata_conv_ctx(s, ff_lrc_metadata_conv, NULL);
NULL               64 libavformat/lrcenc.c         av_dict_set(&s->metadata, "ve", NULL, 0);
NULL               66 libavformat/lrcenc.c     for(metadata_item = NULL;
NULL              250 libavformat/lxfdec.c     if (!(st = avformat_new_stream(s, NULL)))
NULL              277 libavformat/lxfdec.c         if (!(st = avformat_new_stream(s, NULL)))
NULL             1016 libavformat/matroskadec.c         bin->data = NULL;
NULL             1145 libavformat/matroskadec.c         return NULL;
NULL             1149 libavformat/matroskadec.c         return NULL;
NULL             1163 libavformat/matroskadec.c         return NULL;
NULL             1194 libavformat/matroskadec.c     MatroskaLevel *level = matroska->num_levels ? &matroska->levels[matroska->num_levels - 1] : NULL;
NULL             1578 libavformat/matroskadec.c     return NULL;
NULL             1587 libavformat/matroskadec.c     uint8_t *pkt_data = NULL;
NULL             1603 libavformat/matroskadec.c             av_log(NULL, AV_LOG_ERROR, "Compression size but no data in headerstrip\n");
NULL             1730 libavformat/matroskadec.c                            strcmp(tags[i].lang, "und") ? tags[i].lang : NULL;
NULL             1753 libavformat/matroskadec.c     ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv);
NULL             1770 libavformat/matroskadec.c                                          &attachment[j].stream->metadata, NULL);
NULL             1787 libavformat/matroskadec.c                                          &chapter[j].chapter->metadata, NULL);
NULL             1804 libavformat/matroskadec.c                                          &track[j].stream->metadata, NULL);
NULL             2005 libavformat/matroskadec.c             AVDictionary *dict = NULL;
NULL             2009 libavformat/matroskadec.c             chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0);
NULL             2011 libavformat/matroskadec.c                 uint64_t mask = strtol(chmask->value, NULL, 0);
NULL             2303 libavformat/matroskadec.c         uint8_t *extradata = NULL;
NULL             2308 libavformat/matroskadec.c         char* key_id_base64 = NULL;
NULL             2363 libavformat/matroskadec.c                     if (key_id_base64 == NULL)
NULL             2394 libavformat/matroskadec.c                     track->codec_priv.data = NULL;
NULL             2405 libavformat/matroskadec.c                                                                  NULL, NULL, 0);
NULL             2429 libavformat/matroskadec.c         st = track->stream = avformat_new_stream(s, NULL);
NULL             2459 libavformat/matroskadec.c                               0, NULL, NULL, NULL, NULL);
NULL             2505 libavformat/matroskadec.c                                   0, NULL, NULL, NULL, NULL);
NULL             2613 libavformat/matroskadec.c                               0, NULL, NULL, NULL, NULL);
NULL             2915 libavformat/matroskadec.c             AVStream *st = avformat_new_stream(s, NULL);
NULL             2942 libavformat/matroskadec.c                 attachments[j].bin.buf = NULL;
NULL             3200 libavformat/matroskadec.c     uint8_t *dst = NULL;
NULL             3438 libavformat/matroskadec.c         buf = NULL;
NULL             3451 libavformat/matroskadec.c         buf = NULL;
NULL             3460 libavformat/matroskadec.c                                     NULL, NULL, 0);
NULL             3551 libavformat/matroskadec.c     ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL);
NULL             3644 libavformat/matroskadec.c             buf = NULL;
NULL             3691 libavformat/matroskadec.c         res = ebml_parse(matroska, matroska_segment, NULL);
NULL             3710 libavformat/matroskadec.c                                     block->additional.data : NULL;
NULL             3762 libavformat/matroskadec.c     MatroskaTrack *tracks = NULL;
NULL             4241 libavformat/matroskadec.c     { NULL },
NULL              492 libavformat/matroskaenc.c     AVIOContext *dyn_cp = NULL;
NULL              656 libavformat/matroskaenc.c         AVDictionary *dict = NULL;
NULL              663 libavformat/matroskaenc.c         len = ff_vorbiscomment_length(dict, vendor, NULL, 0);
NULL              669 libavformat/matroskaenc.c         ff_vorbiscomment_write(pb, dict, vendor, NULL, 0);
NULL              842 libavformat/matroskaenc.c     ffio_init_context(dyn_cp, colour, sizeof(colour), 1, NULL, NULL, NULL, NULL);
NULL              871 libavformat/matroskaenc.c                                         NULL);
NULL              879 libavformat/matroskaenc.c                                         NULL);
NULL              924 libavformat/matroskaenc.c                                                             NULL);
NULL             1032 libavformat/matroskaenc.c     if ((tag = av_dict_get(st->metadata, "stereo_mode", NULL, 0)) ||
NULL             1033 libavformat/matroskaenc.c         (tag = av_dict_get( s->metadata, "stereo_mode", NULL, 0))) {
NULL             1051 libavformat/matroskaenc.c                                                         NULL);
NULL             1144 libavformat/matroskaenc.c     if ((tag = av_dict_get(st->metadata, "title", NULL, 0)))
NULL             1146 libavformat/matroskaenc.c     tag = av_dict_get(st->metadata, "language", NULL, 0);
NULL             1257 libavformat/matroskaenc.c         if (((tag = av_dict_get(st->metadata, "alpha_mode", NULL, 0)) && atoi(tag->value)) ||
NULL             1258 libavformat/matroskaenc.c             ((tag = av_dict_get( s->metadata, "alpha_mode", NULL, 0)) && atoi(tag->value)) ||
NULL             1438 libavformat/matroskaenc.c     const uint8_t *lang = NULL;
NULL             1506 libavformat/matroskaenc.c     const AVDictionaryEntry *t = NULL;
NULL             1530 libavformat/matroskaenc.c     const AVDictionaryEntry *t = NULL;
NULL             1542 libavformat/matroskaenc.c     ebml_master tag, *tagp = IS_SEEKABLE(s->pb, mkv) ? &tag : NULL;
NULL             1547 libavformat/matroskaenc.c     ff_metadata_conv_ctx(s, ff_mkv_metadata_conv, NULL);
NULL             1550 libavformat/matroskaenc.c         ret = mkv_write_tag(mkv, s->metadata, &mkv->tags.bc, NULL, 0, 0);
NULL             1598 libavformat/matroskaenc.c             ret = mkv_write_tag(mkv, st->metadata, &mkv->tags.bc, NULL,
NULL             1615 libavformat/matroskaenc.c     AVIOContext *dyn_cp = NULL, *dyn_tags = NULL, **tags, *pb = s->pb;
NULL             1641 libavformat/matroskaenc.c         tags = NULL;
NULL             1662 libavformat/matroskaenc.c         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
NULL             1671 libavformat/matroskaenc.c             ret = mkv_write_tag(mkv, c->metadata, tags, NULL,
NULL             1703 libavformat/matroskaenc.c     if (t = av_dict_get(st->metadata, "mimetype", NULL, 0))
NULL             1713 libavformat/matroskaenc.c     return NULL;
NULL             1719 libavformat/matroskaenc.c     AVIOContext *dyn_cp = NULL, *pb = s->pb;
NULL             1741 libavformat/matroskaenc.c         if (t = av_dict_get(st->metadata, "title", NULL, 0))
NULL             1743 libavformat/matroskaenc.c         if (!(t = av_dict_get(st->metadata, "filename", NULL, 0))) {
NULL             1763 libavformat/matroskaenc.c                                                     NULL, 0);
NULL             1774 libavformat/matroskaenc.c         duration = av_dict_get(s->streams[i]->metadata, "DURATION", NULL, 0);
NULL             1794 libavformat/matroskaenc.c         av_dict_get(s->metadata, "stereo_mode", NULL, 0) ||
NULL             1795 libavformat/matroskaenc.c         av_dict_get(s->metadata, "alpha_mode", NULL, 0))
NULL             1800 libavformat/matroskaenc.c             av_dict_get(s->streams[i]->metadata, "stereo_mode", NULL, 0) ||
NULL             1801 libavformat/matroskaenc.c             av_dict_get(s->streams[i]->metadata, "alpha_mode", NULL, 0))
NULL             1829 libavformat/matroskaenc.c     if ((tag = av_dict_get(s->metadata, "title", NULL, 0)))
NULL             1833 libavformat/matroskaenc.c         if ((tag = av_dict_get(s->metadata, "encoding_tool", NULL, 0)))
NULL             2009 libavformat/matroskaenc.c     uint8_t *data = NULL, *side_data = NULL;
NULL             2034 libavformat/matroskaenc.c         err = ff_hevc_annexb2mp4_buf(pkt->data, &data, &size, 0, NULL);
NULL             2489 libavformat/matroskaenc.c         AVIOContext *cues = NULL;
NULL             2744 libavformat/matroskaenc.c             ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
NULL             2746 libavformat/matroskaenc.c         ret = ff_stream_add_bitstream_filter(st, "vp9_superframe", NULL);
NULL             2797 libavformat/matroskaenc.c     { NULL },
NULL               73 libavformat/md5proto.c                                    &h->interrupt_callback, NULL,
NULL               32 libavformat/metadata.c     AVDictionaryEntry *mtag = NULL;
NULL               33 libavformat/metadata.c     AVDictionary *dst = NULL;
NULL               83 libavformat/microdvddec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              196 libavformat/microdvddec.c     { NULL }
NULL              257 libavformat/mlvdec.c     AVStream *vst = NULL, *ast = NULL;
NULL              283 libavformat/mlvdec.c         vst = avformat_new_stream(avctx, NULL);
NULL              314 libavformat/mlvdec.c         ast = avformat_new_stream(avctx, NULL);
NULL              354 libavformat/mlvdec.c             if (avctx->io_open(avctx, &mlv->pb[i], filename, AVIO_FLAG_READ, NULL) < 0)
NULL              109 libavformat/mm.c     st = avformat_new_stream(s, NULL);
NULL              121 libavformat/mm.c         st = avformat_new_stream(s, NULL);
NULL              257 libavformat/mmf.c     st = avformat_new_stream(s, NULL);
NULL               84 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Read data packet header failed!\n");
NULL              100 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Strange chunk type %d\n", chunk_type);
NULL              106 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Read ext header failed!\n");
NULL              120 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR,
NULL              126 libavformat/mmsh.c     av_log(NULL, AV_LOG_TRACE, "Data packet len = %d\n", len);
NULL              128 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Read data packet failed!\n");
NULL              132 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR,
NULL              160 libavformat/mmsh.c                         av_log(NULL, AV_LOG_TRACE, "Header len changed from %d to %d\n",
NULL              172 libavformat/mmsh.c                 av_log(NULL, AV_LOG_ERROR,
NULL              179 libavformat/mmsh.c                 av_log(NULL, AV_LOG_ERROR,
NULL              195 libavformat/mmsh.c                     av_log(NULL, AV_LOG_ERROR,
NULL              202 libavformat/mmsh.c                     av_log(NULL, AV_LOG_ERROR, "Read other chunk type data failed!\n");
NULL              205 libavformat/mmsh.c                     av_log(NULL, AV_LOG_TRACE, "Skip chunk type %d \n", chunk_type);
NULL              217 libavformat/mmsh.c     char *stream_selection = NULL;
NULL              226 libavformat/mmsh.c     av_url_split(NULL, 0, NULL, 0,
NULL              230 libavformat/mmsh.c     ff_url_join(httpname, sizeof(httpname), "http", NULL, host, port, "%s", path);
NULL              256 libavformat/mmsh.c     err = ffurl_connect(mms->mms_hd, NULL);
NULL              262 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Get http header data failed!\n");
NULL              298 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Build play request failed!\n");
NULL              301 libavformat/mmsh.c     av_log(NULL, AV_LOG_TRACE, "out_buffer is %s", headers);
NULL              304 libavformat/mmsh.c     err = ffurl_connect(mms->mms_hd, NULL);
NULL              311 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Get http header data failed!\n");
NULL              315 libavformat/mmsh.c     av_log(NULL, AV_LOG_TRACE, "Connection successfully open\n");
NULL              320 libavformat/mmsh.c     av_log(NULL, AV_LOG_TRACE, "Connection failed with error %d\n", err);
NULL              339 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Stream ended!\n");
NULL              344 libavformat/mmsh.c             av_log(NULL, AV_LOG_ERROR,"Stream changed! Failed to get new header!\n");
NULL              351 libavformat/mmsh.c         av_log(NULL, AV_LOG_ERROR, "Recv other type packet %d\n", chunk_type);
NULL              161 libavformat/mmst.c             sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL);
NULL              387 libavformat/mmst.c             av_log(NULL, AV_LOG_TRACE, "Send Packet error before expecting recv packet %d\n", expect_type);
NULL              393 libavformat/mmst.c         av_log(NULL, AV_LOG_ERROR,
NULL              522 libavformat/mmst.c     av_url_split(NULL, 0, NULL, 0,
NULL              530 libavformat/mmst.c     ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL);
NULL              532 libavformat/mmst.c                                &h->interrupt_callback, NULL,
NULL              554 libavformat/mmst.c     err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_HEADER);
NULL              608 libavformat/mmst.c             int err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_MEDIA);
NULL              200 libavformat/mov.c     st = avformat_new_stream(c->fc, NULL);
NULL              295 libavformat/mov.c         avpriv_new_chapter(c->fc, i, av_make_q(1, 1000), moment_time, AV_NOPTS_VALUE, NULL);
NULL              304 libavformat/mov.c     char *str = NULL;
NULL              305 libavformat/mov.c     const char *key = NULL;
NULL              308 libavformat/mov.c     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
NULL              863 libavformat/mov.c     AVStream *st = NULL;
NULL              864 libavformat/mov.c     uint8_t *buf = NULL;
NULL             1168 libavformat/mov.c         return NULL;
NULL             1175 libavformat/mov.c     return NULL;
NULL             1204 libavformat/mov.c         return NULL;
NULL             1211 libavformat/mov.c     return NULL;
NULL             1325 libavformat/mov.c     frag_stream_info = av_realloc_array(NULL, c->fc->nb_streams,
NULL             1343 libavformat/mov.c         frag_stream_info[i].encryption_index = NULL;
NULL             2136 libavformat/mov.c     AVDictionaryEntry *compatible_brands = av_dict_get(c->fc->metadata, "compatible_brands", NULL, AV_DICT_MATCH_CASE);
NULL             3051 libavformat/mov.c     sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size, entries * sizeof(*sc->ctts_data));
NULL             3479 libavformat/mov.c     const AVIndexEntry *current = NULL;
NULL             3499 libavformat/mov.c     int64_t* frame_duration_buffer = NULL;
NULL             3522 libavformat/mov.c     st->index_entries = NULL;
NULL             3527 libavformat/mov.c     msc->ctts_data = NULL;
NULL             3865 libavformat/mov.c             sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size,
NULL             4115 libavformat/mov.c     av_url_split(src_proto, sizeof(src_proto), src_auth, sizeof(src_auth), src_host, sizeof(src_host), &src_port, NULL, 0, src);
NULL             4116 libavformat/mov.c     av_url_split(ref_proto, sizeof(ref_proto), ref_auth, sizeof(ref_auth), ref_host, sizeof(ref_host), &ref_port, NULL, 0, ref);
NULL             4188 libavformat/mov.c             if (!c->fc->io_open(c->fc, pb, filename, AVIO_FLAG_READ, NULL))
NULL             4194 libavformat/mov.c         if (!c->fc->io_open(c->fc, pb, ref->path, AVIO_FLAG_READ, NULL))
NULL             4222 libavformat/mov.c     st = avformat_new_stream(c->fc, NULL);
NULL             4400 libavformat/mov.c     uint8_t *key = NULL, *val = NULL, *mean = NULL;
NULL             4464 libavformat/mov.c             key = val = NULL;
NULL             4625 libavformat/mov.c     MOVTrackExt *trex = NULL;
NULL             4716 libavformat/mov.c     AVStream *st = NULL;
NULL             4754 libavformat/mov.c     AVStream *st = NULL;
NULL             5040 libavformat/mov.c     AVStream *st = NULL;
NULL             5041 libavformat/mov.c     AVStream *ref_st = NULL;
NULL             5042 libavformat/mov.c     MOVStreamContext *sc, *ref_sc = NULL;
NULL             5116 libavformat/mov.c             for (j = 0; ref_st == NULL && j < item->nb_stream_info; j++) {
NULL             5200 libavformat/mov.c     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
NULL             5735 libavformat/mov.c             sc->spherical->yaw = strtol(val, NULL, 10) * (1 << 16);
NULL             5738 libavformat/mov.c             sc->spherical->pitch = strtol(val, NULL, 10) * (1 << 16);
NULL             5741 libavformat/mov.c             sc->spherical->roll = strtol(val, NULL, 10) * (1 << 16);
NULL             6001 libavformat/mov.c             *sample = NULL;
NULL             6012 libavformat/mov.c             *sample = NULL;
NULL             6024 libavformat/mov.c             *sample = NULL;
NULL             6157 libavformat/mov.c     uint8_t *buffer = NULL;
NULL             6662 libavformat/mov.c     encryption_index = NULL;
NULL             6952 libavformat/mov.c { 0, NULL }
NULL             6970 libavformat/mov.c         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
NULL             7144 libavformat/mov.c                 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
NULL             7171 libavformat/mov.c         st = NULL;
NULL             7364 libavformat/mov.c         sc->pb = NULL;
NULL             7395 libavformat/mov.c     mov->dv_fctx = NULL;
NULL             7447 libavformat/mov.c             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
NULL             7619 libavformat/mov.c             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
NULL             7714 libavformat/mov.c                 sc->display_matrix = NULL;
NULL             7723 libavformat/mov.c                 sc->stereo3d = NULL;
NULL             7732 libavformat/mov.c                 sc->spherical = NULL;
NULL             7741 libavformat/mov.c                 sc->mastering = NULL;
NULL             7750 libavformat/mov.c                 sc->coll = NULL;
NULL             7769 libavformat/mov.c     AVIndexEntry *sample = NULL;
NULL             7864 libavformat/mov.c     AVStream *st = NULL;
NULL             8171 libavformat/mov.c     { NULL },
NULL              451 libavformat/mov_chan.c     { AV_CODEC_ID_NONE,    NULL                    },
NULL              500 libavformat/mov_chan.c     const enum MovChannelLayoutTag *layouts = NULL;
NULL               35 libavformat/mov_esds.c         ff_mp4_parse_es_descr(pb, NULL);
NULL               96 libavformat/movenc.c     { "brand",    "Override major brand", offsetof(MOVMuxContext, major_brand),   AV_OPT_TYPE_STRING, {.str = NULL}, .flags = AV_OPT_FLAG_ENCODING_PARAM },
NULL              101 libavformat/movenc.c     { "encryption_scheme",    "Configures the encryption scheme, allowed values are none, cenc-aes-ctr", offsetof(MOVMuxContext, encryption_scheme_str),   AV_OPT_TYPE_STRING, {.str = NULL}, .flags = AV_OPT_FLAG_ENCODING_PARAM },
NULL              107 libavformat/movenc.c     { "wallclock", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = MOV_PRFT_SRC_WALLCLOCK}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM, "prft"},
NULL              108 libavformat/movenc.c     { "pts", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = MOV_PRFT_SRC_PTS}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM, "prft"},
NULL              110 libavformat/movenc.c     { NULL },
NULL              402 libavformat/movenc.c     AC3HeaderInfo *hdr = NULL;
NULL              673 libavformat/movenc.c                                                       NULL);
NULL              890 libavformat/movenc.c         av_log(NULL, AV_LOG_WARNING,
NULL             1275 libavformat/movenc.c             av_log(NULL, AV_LOG_WARNING, "Could not locate DNxHD bit stream in vos_data\n");
NULL             1279 libavformat/movenc.c         av_log(NULL, AV_LOG_WARNING, "Could not locate DNxHD bit stream, vos_data too small\n");
NULL             1920 libavformat/movenc.c             av_log(NULL, AV_LOG_INFO, "no ICC profile found, will write nclx/nclc colour info instead\n");
NULL             1952 libavformat/movenc.c     side_data = av_stream_get_side_data(track->st, AV_PKT_DATA_CONTENT_LIGHT_LEVEL, NULL);
NULL             1954 libavformat/movenc.c         av_log(NULL, AV_LOG_VERBOSE, "Not writing 'clli' atom. No content light level info.\n");
NULL             1978 libavformat/movenc.c     side_data = av_stream_get_side_data(track->st, AV_PKT_DATA_MASTERING_DISPLAY_METADATA, NULL);
NULL             1981 libavformat/movenc.c         av_log(NULL, AV_LOG_VERBOSE, "Not writing 'mdcv' atom. Missing mastering metadata.\n");
NULL             2008 libavformat/movenc.c         (encoder = av_dict_get(track->st->metadata, "encoder", NULL, 0))) {
NULL             2013 libavformat/movenc.c         int rate = defined_frame_rate(NULL, st);
NULL             2179 libavformat/movenc.c         AVStereo3D* stereo_3d = (AVStereo3D*) av_stream_get_side_data(track->st, AV_PKT_DATA_STEREO3D, NULL);
NULL             2180 libavformat/movenc.c         AVSphericalMapping* spherical_mapping = (AVSphericalMapping*)av_stream_get_side_data(track->st, AV_PKT_DATA_SPHERICAL, NULL);
NULL             2182 libavformat/movenc.c                                                  av_stream_get_side_data(track->st, AV_PKT_DATA_DOVI_CONF, NULL);;
NULL             2238 libavformat/movenc.c         av_log(NULL, AV_LOG_ERROR, "reel_name length %"PRIu64" is too large\n", str_size);
NULL             2257 libavformat/movenc.c     AVDictionaryEntry *t = NULL;
NULL             2266 libavformat/movenc.c         av_log(NULL, AV_LOG_ERROR, "avg_frame_rate not set for tmcd track.\n");
NULL             2275 libavformat/movenc.c         av_log(NULL, AV_LOG_ERROR, "fps %d is too large\n", nb_frames);
NULL             2290 libavformat/movenc.c     t = av_dict_get(track->st->metadata, "reel_name", NULL, 0);
NULL             2389 libavformat/movenc.c     MOVStts *stts_entries = NULL;
NULL             2455 libavformat/movenc.c     struct sgpd_entry *sgpd_entries = NULL;
NULL             2699 libavformat/movenc.c     const char *hdlr, *descr = NULL, *hdlr_type = NULL;
NULL             2747 libavformat/movenc.c             t = av_dict_get(track->st->metadata, "handler_name", NULL, 0);
NULL             2815 libavformat/movenc.c         mov_write_hdlr_tag(s, pb, NULL);
NULL             2870 libavformat/movenc.c         av_log(NULL, AV_LOG_ERROR,
NULL             2923 libavformat/movenc.c     uint32_t *display_matrix = NULL;
NULL             2935 libavformat/movenc.c             display_matrix = NULL;
NULL             2978 libavformat/movenc.c         AVDictionaryEntry *rot = av_dict_get(st->metadata, "rotate", NULL, 0);
NULL             3182 libavformat/movenc.c                        NULL, NULL, 0, 0, ctx);
NULL             3200 libavformat/movenc.c     AVDictionaryEntry *t = av_dict_get(st->metadata, str, NULL, 0);
NULL             3458 libavformat/movenc.c     AVDictionaryEntry *t, *t2 = NULL;
NULL             3463 libavformat/movenc.c     if (!(t = av_dict_get(s->metadata, tag, NULL, 0)))
NULL             3464 libavformat/movenc.c         return NULL;
NULL             3493 libavformat/movenc.c     AVDictionaryEntry *t = av_dict_get(s->metadata, "tmpo", NULL, 0);
NULL             3565 libavformat/movenc.c                                        NULL, 0);
NULL             3591 libavformat/movenc.c     AVDictionaryEntry *t = NULL;
NULL             3598 libavformat/movenc.c     if (!(t = av_dict_get(s->metadata, tag, NULL, 0)))
NULL             3700 libavformat/movenc.c     AVDictionaryEntry *t = NULL;
NULL             3728 libavformat/movenc.c     AVDictionaryEntry *t = NULL;
NULL             3775 libavformat/movenc.c     if (!(t = av_dict_get(s->metadata, key, NULL, 0)))
NULL             3811 libavformat/movenc.c     AVDictionaryEntry *t = av_dict_get(s->metadata, str, NULL, 0);
NULL             3823 libavformat/movenc.c             (t = av_dict_get(s->metadata, "track", NULL, 0)))
NULL             3845 libavformat/movenc.c         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
NULL             3928 libavformat/movenc.c     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
NULL             4068 libavformat/movenc.c             if (fallback != NULL && size == sizeof(int)) {
NULL             4093 libavformat/movenc.c             int ret = mov_write_trak_tag(s, pb, mov, &(mov->tracks[i]), i < s->nb_streams ? s->streams[i] : NULL);
NULL             4133 libavformat/movenc.c     AVCPBProperties *props = NULL;
NULL             4164 libavformat/movenc.c         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL,0);
NULL             4174 libavformat/movenc.c         props = (AVCPBProperties*)av_stream_get_side_data(track->st, AV_PKT_DATA_CPB_PROPERTIES, NULL);
NULL             4639 libavformat/movenc.c                av_log(NULL, AV_LOG_ERROR, "Non-consecutive fragments, writing incorrect sidx\n");
NULL             5356 libavformat/movenc.c             track->mdat_buf = NULL;
NULL             5361 libavformat/movenc.c             mov->mdat_buf = NULL;
NULL             5436 libavformat/movenc.c     uint8_t *reformatted_data = NULL;
NULL             5559 libavformat/movenc.c                                          &size, 0, NULL);
NULL             5564 libavformat/movenc.c             size = ff_hevc_annexb2mp4(pb, pkt->data, pkt->size, 0, NULL);
NULL             5732 libavformat/movenc.c                                                   : NULL, size);
NULL             6026 libavformat/movenc.c         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
NULL             6251 libavformat/movenc.c     AVDictionaryEntry *global_tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
NULL             6374 libavformat/movenc.c                 (t || (t=av_dict_get(st->metadata, "timecode", NULL, 0)))) {
NULL             6403 libavformat/movenc.c     if (mov->encryption_scheme_str != NULL && strcmp(mov->encryption_scheme_str, "none") != 0) {
NULL             6428 libavformat/movenc.c         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL,0);
NULL             6589 libavformat/movenc.c     AVDictionaryEntry *t, *global_tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
NULL             6696 libavformat/movenc.c                     t = av_dict_get(st->metadata, "timecode", NULL, 0);
NULL             6823 libavformat/movenc.c     ret = s->io_open(s, &read_pb, s->url, AVIO_FLAG_READ, NULL);
NULL             6984 libavformat/movenc.c             ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
NULL             6986 libavformat/movenc.c         ret = ff_stream_add_bitstream_filter(st, "vp9_superframe", NULL);
NULL               46 libavformat/movenchint.c     ret = ff_rtp_chain_mux_open(&track->rtp_ctx, s, src_st, NULL,
NULL              408 libavformat/movenchint.c     uint8_t *buf = NULL;
NULL              410 libavformat/movenchint.c     AVIOContext *hintbuf = NULL;
NULL              369 libavformat/mp3dec.c     s->internal->id3v2_meta = NULL;
NULL              371 libavformat/mp3dec.c     st = avformat_new_stream(s, NULL);
NULL              386 libavformat/mp3dec.c     if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
NULL              518 libavformat/mp3dec.c             ret = check(s->pb, pos, NULL);
NULL              598 libavformat/mp3dec.c     { NULL },
NULL               43 libavformat/mp3enc.c     if ((tag = av_dict_get(s->metadata, key, NULL, 0)))
NULL               62 libavformat/mp3enc.c     if ((tag = av_dict_get(s->metadata, "TYER", NULL, 0))) {         //year
NULL               65 libavformat/mp3enc.c     } else if ((tag = av_dict_get(s->metadata, "TDRC", NULL, 0))) {
NULL               68 libavformat/mp3enc.c     } else if ((tag = av_dict_get(s->metadata, "TDAT", NULL, 0))) {
NULL               74 libavformat/mp3enc.c     if ((tag = av_dict_get(s->metadata, "TRCK", NULL, 0))) { //track
NULL               80 libavformat/mp3enc.c     if ((tag = av_dict_get(s->metadata, "TCON", NULL, 0))) { //genre
NULL              146 libavformat/mp3enc.c     AVDictionaryEntry *enc = av_dict_get(s->streams[mp3->audio_stream_idx]->metadata, "encoder", NULL, 0);
NULL              356 libavformat/mp3enc.c             uint8_t *side_data = NULL;
NULL              508 libavformat/mp3enc.c     { NULL },
NULL               81 libavformat/mpc.c     st = avformat_new_stream(s, NULL);
NULL              114 libavformat/mpc.c         if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
NULL              249 libavformat/mpc8.c     st = avformat_new_stream(s, NULL);
NULL              610 libavformat/mpeg.c     st = avformat_new_stream(s, NULL);
NULL              735 libavformat/mpeg.c     AVStream *st = NULL;
NULL              773 libavformat/mpeg.c     ret = avformat_open_input(&vobsub->sub_ctx, vobsub->sub_name, iformat, NULL);
NULL              822 libavformat/mpeg.c                 st = avformat_new_stream(s, NULL);
NULL              913 libavformat/mpeg.c     av_bprint_finalize(&header, NULL);
NULL              964 libavformat/mpeg.c         ret = mpegps_read_pes_header(vobsub->sub_ctx, NULL, &startcode, &pts, &dts);
NULL             1029 libavformat/mpeg.c     { "sub_name", "URI for .sub file", offsetof(VobSubDemuxContext, sub_name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
NULL             1030 libavformat/mpeg.c     { NULL }
NULL              435 libavformat/mpegenc.c             props = (AVCPBProperties*)av_stream_get_side_data(st, AV_PKT_DATA_CPB_PROPERTIES, NULL);
NULL              474 libavformat/mpegenc.c         props = (AVCPBProperties*)av_stream_get_side_data(st, AV_PKT_DATA_CPB_PROPERTIES, NULL);
NULL             1221 libavformat/mpegenc.c     av_fifo_generic_write(stream->fifo, buf, size, NULL);
NULL             1269 libavformat/mpegenc.c     { "muxrate", NULL,                                          OFFSET(user_mux_rate), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, ((1<<22) - 1) * (8 * 50), E },
NULL             1271 libavformat/mpegenc.c     { NULL },
NULL              192 libavformat/mpegts.c     { NULL },
NULL              211 libavformat/mpegts.c     { NULL },
NULL              270 libavformat/mpegts.c     return NULL;
NULL              275 libavformat/mpegts.c     AVProgram *prg = NULL;
NULL              419 libavformat/mpegts.c     uint8_t *cur_section_buf = NULL;
NULL              490 libavformat/mpegts.c         return NULL;
NULL              493 libavformat/mpegts.c         return NULL;
NULL              515 libavformat/mpegts.c         return NULL;
NULL              525 libavformat/mpegts.c         return NULL;
NULL              538 libavformat/mpegts.c         return NULL;
NULL              569 libavformat/mpegts.c     ts->pids[pid] = NULL;
NULL              694 libavformat/mpegts.c         return NULL;
NULL              696 libavformat/mpegts.c         return NULL;
NULL              728 libavformat/mpegts.c             return NULL;
NULL              744 libavformat/mpegts.c         return NULL;
NULL              931 libavformat/mpegts.c             sub_st = avformat_new_stream(pes->stream, NULL);
NULL             1015 libavformat/mpegts.c     pes->buffer = NULL;
NULL             1109 libavformat/mpegts.c         ts->pools[index] = av_buffer_pool_init(pool_size, NULL);
NULL             1111 libavformat/mpegts.c             return NULL;
NULL             1176 libavformat/mpegts.c                         pes->st = avformat_new_stream(ts->stream, NULL);
NULL             1299 libavformat/mpegts.c                     AVProgram *p = NULL;
NULL             1305 libavformat/mpegts.c                                 AVStream *st = NULL;
NULL             1444 libavformat/mpegts.c                                  NULL, NULL, NULL, NULL)) < 0)
NULL             1451 libavformat/mpegts.c     d->active_descr    = NULL;
NULL             1521 libavformat/mpegts.c     d->active_descr = NULL;
NULL             1712 libavformat/mpegts.c                               NULL, NULL, NULL, NULL);
NULL             1732 libavformat/mpegts.c     AVProgram *prg = NULL;
NULL             1748 libavformat/mpegts.c     prg = av_find_program_from_stream(ts->stream, NULL, idx);
NULL             1821 libavformat/mpegts.c                                   NULL, NULL, NULL, NULL);
NULL             1843 libavformat/mpegts.c                               NULL, NULL, NULL, NULL);
NULL             1855 libavformat/mpegts.c             uint8_t *extradata = NULL;
NULL             1865 libavformat/mpegts.c                 if (st->codecpar->extradata == NULL) {
NULL             1916 libavformat/mpegts.c                 if (st->codecpar->extradata == NULL) {
NULL             2205 libavformat/mpegts.c     AVStream *found = NULL;
NULL             2363 libavformat/mpegts.c         pes = NULL;
NULL             2389 libavformat/mpegts.c                 pes->st = avformat_new_stream(pes->stream, NULL);
NULL             2411 libavformat/mpegts.c                 st = avformat_new_stream(pes->stream, NULL);
NULL             2428 libavformat/mpegts.c                 st = avformat_new_stream(ts->stream, NULL);
NULL             2571 libavformat/mpegts.c         ts->epg_stream = avformat_new_stream(ts->stream, NULL);
NULL             3094 libavformat/mpegts.c         st = avformat_new_stream(s, NULL);
NULL             3326 libavformat/mpegts.c         return NULL;
NULL              455 libavformat/mpegtsenc.c         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
NULL              656 libavformat/mpegtsenc.c                uint8_t *len_ptr = NULL;
NULL              841 libavformat/mpegtsenc.c     title = av_dict_get(metadata, "service_name", NULL, 0);
NULL              843 libavformat/mpegtsenc.c         title = av_dict_get(metadata, "title", NULL, 0);
NULL              846 libavformat/mpegtsenc.c     provider      = av_dict_get(metadata, "service_provider", NULL, 0);
NULL              851 libavformat/mpegtsenc.c         return NULL;
NULL              872 libavformat/mpegtsenc.c     return NULL;
NULL              912 libavformat/mpegtsenc.c         AVStream *pcr_st = NULL;
NULL              970 libavformat/mpegtsenc.c         if (!mpegts_add_service(s, ts->service_id, s->metadata, NULL))
NULL             1085 libavformat/mpegtsenc.c                                 NULL, NULL);
NULL             1089 libavformat/mpegtsenc.c             if (!(ast = avformat_new_stream(ts_st->amux, NULL))) {
NULL             1096 libavformat/mpegtsenc.c             ret = avformat_write_header(ts_st->amux, NULL);
NULL             1643 libavformat/mpegtsenc.c     uint8_t *data = NULL;
NULL             1651 libavformat/mpegtsenc.c     uint8_t *side_data = NULL;
NULL             1735 libavformat/mpegtsenc.c             ts_st->amux->pb = NULL;
NULL             1938 libavformat/mpegtsenc.c                 ts_st->amux = NULL;
NULL             1960 libavformat/mpegtsenc.c             ret = ff_stream_add_bitstream_filter(st, "h264_mp4toannexb", NULL);
NULL             1966 libavformat/mpegtsenc.c             ret = ff_stream_add_bitstream_filter(st, "hevc_mp4toannexb", NULL);
NULL             2004 libavformat/mpegtsenc.c     { "muxrate", NULL, OFFSET(mux_rate), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, INT_MAX, ENC },
NULL             2028 libavformat/mpegtsenc.c     { NULL },
NULL               91 libavformat/mpegvideodec.c FF_DEF_RAWVIDEO_DEMUXER(mpegvideo, "raw MPEG video", mpegvideo_probe, NULL, AV_CODEC_ID_MPEG1VIDEO)
NULL               54 libavformat/mpjpeg.c     { NULL },
NULL               73 libavformat/mpjpegdec.c     *tag = NULL;
NULL               74 libavformat/mpjpegdec.c     *value = NULL;
NULL              123 libavformat/mpjpegdec.c     ffio_init_context(&pb, p->buf, p->buf_size, 0, NULL, NULL, NULL, NULL);
NULL              125 libavformat/mpjpegdec.c     ret = (parse_multipart_header(&pb, &size, "--", NULL) >= 0) ? AVPROBE_SCORE_MAX : 0;
NULL              146 libavformat/mpjpegdec.c     st = avformat_new_stream(s, NULL);
NULL              162 libavformat/mpjpegdec.c     long int val = strtol(value, NULL, 10);
NULL              196 libavformat/mpjpegdec.c     if (!av_strstart(line, expected_boundary, NULL)) {
NULL              223 libavformat/mpjpegdec.c         if (value==NULL || tag==NULL)
NULL              251 libavformat/mpjpegdec.c     uint8_t *mime_type = NULL;
NULL              254 libavformat/mpjpegdec.c     uint8_t *res = NULL;
NULL              260 libavformat/mpjpegdec.c     while (start != NULL && *start != '\0') {
NULL              299 libavformat/mpjpegdec.c     if (mpjpeg->boundary == NULL) {
NULL              300 libavformat/mpjpegdec.c         uint8_t* boundary = NULL;
NULL              304 libavformat/mpjpegdec.c         if (boundary != NULL) {
NULL              371 libavformat/mpjpegdec.c     { NULL }
NULL               85 libavformat/mpl2dec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              156 libavformat/mpsubdec.c     st = avformat_new_stream(s, NULL);
NULL              171 libavformat/mpsubdec.c     av_bprint_finalize(&buf, NULL);
NULL               51 libavformat/msf.c     st = avformat_new_stream(s, NULL);
NULL               80 libavformat/msnwc_tcp.c     st = avformat_new_stream(ctx, NULL);
NULL               44 libavformat/mtaf.c     st = avformat_new_stream(s, NULL);
NULL              163 libavformat/mtv.c     st = avformat_new_stream(s, NULL);
NULL              180 libavformat/mtv.c     st = avformat_new_stream(s, NULL);
NULL               51 libavformat/musx.c     st = avformat_new_stream(s, NULL);
NULL              141 libavformat/mux.c     *avctx = NULL;
NULL              147 libavformat/mux.c             oformat = av_guess_format(format, NULL, NULL);
NULL              154 libavformat/mux.c             oformat = av_guess_format(NULL, filename, NULL);
NULL              174 libavformat/mux.c         s->priv_data = NULL;
NULL              234 libavformat/mux.c     AVDictionary *tmp = NULL;
NULL              235 libavformat/mux.c     AVCodecParameters *par = NULL;
NULL              394 libavformat/mux.c         av_dict_set(&s->metadata, "encoder", NULL, 0);
NULL              397 libavformat/mux.c     for (e = NULL; e = av_dict_get(s->metadata, "encoder-", e, AV_DICT_IGNORE_SUFFIX); ) {
NULL              398 libavformat/mux.c         av_dict_set(&s->metadata, e->key, NULL, 0);
NULL              575 libavformat/mux.c         ff_compute_frame_duration(s, &num, &den, st, NULL, pkt);
NULL             1001 libavformat/mux.c                 s->internal->packet_buffer_end = NULL;
NULL             1004 libavformat/mux.c                 st->last_in_packet_buffer = NULL;
NULL             1020 libavformat/mux.c             s->internal->packet_buffer_end = NULL;
NULL             1023 libavformat/mux.c             st->last_in_packet_buffer = NULL;
NULL             1102 libavformat/mux.c         pkt = NULL;
NULL             1197 libavformat/mux.c             ret = s->oformat->write_packet(s, NULL);
NULL             1213 libavformat/mux.c         pkt->buf  = NULL;
NULL             1247 libavformat/mux.c         return interleaved_write_packet(s, NULL, 1/*flush*/);
NULL             1266 libavformat/mux.c     ret1 = interleaved_write_packet(s, NULL, 1);
NULL             1344 libavformat/mux.c         pktp = NULL;
NULL             1354 libavformat/mux.c                                    uncoded_frame_free, NULL, 0);
NULL             1393 libavformat/mux.c     return s->oformat->write_uncoded_frame(s, stream_index, NULL,
NULL               63 libavformat/mvdec.c         return NULL;
NULL               67 libavformat/mvdec.c         return NULL;
NULL               80 libavformat/mvdec.c     v = strtol(s, NULL, 10);
NULL               91 libavformat/mvdec.c     v = av_d2q(av_strtod(s, NULL), INT_MAX);
NULL              282 libavformat/mvdec.c     AVStream *ast = NULL, *vst = NULL; //initialization to suppress warning
NULL              296 libavformat/mvdec.c         ast = avformat_new_stream(avctx, NULL);
NULL              300 libavformat/mvdec.c         vst = avformat_new_stream(avctx, NULL);
NULL              363 libavformat/mvdec.c         if ((ret = read_table(avctx, NULL, parse_global_var)) < 0)
NULL              376 libavformat/mvdec.c             ast = avformat_new_stream(avctx, NULL);
NULL              403 libavformat/mvdec.c             vst = avformat_new_stream(avctx, NULL);
NULL               50 libavformat/mvi.c     ast = avformat_new_stream(s, NULL);
NULL               54 libavformat/mvi.c     vst = avformat_new_stream(s, NULL);
NULL             1100 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "EditUnitByteCount %d\n", segment->edit_unit_byte_count);
NULL             1104 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "IndexSID %d\n", segment->index_sid);
NULL             1108 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "BodySID %d\n", segment->body_sid);
NULL             1111 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "IndexEntryArray found\n");
NULL             1116 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "IndexEditRate %d/%d\n", segment->index_edit_rate.num,
NULL             1121 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "IndexStartPosition %"PRId64"\n", segment->index_start_position);
NULL             1125 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "IndexDuration %"PRId64"\n", segment->index_duration);
NULL             1139 libavformat/mxfdec.c         av_log(NULL, AV_LOG_TRACE, "pixel layout: code %#x\n", code);
NULL             1197 libavformat/mxfdec.c             av_log(NULL, AV_LOG_WARNING, "VideoLineMap element size %d currently not supported\n", entry_size);
NULL             1235 libavformat/mxfdec.c                 av_log(NULL, AV_LOG_WARNING, "Duplicate sony_mpeg4_extradata\n");
NULL             1314 libavformat/mxfdec.c         return NULL;
NULL             1321 libavformat/mxfdec.c     return NULL;
NULL             1326 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x07,0x0d,0x01,0x03,0x01,0x02,0x0c,0x01,0x00 }, 14,   AV_CODEC_ID_JPEG2000, NULL, 14 },
NULL             1327 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x10,0x60,0x01 }, 14,       AV_CODEC_ID_H264, NULL, 15 }, /* H.264 */
NULL             1328 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x11,0x01,0x00 }, 14,      AV_CODEC_ID_DNXHD, NULL, 14 }, /* VC-3 */
NULL             1329 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x12,0x01,0x00 }, 14,        AV_CODEC_ID_VC1, NULL, 14 }, /* VC-1 */
NULL             1330 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x14,0x01,0x00 }, 14,       AV_CODEC_ID_TIFF, NULL, 14 }, /* TIFF */
NULL             1331 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x15,0x01,0x00 }, 14,      AV_CODEC_ID_DIRAC, NULL, 14 }, /* VC-2 */
NULL             1332 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x1b,0x01,0x00 }, 14,       AV_CODEC_ID_CFHD, NULL, 14 }, /* VC-5 */
NULL             1333 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x1c,0x01,0x00 }, 14,     AV_CODEC_ID_PRORES, NULL, 14 }, /* ProRes */
NULL             1334 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x04,0x60,0x01 }, 14, AV_CODEC_ID_MPEG2VIDEO, NULL, 15 }, /* MPEG-ES */
NULL             1335 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0d,0x01,0x03,0x01,0x02,0x01,0x04,0x01 }, 14, AV_CODEC_ID_MPEG2VIDEO, NULL, 15, D10D11Wrap }, /* SMPTE D-10 mapping */
NULL             1336 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0d,0x01,0x03,0x01,0x02,0x02,0x41,0x01 }, 14,    AV_CODEC_ID_DVVIDEO, NULL, 15 }, /* DV 625 25mbps */
NULL             1337 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0d,0x01,0x03,0x01,0x02,0x05,0x00,0x00 }, 14,   AV_CODEC_ID_RAWVIDEO, NULL, 15, RawVWrap }, /* uncompressed picture */
NULL             1340 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x0a,0x0e,0x15,0x00,0x04,0x02,0x10,0x00,0x01 }, 16,       AV_CODEC_ID_HEVC, NULL, 15 }, /* Canon XF-HEVC */
NULL             1369 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0d,0x01,0x03,0x01,0x02,0x06,0x01,0x00 }, 14, AV_CODEC_ID_PCM_S16LE, NULL, 14, RawAWrap }, /* BWF */
NULL             1370 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x02,0x0d,0x01,0x03,0x01,0x02,0x04,0x40,0x01 }, 14,       AV_CODEC_ID_MP2, NULL, 15 }, /* MPEG-ES */
NULL             1371 libavformat/mxfdec.c     { { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0d,0x01,0x03,0x01,0x02,0x01,0x01,0x01 }, 14, AV_CODEC_ID_PCM_S16LE, NULL, 13 }, /* D-10 Mapping 50Mbps PAL Extended Template */
NULL             1507 libavformat/mxfdec.c     MXFPartition *last_p = NULL;
NULL             1739 libavformat/mxfdec.c     MXFIndexTableSegment **sorted_segments = NULL;
NULL             1778 libavformat/mxfdec.c         MXFTrack *mxf_track = NULL;
NULL             1913 libavformat/mxfdec.c     MXFStructuralComponent *component = NULL;
NULL             1914 libavformat/mxfdec.c     MXFPulldownComponent *pulldown = NULL;
NULL             1918 libavformat/mxfdec.c         return NULL;
NULL             1929 libavformat/mxfdec.c     return NULL;
NULL             1934 libavformat/mxfdec.c     MXFPackage *package = NULL;
NULL             1945 libavformat/mxfdec.c     return NULL;
NULL             1950 libavformat/mxfdec.c     MXFDescriptor *sub_descriptor = NULL;
NULL             1954 libavformat/mxfdec.c         return NULL;
NULL             1971 libavformat/mxfdec.c     return NULL;
NULL             1976 libavformat/mxfdec.c     MXFStructuralComponent *component = NULL;
NULL             1977 libavformat/mxfdec.c     MXFPackage *package = NULL;
NULL             1978 libavformat/mxfdec.c     MXFDescriptor *descriptor = NULL;
NULL             1982 libavformat/mxfdec.c         return NULL;
NULL             1998 libavformat/mxfdec.c     return NULL;
NULL             2003 libavformat/mxfdec.c     MXFStructuralComponent *component = NULL;
NULL             2007 libavformat/mxfdec.c         return NULL;
NULL             2016 libavformat/mxfdec.c     return NULL;
NULL             2023 libavformat/mxfdec.c     char *key = NULL;
NULL             2041 libavformat/mxfdec.c     MXFPackage *physical_package = NULL;
NULL             2042 libavformat/mxfdec.c     MXFTrack *physical_track = NULL;
NULL             2043 libavformat/mxfdec.c     MXFStructuralComponent *sourceclip = NULL;
NULL             2044 libavformat/mxfdec.c     MXFTimecodeComponent *mxf_tc = NULL;
NULL             2111 libavformat/mxfdec.c     MXFStructuralComponent *component = NULL;
NULL             2112 libavformat/mxfdec.c     const MXFCodecUL *codec_ul = NULL;
NULL             2126 libavformat/mxfdec.c     st = avformat_new_stream(mxf->fc, NULL);
NULL             2149 libavformat/mxfdec.c     MXFPackage *material_package = NULL;
NULL             2169 libavformat/mxfdec.c         MXFPackage *source_package = NULL;
NULL             2170 libavformat/mxfdec.c         MXFTrack *material_track = NULL;
NULL             2171 libavformat/mxfdec.c         MXFTrack *source_track = NULL;
NULL             2172 libavformat/mxfdec.c         MXFTrack *temp_track = NULL;
NULL             2173 libavformat/mxfdec.c         MXFDescriptor *descriptor = NULL;
NULL             2174 libavformat/mxfdec.c         MXFStructuralComponent *component = NULL;
NULL             2175 libavformat/mxfdec.c         MXFTimecodeComponent *mxf_tc = NULL;
NULL             2176 libavformat/mxfdec.c         UID *essence_container_ul = NULL;
NULL             2177 libavformat/mxfdec.c         const MXFCodecUL *codec_ul = NULL;
NULL             2178 libavformat/mxfdec.c         const MXFCodecUL *container_ul = NULL;
NULL             2179 libavformat/mxfdec.c         const MXFCodecUL *pix_fmt_ul = NULL;
NULL             2282 libavformat/mxfdec.c         st = avformat_new_stream(mxf->fc, NULL);
NULL             2627 libavformat/mxfdec.c     char *str = NULL;
NULL             2663 libavformat/mxfdec.c     char *str = NULL;
NULL             2710 libavformat/mxfdec.c     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, NULL, 0, AnyType },
NULL             2849 libavformat/mxfdec.c     mxf->current_partition = NULL;
NULL             2918 libavformat/mxfdec.c         mxf->current_partition = NULL;
NULL             2998 libavformat/mxfdec.c     return NULL;
NULL             3040 libavformat/mxfdec.c     MXFIndexTableSegment *segment = NULL;
NULL             3041 libavformat/mxfdec.c     MXFPartition *p = NULL;
NULL             3294 libavformat/mxfdec.c         if (mxf_edit_unit_absolute_offset(mxf, t, m, track->edit_rate, NULL, &offset, NULL, 0) < 0)
NULL             3349 libavformat/mxfdec.c     if (mxf_edit_unit_absolute_offset(mxf, t, edit_unit + track->edit_units_per_packet, track->edit_rate, NULL, &next_ofs, NULL, 0) < 0 &&
NULL             3564 libavformat/mxfdec.c         s->streams[i]->priv_data = NULL;
NULL             3729 libavformat/mxfdec.c     { NULL },
NULL              214 libavformat/mxfenc.c       NULL },
NULL              661 libavformat/mxfenc.c         av_log(NULL, AV_LOG_ERROR, "Invalid UTF8 sequence in mxf_utf16len\n\n");
NULL              679 libavformat/mxfenc.c         av_log(NULL, AV_LOG_ERROR, "utf16 local tag size %"PRIx64" invalid (too large), ignoring\n", size);
NULL              694 libavformat/mxfenc.c         av_log(NULL, AV_LOG_ERROR, "utf16 local tag size %"PRIx64" invalid (too large), ignoring\n", size);
NULL             1475 libavformat/mxfenc.c     AVDictionaryEntry *t = NULL;
NULL             1615 libavformat/mxfenc.c     AVDictionaryEntry *entry = NULL;
NULL             1616 libavformat/mxfenc.c     AVStream *st = NULL;
NULL             1626 libavformat/mxfenc.c     if (entry = av_dict_get(s->metadata, "material_package_name", NULL, 0))
NULL             1629 libavformat/mxfenc.c     if (entry = av_dict_get(s->metadata, "file_package_name", NULL, 0)) {
NULL             1635 libavformat/mxfenc.c             if (entry = av_dict_get(st->metadata, "file_package_name", NULL, 0)) {
NULL             1642 libavformat/mxfenc.c     entry = av_dict_get(s->metadata, "reel_name", NULL, 0);
NULL             1954 libavformat/mxfenc.c     sc->codec_ul = NULL;
NULL             2008 libavformat/mxfenc.c     sc->codec_ul = NULL;
NULL             2249 libavformat/mxfenc.c     sc->codec_ul = NULL;
NULL             2313 libavformat/mxfenc.c     return NULL;
NULL             2411 libavformat/mxfenc.c     AVDictionaryEntry *tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
NULL             2424 libavformat/mxfenc.c         tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
NULL             2447 libavformat/mxfenc.c     if (!av_dict_get(s->metadata, "comment_", NULL, AV_DICT_IGNORE_SUFFIX))
NULL             2587 libavformat/mxfenc.c             AVDictionaryEntry *e = av_dict_get(st->metadata, "data_type", NULL, 0);
NULL             2745 libavformat/mxfenc.c     const uint8_t *key = NULL;
NULL             3031 libavformat/mxfenc.c             AVPacketList *last = NULL;
NULL             3051 libavformat/mxfenc.c                 last->next = NULL;
NULL             3053 libavformat/mxfenc.c                 s->internal->packet_buffer = NULL;
NULL             3054 libavformat/mxfenc.c                 s->internal->packet_buffer_end= NULL;
NULL             3064 libavformat/mxfenc.c             s->streams[pktl->pkt.stream_index]->last_in_packet_buffer= NULL;
NULL             3066 libavformat/mxfenc.c             s->internal->packet_buffer_end= NULL;
NULL             3094 libavformat/mxfenc.c     return mxf_interleave_get_packet(s, out, NULL, flush);
NULL             3121 libavformat/mxfenc.c     { NULL },
NULL             3137 libavformat/mxfenc.c     { NULL },
NULL             3153 libavformat/mxfenc.c     { NULL },
NULL               48 libavformat/mxg.c     video_st = avformat_new_stream(s, NULL);
NULL               55 libavformat/mxg.c     audio_st = avformat_new_stream(s, NULL);
NULL               49 libavformat/ncdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              196 libavformat/network.c                 av_log(NULL, AV_LOG_DEBUG, "Failed to set close on exec\n");
NULL              203 libavformat/network.c              av_log(NULL, AV_LOG_WARNING, "setsockopt(SO_NOSIGPIPE) failed\n");
NULL              216 libavformat/network.c         av_log(NULL, AV_LOG_WARNING, "setsockopt(SO_REUSEADDR) failed\n");
NULL              237 libavformat/network.c     ret = accept(fd, NULL, NULL);
NULL              564 libavformat/network.c         char *sep, *next = NULL;
NULL               42 libavformat/nistspheredec.c     st = avformat_new_stream(s, NULL);
NULL               44 libavformat/nspdec.c     st = avformat_new_stream(s, NULL);
NULL              421 libavformat/nsvdec.c             st = avformat_new_stream(s, NULL);
NULL              452 libavformat/nsvdec.c             st = avformat_new_stream(s, NULL);
NULL              493 libavformat/nsvdec.c     nsv->ahead[0].data = nsv->ahead[1].data = NULL;
NULL              531 libavformat/nsvdec.c     AVStream *st[2] = {NULL, NULL};
NULL              317 libavformat/nut.c         av_tree_enumerate(nut->syncpoints, NULL, NULL, enu_free);
NULL               84 libavformat/nutdec.c         av_log(NULL, AV_LOG_ERROR, "Unsupported fourcc length %d\n", len);
NULL              104 libavformat/nutdec.c     ffio_init_checksum(bc, calculate_checksum ? ff_crc04C11DB7_update : NULL, 0);
NULL              350 libavformat/nutdec.c         avformat_new_stream(s, NULL);
NULL              369 libavformat/nutdec.c     AVStream *st = NULL;
NULL              496 libavformat/nutdec.c     int *event_flags        = NULL;
NULL              497 libavformat/nutdec.c     AVChapter *chapter      = NULL;
NULL              498 libavformat/nutdec.c     AVStream *st            = NULL;
NULL              499 libavformat/nutdec.c     AVDictionary **metadata = NULL;
NULL              516 libavformat/nutdec.c                                      start, start + chapter_len, NULL);
NULL              658 libavformat/nutdec.c     ff_find_last_ts(s, -1, &duration, NULL, nut_read_timestamp);
NULL              672 libavformat/nutdec.c     int64_t *syncpoints = NULL;
NULL              674 libavformat/nutdec.c     int8_t *has_keyframe = NULL;
NULL              852 libavformat/nutdec.c     ff_metadata_conv_ctx(s, NULL, ff_nut_metadata_conv);
NULL              894 libavformat/nutdec.c             uint8_t *dst = NULL;
NULL             1275 libavformat/nutdec.c                           NULL);
NULL              331 libavformat/nutenc.c     uint8_t *dyn_buf = NULL;
NULL              497 libavformat/nutenc.c     AVDictionaryEntry *t = NULL;
NULL              499 libavformat/nutenc.c     uint8_t *dyn_buf = NULL;
NULL              525 libavformat/nutenc.c     AVDictionaryEntry *t = NULL;
NULL              527 libavformat/nutenc.c     uint8_t *dyn_buf=NULL;
NULL              567 libavformat/nutenc.c     uint8_t *dyn_buf     = NULL;
NULL              568 libavformat/nutenc.c     AVDictionaryEntry *t = NULL;
NULL              595 libavformat/nutenc.c     Syncpoint *next_node[2] = { NULL };
NULL              650 libavformat/nutenc.c     ff_metadata_conv_ctx(avctx, ff_nut_metadata_conv, NULL);
NULL              957 libavformat/nutenc.c     AVIOContext *bc    = s->pb, *dyn_bc, *sm_bc = NULL;
NULL              967 libavformat/nutenc.c     uint8_t *sm_buf = NULL;
NULL             1221 libavformat/nutenc.c     { NULL },
NULL               86 libavformat/nuv.c                 if ((ret = ff_get_extradata(NULL, vst->codecpar, pb, size)) < 0)
NULL              159 libavformat/nuv.c     AVStream *vst = NULL, *ast = NULL;
NULL              193 libavformat/nuv.c         vst = avformat_new_stream(s, NULL);
NULL              218 libavformat/nuv.c         ast = avformat_new_stream(s, NULL);
NULL               59 libavformat/oggdec.c     NULL
NULL              106 libavformat/oggdec.c         os->new_metadata      = NULL;
NULL              201 libavformat/oggdec.c     return NULL;
NULL              278 libavformat/oggdec.c     st = avformat_new_stream(s, NULL);
NULL              670 libavformat/oggdec.c                 ogg_gptopts(s, i, ogg->streams[i].granule, NULL);
NULL              690 libavformat/oggdec.c     while (streams_left > 0 && !ogg_packet(s, &i, NULL, NULL, NULL)) {
NULL              693 libavformat/oggdec.c         pts = ogg_calc_pts(s, i, NULL);
NULL              734 libavformat/oggdec.c         ret = ogg_packet(s, NULL, NULL, NULL, NULL);
NULL              747 libavformat/oggdec.c             ogg->streams[i].codec = NULL;
NULL              761 libavformat/oggdec.c                 ogg_gptopts(s, i, os->start_granule, NULL);
NULL              888 libavformat/oggdec.c         os->new_metadata      = NULL;
NULL              916 libavformat/oggdec.c             pts = ogg_calc_pts(s, i, NULL);
NULL               91 libavformat/oggenc.c     { NULL },
NULL              283 libavformat/oggenc.c     ff_metadata_conv(m, ff_vorbiscomment_metadata_conv, NULL);
NULL              287 libavformat/oggenc.c         return NULL;
NULL              290 libavformat/oggenc.c         return NULL;
NULL              292 libavformat/oggenc.c     ffio_init_context(&pb, p + offset, size - offset, 1, NULL, NULL, NULL, NULL);
NULL              327 libavformat/oggenc.c     p = ogg_write_vorbiscomment(4, bitexact, &oggstream->header_len[1], m, 0, NULL, 0);
NULL              358 libavformat/oggenc.c     p = ogg_write_vorbiscomment(0, bitexact, &oggstream->header_len[1], m, 0, NULL, 0);
NULL              431 libavformat/oggenc.c     if (av_dict_get(st->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX)) {
NULL              432 libavformat/oggenc.c         p = ogg_write_vorbiscomment(7, bitexact, &oggstream->header_len[1], &st->metadata, 0, NULL, 0);
NULL              472 libavformat/oggenc.c     OGGStreamContext *oggstream = NULL;
NULL              566 libavformat/oggenc.c                 oggstream->header[1] = NULL;
NULL              572 libavformat/oggenc.c                                         framing_bit, NULL, 0);
NULL              604 libavformat/oggenc.c     OGGStreamContext *oggstream = NULL;
NULL              743 libavformat/oggenc.c     ogg->page_list = NULL;
NULL               97 libavformat/oggparseflac.c     avctx = avcodec_alloc_context3(NULL);
NULL               75 libavformat/oggparseogm.c             cid = strtol(acid, NULL, 16);
NULL              192 libavformat/oggparsetheora.c         pts = theora_gptopts(s, idx, os->granule, NULL);
NULL               45 libavformat/oggparsevorbis.c     AVChapter *chapter = NULL;
NULL               56 libavformat/oggparsevorbis.c                            AV_NOPTS_VALUE, NULL);
NULL              176 libavformat/oggparsevorbis.c                 if (av_dict_get(*m, tt, NULL, 0)) {
NULL              193 libavformat/oggparsevorbis.c     ff_metadata_conv(m, NULL, ff_vorbiscomment_metadata_conv);
NULL              235 libavformat/oggparsevorbis.c     ptr = *buf = av_realloc(NULL, buf_len);
NULL              125 libavformat/oggparsevp8.c         os->lastdts = vp8_gptopts(s, idx, os->granule, NULL) - duration;
NULL              150 libavformat/omadec.c     av_des_crypt(av_des, oc->m_val, &enc_header[48], 1, NULL, 1);
NULL              154 libavformat/omadec.c     av_des_crypt(av_des, oc->s_val, NULL, 1, NULL, 0);
NULL              204 libavformat/omadec.c         av_des_crypt(av_des, oc->r_val, &enc_header[pos], 2, NULL, 1);
NULL              205 libavformat/omadec.c         kset(s, oc->r_val, NULL, 16);
NULL              220 libavformat/omadec.c     ID3v2ExtraMetaGEOB *geob = NULL;
NULL              304 libavformat/omadec.c                  &gdata[OMA_ENC_HEADER_SIZE + 40], 1, NULL, 0);
NULL              402 libavformat/omadec.c     ID3v2ExtraMeta *extra_meta = NULL;
NULL              437 libavformat/omadec.c     st = avformat_new_stream(s, NULL);
NULL               53 libavformat/options.c     return NULL;
NULL               58 libavformat/options.c     AVInputFormat  *ifmt = NULL;
NULL               59 libavformat/options.c     AVOutputFormat *ofmt = NULL;
NULL               81 libavformat/options.c     return NULL;
NULL              154 libavformat/options.c         return NULL;
NULL               37 libavformat/options_table.h {"avioflags", NULL, OFFSET(avio_flags), AV_OPT_TYPE_FLAGS, {.i64 = DEFAULT }, INT_MIN, INT_MAX, D|E, "avioflags"},
NULL               42 libavformat/options_table.h {"fflags", NULL, OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = AVFMT_FLAG_AUTO_BSF }, INT_MIN, INT_MAX, D|E, "fflags"},
NULL               68 libavformat/options_table.h {"ts", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_FDEBUG_TS }, INT_MIN, INT_MAX, E|D, "fdebug"},
NULL               98 libavformat/options_table.h {"normal", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = FF_COMPLIANCE_NORMAL }, INT_MIN, INT_MAX, D|E, "strict"},
NULL              108 libavformat/options_table.h {"codec_whitelist", "List of decoders that are allowed to be used", OFFSET(codec_whitelist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, D },
NULL              109 libavformat/options_table.h {"format_whitelist", "List of demuxers that are allowed to be used", OFFSET(format_whitelist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, D },
NULL              110 libavformat/options_table.h {"protocol_whitelist", "List of protocols that are allowed to be used", OFFSET(protocol_whitelist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, D },
NULL              111 libavformat/options_table.h {"protocol_blacklist", "List of protocols that are not allowed to be used", OFFSET(protocol_blacklist), AV_OPT_TYPE_STRING, { .str = NULL },  0, 0, D },
NULL              115 libavformat/options_table.h {NULL},
NULL               69 libavformat/os_support.c     struct hostent *h = NULL;
NULL               73 libavformat/os_support.c     *res = NULL;
NULL              128 libavformat/os_support.c         ai->ai_canonname = h ? av_strdup(h->h_name) : NULL;
NULL              130 libavformat/os_support.c     ai->ai_next = NULL;
NULL              153 libavformat/os_support.c         struct hostent *ent = NULL;
NULL              273 libavformat/os_support.c         rc = select(n, &read_set, &write_set, &exception_set, NULL);
NULL               39 libavformat/pcmdec.c     uint8_t *mime_type = NULL;
NULL               41 libavformat/pcmdec.c     st = avformat_new_stream(s, NULL);
NULL              104 libavformat/pcmdec.c     { NULL },
NULL              129 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_F64BE)
NULL              132 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_F64LE)
NULL              135 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_F32BE)
NULL              138 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_F32LE)
NULL              141 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_S32BE)
NULL              144 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_S32LE)
NULL              147 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_S24BE)
NULL              150 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_S24LE)
NULL              153 libavformat/pcmdec.c        AV_NE("sw", NULL), AV_CODEC_ID_PCM_S16BE, .mime_type = "audio/L16")
NULL              156 libavformat/pcmdec.c        AV_NE(NULL, "sw"), AV_CODEC_ID_PCM_S16LE)
NULL              162 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_U32BE)
NULL              165 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_U32LE)
NULL              168 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_U24BE)
NULL              171 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_U24LE)
NULL              174 libavformat/pcmdec.c        AV_NE("uw", NULL), AV_CODEC_ID_PCM_U16BE)
NULL              177 libavformat/pcmdec.c        AV_NE(NULL, "uw"), AV_CODEC_ID_PCM_U16LE)
NULL              189 libavformat/pcmdec.c        NULL, AV_CODEC_ID_PCM_VIDC)
NULL              194 libavformat/pcmdec.c     { NULL },
NULL               37 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_F64BE)
NULL               40 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_F64LE)
NULL               43 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_F32BE)
NULL               46 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_F32LE)
NULL               49 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_S32BE)
NULL               52 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_S32LE)
NULL               55 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_S24BE)
NULL               58 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_S24LE)
NULL               61 libavformat/pcmenc.c        AV_NE("sw", NULL), AV_CODEC_ID_PCM_S16BE)
NULL               64 libavformat/pcmenc.c        AV_NE(NULL, "sw"), AV_CODEC_ID_PCM_S16LE)
NULL               70 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_U32BE)
NULL               73 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_U32LE)
NULL               76 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_U24BE)
NULL               79 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_U24LE)
NULL               82 libavformat/pcmenc.c        AV_NE("uw", NULL), AV_CODEC_ID_PCM_U16BE)
NULL               85 libavformat/pcmenc.c        AV_NE(NULL, "uw"), AV_CODEC_ID_PCM_U16LE)
NULL               97 libavformat/pcmenc.c        NULL, AV_CODEC_ID_PCM_VIDC)
NULL               69 libavformat/pjsdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               54 libavformat/pmpdec.c     AVStream *vst = avformat_new_stream(s, NULL);
NULL              117 libavformat/pmpdec.c         AVStream *ast = avformat_new_stream(s, NULL);
NULL              199 libavformat/pp_bnk.c         if (!(st = avformat_new_stream(s, NULL))) {
NULL              127 libavformat/prompeg.c     { NULL }
NULL              272 libavformat/prompeg.c     AVDictionary *udp_opts = NULL;
NULL              277 libavformat/prompeg.c     s->fec_col_hd = NULL;
NULL              278 libavformat/prompeg.c     s->fec_row_hd = NULL;
NULL              285 libavformat/prompeg.c     av_url_split(NULL, 0, NULL, 0, hostname, sizeof (hostname), &rtp_port,
NULL              286 libavformat/prompeg.c             NULL, 0, uri);
NULL              297 libavformat/prompeg.c     ff_url_join(buf, sizeof (buf), "udp", NULL, hostname, rtp_port + 2, NULL);
NULL              301 libavformat/prompeg.c     ff_url_join(buf, sizeof (buf), "udp", NULL, hostname, rtp_port + 4, NULL);
NULL              325 libavformat/prompeg.c     s->fec_arr = NULL;
NULL              326 libavformat/prompeg.c     s->rtp_buf = NULL;
NULL              388 libavformat/prompeg.c     uint8_t *bitstring = NULL;
NULL               92 libavformat/protocols.c     return NULL;
NULL              103 libavformat/protocols.c         *opaque = NULL;
NULL              104 libavformat/protocols.c         return NULL;
NULL              118 libavformat/protocols.c     return NULL;
NULL              129 libavformat/protocols.c         return NULL;
NULL              195 libavformat/psxstr.c                     st = avformat_new_stream(s, NULL);
NULL              233 libavformat/psxstr.c                     pkt->data= NULL;
NULL              235 libavformat/psxstr.c                     pkt->buf = NULL;
NULL              246 libavformat/psxstr.c                 st = avformat_new_stream(s, NULL);
NULL               60 libavformat/pva.c     if (!(st = avformat_new_stream(s, NULL)))
NULL               68 libavformat/pva.c     if (!(st = avformat_new_stream(s, NULL)))
NULL               52 libavformat/pvfdec.c     st = avformat_new_stream(s, NULL);
NULL               94 libavformat/qcp.c     AVStream      *st = avformat_new_stream(s, NULL);
NULL               55 libavformat/r3d.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              280 libavformat/r3d.c         st = avformat_new_stream(s, NULL);
NULL               58 libavformat/rawdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               78 libavformat/rawdec.c     st = avformat_new_stream(s, NULL);
NULL               97 libavformat/rawdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              108 libavformat/rawdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              124 libavformat/rawdec.c     { NULL },
NULL              130 libavformat/rawdec.c     { NULL },
NULL              335 libavformat/rawenc.c         return ff_stream_add_bitstream_filter(st, "h264_mp4toannexb", NULL);
NULL              358 libavformat/rawenc.c         return ff_stream_add_bitstream_filter(st, "hevc_mp4toannexb", NULL);
NULL               44 libavformat/rawvideodec.c     st = avformat_new_stream(ctx, NULL);
NULL               90 libavformat/rawvideodec.c     { "video_size", "set frame size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
NULL               93 libavformat/rawvideodec.c     { NULL },
NULL               60 libavformat/rdt.c         return NULL;
NULL               71 libavformat/rdt.c     s->parse_packet = handler ? handler->parse_packet : NULL;
NULL              155 libavformat/rdt.c                   NULL, NULL, NULL, NULL);
NULL              179 libavformat/rdt.c     if (ff_rm_read_mdpr_codecdata(rdt->rmctx, &pb, st, rdt->rmst[st->index], size, NULL) < 0)
NULL              304 libavformat/rdt.c         ffio_init_context(&pb, (uint8_t *)buf, len, 0, NULL, NULL, NULL, NULL);
NULL              315 libavformat/rdt.c                                                     NULL, NULL, NULL, NULL);
NULL              338 libavformat/rdt.c     uint8_t *buf = bufptr ? *bufptr : NULL;
NULL              351 libavformat/rdt.c                             pkt, &timestamp, NULL, 0, 0, flags);
NULL              403 libavformat/rdt.c         return NULL;
NULL              464 libavformat/rdt.c     if (!(st = avformat_new_stream(s, NULL)))
NULL              465 libavformat/rdt.c         return NULL;
NULL              537 libavformat/rdt.c     return avformat_open_input(&rdt->rmctx, "", &ff_rdt_demuxer, NULL);
NULL               57 libavformat/realtextdec.c     return strtol(s, NULL, 10) * 100;
NULL               63 libavformat/realtextdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              125 libavformat/realtextdec.c     av_bprint_finalize(&buf, NULL);
NULL               68 libavformat/redspark.c     st = avformat_new_stream(s, NULL);
NULL               95 libavformat/replaygain.c     tg = av_dict_get(metadata, "REPLAYGAIN_TRACK_GAIN", NULL, 0);
NULL               96 libavformat/replaygain.c     tp = av_dict_get(metadata, "REPLAYGAIN_TRACK_PEAK", NULL, 0);
NULL               97 libavformat/replaygain.c     ag = av_dict_get(metadata, "REPLAYGAIN_ALBUM_GAIN", NULL, 0);
NULL               98 libavformat/replaygain.c     ap = av_dict_get(metadata, "REPLAYGAIN_ALBUM_PEAK", NULL, 0);
NULL              101 libavformat/replaygain.c                              parse_value(tg ? tg->value : NULL, INT32_MIN),
NULL              102 libavformat/replaygain.c                              parse_value(tp ? tp->value : NULL, 0),
NULL              103 libavformat/replaygain.c                              parse_value(ag ? ag->value : NULL, INT32_MIN),
NULL              104 libavformat/replaygain.c                              parse_value(ap ? ap->value : NULL, 0));
NULL              321 libavformat/riffenc.c         if (av_dict_get(s->metadata, riff_tags[i], NULL, AV_DICT_MATCH_CASE))
NULL              332 libavformat/riffenc.c     AVDictionaryEntry *t = NULL;
NULL              334 libavformat/riffenc.c     ff_metadata_conv(&s->metadata, ff_riff_info_conv, NULL);
NULL              344 libavformat/riffenc.c                              NULL, AV_DICT_MATCH_CASE)))
NULL              362 libavformat/riffenc.c     return NULL;
NULL               91 libavformat/rl2.c     unsigned int* chunk_offset = NULL;
NULL               92 libavformat/rl2.c     int* chunk_size = NULL;
NULL               93 libavformat/rl2.c     int* audio_size = NULL;
NULL              114 libavformat/rl2.c     st = avformat_new_stream(s, NULL);
NULL              144 libavformat/rl2.c         st = avformat_new_stream(s, NULL);
NULL              232 libavformat/rl2.c     AVIndexEntry *sample = NULL;
NULL              111 libavformat/rmdec.c         return NULL;
NULL              480 libavformat/rmdec.c     st = avformat_new_stream(s, NULL);
NULL              505 libavformat/rmdec.c             st2 = avformat_new_stream(s, NULL);
NULL              523 libavformat/rmdec.c                                         size2, NULL);
NULL              586 libavformat/rmdec.c             st = avformat_new_stream(s, NULL);
NULL             1000 libavformat/rmdec.c     AVStream *st = NULL; // init to silence compiler warning
NULL             1240 libavformat/rmdec.c         st = avformat_new_stream(s, NULL);
NULL             1267 libavformat/rmdec.c                     ret = rm_read_multi(s, pb, st, NULL);
NULL             1272 libavformat/rmdec.c                     ret = ff_rm_read_mdpr_codecdata(s, pb, st, st->priv_data, len, NULL);
NULL              133 libavformat/rmenc.c         tag = av_dict_get(ctx->metadata, ff_rm_metadata[i], NULL, 0);
NULL              139 libavformat/rmenc.c         tag = av_dict_get(ctx->metadata, ff_rm_metadata[i], NULL, 0);
NULL              119 libavformat/rpl.c     AVStream *vst = NULL, *ast = NULL;
NULL              149 libavformat/rpl.c         vst = avformat_new_stream(s, NULL);
NULL              194 libavformat/rpl.c         ast = avformat_new_stream(s, NULL);
NULL              221 libavformat/rpl.c                     if(av_stristr(audio_type, "unsigned") != NULL) {
NULL              224 libavformat/rpl.c                     } else if(av_stristr(audio_type, "linear") != NULL) {
NULL               60 libavformat/rsd.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               57 libavformat/rsodec.c     st = avformat_new_stream(s, NULL);
NULL              189 libavformat/rtmpcrypt.c     av_xtea_le_crypt(&ctx, out, in, 1, NULL, 0);
NULL              229 libavformat/rtmpcrypt.c     av_rc4_crypt(&rt->key_in, buf, NULL, sizeof(buf), NULL, 1);
NULL              230 libavformat/rtmpcrypt.c     av_rc4_crypt(&rt->key_out, buf, NULL, sizeof(buf), NULL, 1);
NULL              254 libavformat/rtmpcrypt.c     av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port, NULL, 0, uri);
NULL              259 libavformat/rtmpcrypt.c         ff_url_join(url, sizeof(url), "ffrtmphttp", NULL, host, port, NULL);
NULL              263 libavformat/rtmpcrypt.c         ff_url_join(url, sizeof(url), "tcp", NULL, host, port, NULL);
NULL              268 libavformat/rtmpcrypt.c                                     &h->interrupt_callback, NULL,
NULL              291 libavformat/rtmpcrypt.c         av_rc4_crypt(&rt->key_in, buf, buf, ret, NULL, 1);
NULL              304 libavformat/rtmpcrypt.c         av_rc4_crypt(&rt->key_out, (uint8_t *)buf, buf, size, NULL, 1);
NULL              318 libavformat/rtmpcrypt.c     { NULL },
NULL               84 libavformat/rtmpdh.c             mpz_export(buf, NULL, 1, 1, 0, 0, bn);  \
NULL              133 libavformat/rtmpdh.c #define bn_bn2bin(bn, buf, len)     gcry_mpi_print(GCRYMPI_FMT_USG, buf, len, NULL, bn)
NULL              134 libavformat/rtmpdh.c #define bn_bin2bn(bn, buf, len)     gcry_mpi_scan(&bn, GCRYMPI_FMT_USG, buf, len, NULL)
NULL              210 libavformat/rtmpdh.c                               NULL, 0);             \
NULL              229 libavformat/rtmpdh.c         return NULL;
NULL              233 libavformat/rtmpdh.c         return NULL;
NULL              239 libavformat/rtmpdh.c         return NULL;
NULL              243 libavformat/rtmpdh.c         return NULL;
NULL              282 libavformat/rtmpdh.c     FFBigNum bn = NULL;
NULL              327 libavformat/rtmpdh.c         return NULL;
NULL              345 libavformat/rtmpdh.c     return NULL;
NULL              353 libavformat/rtmpdh.c         FFBigNum q1 = NULL;
NULL              394 libavformat/rtmpdh.c     FFBigNum q1 = NULL, pub_key_bn = NULL;
NULL               62 libavformat/rtmphttp.c     ff_url_join(uri, sizeof(uri), "http", NULL, rt->host, rt->port,
NULL              190 libavformat/rtmphttp.c     av_url_split(NULL, 0, NULL, 0, rt->host, sizeof(rt->host), &rt->port,
NULL              191 libavformat/rtmphttp.c                  NULL, 0, uri);
NULL              203 libavformat/rtmphttp.c         ff_url_join(url, sizeof(url), "https", NULL, rt->host, rt->port, "/open/1");
NULL              207 libavformat/rtmphttp.c         ff_url_join(url, sizeof(url), "http", NULL, rt->host, rt->port, "/open/1");
NULL              232 libavformat/rtmphttp.c     if ((ret = ffurl_connect(rt->stream, NULL)) < 0)
NULL              266 libavformat/rtmphttp.c     { NULL },
NULL              115 libavformat/rtmppkt.c         av_log(NULL, AV_LOG_WARNING,
NULL              266 libavformat/rtmppkt.c         prev->data       = NULL;
NULL              290 libavformat/rtmppkt.c        p->data      = NULL;
NULL              414 libavformat/rtmppkt.c         pkt->data = av_realloc(NULL, size);
NULL              291 libavformat/rtmpproto.c         ff_amf_write_number(p, strtod(value, NULL));
NULL             1112 libavformat/rtmpproto.c     uint8_t *in_data = NULL, *out_data = NULL, *swfdata;
NULL             1114 libavformat/rtmpproto.c     URLContext *stream = NULL;
NULL             1121 libavformat/rtmpproto.c                                     &s->interrupt_callback, NULL,
NULL             1706 libavformat/rtmpproto.c     const char *user = "", *salt = "", *opaque = NULL,
NULL             1707 libavformat/rtmpproto.c                *challenge = NULL, *cptr = NULL, *nonce = NULL;
NULL             1796 libavformat/rtmpproto.c     char *tracked_method = NULL;
NULL             1909 libavformat/rtmpproto.c     uint8_t *pp      = NULL;
NULL             2049 libavformat/rtmpproto.c     char *tracked_method = NULL;
NULL             2498 libavformat/rtmpproto.c         rt->flv_data = NULL;
NULL             2637 libavformat/rtmpproto.c         ff_url_join(buf, sizeof(buf), "ffrtmphttp", NULL, hostname, port, NULL);
NULL             2642 libavformat/rtmpproto.c         ff_url_join(buf, sizeof(buf), "tls", NULL, hostname, port, NULL);
NULL             2648 libavformat/rtmpproto.c         ff_url_join(buf, sizeof(buf), "ffrtmpcrypt", NULL, hostname, port, NULL);
NULL             2655 libavformat/rtmpproto.c             ff_url_join(buf, sizeof(buf), "tcp", NULL, hostname, port,
NULL             2659 libavformat/rtmpproto.c             ff_url_join(buf, sizeof(buf), "tcp", NULL, hostname, port, NULL);
NULL             2720 libavformat/rtmpproto.c                 fname = NULL;
NULL             2780 libavformat/rtmpproto.c         ff_url_join(rt->tcurl, TCURL_MAX_LENGTH, proto, NULL, hostname,
NULL             2874 libavformat/rtmpproto.c         rt->flv_data = NULL;
NULL             3099 libavformat/rtmpproto.c     {"rtmp_app", "Name of application to connect to on the RTMP server", OFFSET(app), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL             3101 libavformat/rtmpproto.c     {"rtmp_conn", "Append arbitrary AMF data to the Connect message", OFFSET(conn), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL             3102 libavformat/rtmpproto.c     {"rtmp_flashver", "Version of the Flash plugin used to run the SWF player.", OFFSET(flashver), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL             3108 libavformat/rtmpproto.c     {"rtmp_pageurl", "URL of the web page in which the media was embedded. By default no value will be sent.", OFFSET(pageurl), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC},
NULL             3109 libavformat/rtmpproto.c     {"rtmp_playpath", "Stream identifier to play or to publish", OFFSET(playpath), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL             3110 libavformat/rtmpproto.c     {"rtmp_subscribe", "Name of live stream to subscribe to. Defaults to rtmp_playpath.", OFFSET(subscribe), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC},
NULL             3113 libavformat/rtmpproto.c     {"rtmp_swfurl", "URL of the SWF player. By default no value will be sent", OFFSET(swfurl), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL             3114 libavformat/rtmpproto.c     {"rtmp_swfverify", "URL to player swf file, compute hash/size automatically.", OFFSET(swfverify), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC},
NULL             3115 libavformat/rtmpproto.c     {"rtmp_tcurl", "URL of the target stream. Defaults to proto://host[:port]/app.", OFFSET(tcurl), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
NULL             3119 libavformat/rtmpproto.c     { NULL },
NULL               94 libavformat/rtp.c     const AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
NULL              132 libavformat/rtpdec.c     NULL,
NULL              157 libavformat/rtpdec.c     return NULL;
NULL              170 libavformat/rtpdec.c     return NULL;
NULL              543 libavformat/rtpdec.c         return NULL;
NULL              783 libavformat/rtpdec.c     uint8_t *buf = bufptr ? *bufptr : NULL;
NULL              800 libavformat/rtpdec.c                                                  s->st, pkt, &timestamp, NULL, 0, 0,
NULL              846 libavformat/rtpdec.c             *bufptr = NULL;
NULL              932 libavformat/rtpdec.c     *dyn_buf = NULL;
NULL               52 libavformat/rtpdec_amr.c     const uint8_t *frame_sizes = NULL;
NULL               93 libavformat/rtpdec_asf.c     ffio_init_context(pb, buf, len, 0, NULL, packetizer_read, NULL, NULL);
NULL              106 libavformat/rtpdec_asf.c         AVDictionary *opts = NULL;
NULL              148 libavformat/rtpdec_asf.c         rt->asf_ctx->pb = NULL;
NULL              161 libavformat/rtpdec_asf.c         s->streams[stream_index]->id = strtol(line, NULL, 10);
NULL              212 libavformat/rtpdec_asf.c         ffio_init_context(pb, (uint8_t *)buf, len, 0, NULL, NULL, NULL, NULL);
NULL              248 libavformat/rtpdec_asf.c                 asf->pktbuf = NULL;
NULL               61 libavformat/rtpdec_h264.c #define NAL_COUNTERS NULL
NULL               80 libavformat/rtpdec_h264.c     profile_idc = strtol(buffer, NULL, 16);
NULL               83 libavformat/rtpdec_h264.c     profile_iop = strtol(buffer, NULL, 16);
NULL               86 libavformat/rtpdec_h264.c     level_idc   = strtol(buffer, NULL, 16);
NULL              213 libavformat/rtpdec_h264.c     uint8_t *dst     = NULL;
NULL              383 libavformat/rtpdec_h264.c             av_log(NULL, AV_LOG_DEBUG, "Received %d packets of type %d\n",
NULL               75 libavformat/rtpdec_hevc.c         uint8_t **data_ptr = NULL;
NULL               76 libavformat/rtpdec_hevc.c         int *size_ptr = NULL;
NULL              268 libavformat/rtpdec_hevc.c                                                NULL, 0);
NULL              220 libavformat/rtpdec_jpeg.c     const uint8_t *qtables = NULL;
NULL               63 libavformat/rtpdec_latm.c         data->dyn_buf = NULL;
NULL               94 libavformat/rtpdec_latm.c     int len = ff_hex_to_data(NULL, value), i, ret = 0;
NULL              112 libavformat/rtpdec_latm.c         avpriv_report_missing_feature(NULL, "LATM config (%d,%d,%d,%d)",
NULL              103 libavformat/rtpdec_mpeg4.c     { NULL, -1, -1, {0} },
NULL              115 libavformat/rtpdec_mpeg4.c     int len = ff_hex_to_data(NULL, value), ret;
NULL              304 libavformat/rtpdec_mpeg4.c                     char *end_ptr = NULL;
NULL              191 libavformat/rtpdec_qdm2.c     uint8_t *p, *csum_pos = NULL;
NULL               75 libavformat/rtpdec_qt.c     ffio_init_context(&pb, (uint8_t*)buf, len, 0, NULL, NULL, NULL, NULL);
NULL              184 libavformat/rtpdec_qt.c             qt->pkt.data = av_realloc(NULL, alen + AV_INPUT_BUFFER_PADDING_SIZE);
NULL              198 libavformat/rtpdec_qt.c             qt->pkt.data = NULL;
NULL              218 libavformat/rtpdec_qt.c             qt->pkt.data = av_realloc(NULL, qt->remaining * qt->bytes_per_frame);
NULL              233 libavformat/rtpdec_qt.c         avpriv_request_sample(NULL, "RTP-X-QT with packing scheme 2");
NULL              134 libavformat/rtpdec_rfc4175.c    data->frame = NULL;
NULL              326 libavformat/rtpdec_xiph.c         uint8_t *decoded_packet = NULL;
NULL               35 libavformat/rtpenc.c     { "cname", "CNAME to include in RTCP SR packets", offsetof(RTPMuxContext, cname), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL               37 libavformat/rtpenc.c     { NULL },
NULL               32 libavformat/rtpenc_chain.c     AVFormatContext *rtpctx = NULL;
NULL               34 libavformat/rtpenc_chain.c     ff_const59 AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
NULL               36 libavformat/rtpenc_chain.c     AVDictionary *opts = NULL;
NULL               51 libavformat/rtpenc_chain.c     if (!avformat_new_stream(rtpctx, NULL)) {
NULL               31 libavformat/rtpenc_jpeg.c     const uint8_t *qtables[4] = { NULL };
NULL               50 libavformat/rtpenc_mpegts.c     AVFormatContext *mpegts_ctx = NULL, *rtp_ctx = NULL;
NULL               51 libavformat/rtpenc_mpegts.c     ff_const59 AVOutputFormat *mpegts_format = av_guess_format("mpegts", NULL, NULL);
NULL               52 libavformat/rtpenc_mpegts.c     ff_const59 AVOutputFormat *rtp_format    = av_guess_format("rtp", NULL, NULL);
NULL               65 libavformat/rtpenc_mpegts.c         AVStream* st = avformat_new_stream(mpegts_ctx, NULL);
NULL               74 libavformat/rtpenc_mpegts.c     if ((ret = avformat_write_header(mpegts_ctx, NULL)) < 0)
NULL               80 libavformat/rtpenc_mpegts.c     mpegts_ctx = NULL;
NULL               88 libavformat/rtpenc_mpegts.c     st = avformat_new_stream(rtp_ctx, NULL);
NULL               97 libavformat/rtpenc_mpegts.c     if ((ret = avformat_write_header(rtp_ctx, NULL)) < 0)
NULL              128 libavformat/rtpenc_mpegts.c     chain->mpegts_ctx->pb = NULL;
NULL               78 libavformat/rtpproto.c     { "sources",            "Source list",                                                      OFFSET(sources),         AV_OPT_TYPE_STRING, { .str = NULL },               .flags = D|E },
NULL               79 libavformat/rtpproto.c     { "block",              "Block list",                                                       OFFSET(block),           AV_OPT_TYPE_STRING, { .str = NULL },               .flags = D|E },
NULL               80 libavformat/rtpproto.c     { "fec",                "FEC",                                                              OFFSET(fec_options_str), AV_OPT_TYPE_STRING, { .str = NULL },               .flags = E },
NULL               81 libavformat/rtpproto.c     { NULL }
NULL              111 libavformat/rtpproto.c     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
NULL              118 libavformat/rtpproto.c             rtcp_port = strtol(buf, NULL, 10);
NULL              122 libavformat/rtpproto.c     ff_url_join(buf, sizeof(buf), "udp", NULL, hostname, port, "%s", path);
NULL              125 libavformat/rtpproto.c     ff_url_join(buf, sizeof(buf), "udp", NULL, hostname, rtcp_port, "%s", path);
NULL              178 libavformat/rtpproto.c     ff_url_join(buf, buf_size, "udp", NULL, hostname, port, NULL);
NULL              222 libavformat/rtpproto.c     AVDictionary *fec_opts = NULL;
NULL              226 libavformat/rtpproto.c     char *fec_protocol = NULL;
NULL              233 libavformat/rtpproto.c     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &rtp_port,
NULL              242 libavformat/rtpproto.c             s->ttl = strtol(buf, NULL, 10);
NULL              245 libavformat/rtpproto.c             s->rtcp_port = strtol(buf, NULL, 10);
NULL              248 libavformat/rtpproto.c             s->local_rtpport = strtol(buf, NULL, 10);
NULL              251 libavformat/rtpproto.c             s->local_rtpport = strtol(buf, NULL, 10);
NULL              254 libavformat/rtpproto.c             s->local_rtcpport = strtol(buf, NULL, 10);
NULL              257 libavformat/rtpproto.c             s->pkt_size = strtol(buf, NULL, 10);
NULL              260 libavformat/rtpproto.c             s->connect = strtol(buf, NULL, 10);
NULL              263 libavformat/rtpproto.c             s->write_to_source = strtol(buf, NULL, 10);
NULL              266 libavformat/rtpproto.c             s->dscp = strtol(buf, NULL, 10);
NULL              313 libavformat/rtpproto.c                                  NULL, h->protocol_whitelist, h->protocol_blacklist, h) < 0)
NULL              327 libavformat/rtpproto.c                                      &h->interrupt_callback, NULL,
NULL              338 libavformat/rtpproto.c                                  NULL, h->protocol_whitelist, h->protocol_blacklist, h) < 0)
NULL              343 libavformat/rtpproto.c     s->fec_hd = NULL;
NULL              345 libavformat/rtpproto.c         ff_url_join(buf, sizeof(buf), fec_protocol, NULL, hostname, rtp_port, NULL);
NULL              111 libavformat/rtsp.c     { NULL },
NULL              120 libavformat/rtsp.c     { NULL },
NULL              126 libavformat/rtsp.c     { NULL },
NULL              132 libavformat/rtsp.c     AVDictionary *opts = NULL;
NULL              196 libavformat/rtsp.c             av_log(NULL, AV_LOG_DEBUG, "Failed to parse interval end specification '%s'\n", buf);
NULL              203 libavformat/rtsp.c     struct addrinfo hints = { 0 }, *ai = NULL;
NULL              207 libavformat/rtsp.c     if ((ret = getaddrinfo(buf, NULL, &hints, &ai))) {
NULL              222 libavformat/rtsp.c     AVCodecParameters *par = st ? st->codecpar : NULL;
NULL              233 libavformat/rtsp.c             rtsp_st->dynamic_handler = NULL;
NULL              250 libavformat/rtsp.c             rtsp_st->dynamic_protocol_context = NULL;
NULL              251 libavformat/rtsp.c             rtsp_st->dynamic_handler = NULL;
NULL              509 libavformat/rtsp.c                 init_rtp_handler(handler, rtsp_st, NULL);
NULL              510 libavformat/rtsp.c                 finalize_rtp_handler_init(s, rtsp_st, NULL);
NULL              517 libavformat/rtsp.c             st = avformat_new_stream(s, NULL);
NULL              555 libavformat/rtsp.c                 av_url_split(proto, sizeof(proto), NULL, 0, NULL, 0,
NULL              556 libavformat/rtsp.c                              NULL, NULL, 0, p);
NULL              595 libavformat/rtsp.c             rtsp_st->ssrc = strtoll(buf1, NULL, 10);
NULL              765 libavformat/rtsp.c         rtsp_st->transport_priv = NULL;
NULL              810 libavformat/rtsp.c     AVStream *st = NULL;
NULL              831 libavformat/rtsp.c         rtsp_st->rtp_handle = NULL;
NULL             1053 libavformat/rtsp.c             seq = strtoul(value, NULL, 10);
NULL             1055 libavformat/rtsp.c             rtptime = strtoul(value, NULL, 10);
NULL             1081 libavformat/rtsp.c             (t = strtol(p, NULL, 10)) > 0) {
NULL             1085 libavformat/rtsp.c         reply->content_length = strtol(p, NULL, 10);
NULL             1089 libavformat/rtsp.c         reply->seq = strtol(p, NULL, 10);
NULL             1100 libavformat/rtsp.c         reply->notice = strtol(p, NULL, 10);
NULL             1166 libavformat/rtsp.c     unsigned char *content = NULL;
NULL             1171 libavformat/rtsp.c     content = NULL;
NULL             1370 libavformat/rtsp.c     return rtsp_send_cmd_with_content_async(s, method, url, headers, NULL, 0);
NULL             1378 libavformat/rtsp.c                                          content_ptr, NULL, 0);
NULL             1487 libavformat/rtsp.c                 ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
NULL             1492 libavformat/rtsp.c                                  &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL             1560 libavformat/rtsp.c         ff_rtsp_send_cmd(s, "SETUP", rtsp_st->control_url, cmd, reply, NULL);
NULL             1605 libavformat/rtsp.c             ff_url_join(url, sizeof(url), "rtp", NULL, peer,
NULL             1632 libavformat/rtsp.c                         namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
NULL             1633 libavformat/rtsp.c             ff_url_join(url, sizeof(url), "rtp", NULL, namebuf,
NULL             1636 libavformat/rtsp.c                            &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL             1669 libavformat/rtsp.c     rt->rtsp_hd_out = NULL;
NULL             1749 libavformat/rtsp.c     ff_url_join(rt->control_uri, sizeof(rt->control_uri), proto, NULL,
NULL             1757 libavformat/rtsp.c         AVDictionary *options = NULL;
NULL             1844 libavformat/rtsp.c         ff_url_join(tcpname, sizeof(tcpname), lower_rtsp_proto, NULL,
NULL             1848 libavformat/rtsp.c                        &s->interrupt_callback, NULL, s->protocol_whitelist, s->protocol_blacklist, NULL)) < 0) {
NULL             1863 libavformat/rtsp.c                     NULL, 0, NI_NUMERICHOST);
NULL             1886 libavformat/rtsp.c         ff_rtsp_send_cmd(s, "OPTIONS", rt->control_uri, cmd, reply, NULL);
NULL             1922 libavformat/rtsp.c                                      real_challenge : NULL);
NULL             1976 libavformat/rtsp.c         ret = ff_rtsp_read_reply(s, &reply, NULL, 0, NULL);
NULL             1994 libavformat/rtsp.c     int *fds = NULL, fdsnum, fdsidx;
NULL             2125 libavformat/rtsp.c             ff_rtp_check_and_send_back_rr((*rtsp_st)->transport_priv, (*rtsp_st)->rtp_handle, NULL, len);
NULL             2135 libavformat/rtsp.c             ff_rtp_check_and_send_back_rr((*rtsp_st)->transport_priv, NULL, s->pb, len);
NULL             2149 libavformat/rtsp.c     RTSPStream *rtsp_st, *first_queue_st = NULL;
NULL             2158 libavformat/rtsp.c             ret = ff_rdt_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
NULL             2160 libavformat/rtsp.c             ret = ff_rtp_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
NULL             2170 libavformat/rtsp.c             rt->cur_transport_priv = NULL;
NULL             2175 libavformat/rtsp.c             rt->cur_transport_priv = NULL;
NULL             2198 libavformat/rtsp.c             first_queue_st = NULL;
NULL             2215 libavformat/rtsp.c         ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, NULL, 0);
NULL             2226 libavformat/rtsp.c             AVIOContext *pb = NULL;
NULL             2241 libavformat/rtsp.c                 AVStream *st = NULL;
NULL             2246 libavformat/rtsp.c                     AVStream *st2 = NULL;
NULL             2312 libavformat/rtsp.c             av_strstart(p, "c=IN IP", NULL))
NULL             2377 libavformat/rtsp.c                               namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
NULL             2384 libavformat/rtsp.c             ff_url_join(url, sizeof(url), "rtp", NULL,
NULL             2398 libavformat/rtsp.c                            &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL             2446 libavformat/rtsp.c     if (av_strstart(p->filename, "rtp:", NULL))
NULL             2456 libavformat/rtsp.c     URLContext* in = NULL;
NULL             2458 libavformat/rtsp.c     AVCodecParameters *par = NULL;
NULL             2470 libavformat/rtsp.c                      &s->interrupt_callback, NULL, s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL             2518 libavformat/rtsp.c     av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port,
NULL             2519 libavformat/rtsp.c                  NULL, 0, s->url);
NULL             2534 libavformat/rtsp.c                 while ((q = strchr(q, ',')) != NULL)
NULL             2553 libavformat/rtsp.c     ffio_init_context(&pb, sdp.str, sdp.len, 0, NULL, NULL, NULL, NULL);
NULL             2562 libavformat/rtsp.c     s->pb = NULL;
NULL             2563 libavformat/rtsp.c     av_bprint_finalize(&sdp, NULL);
NULL             2569 libavformat/rtsp.c     av_bprint_finalize(&sdp, NULL);
NULL              127 libavformat/rtspcodes.h )? rtsp_status_strings[x] : NULL
NULL               61 libavformat/rtspdec.c         ff_rtsp_send_cmd_async(s, "TEARDOWN", rt->control_uri, NULL);
NULL               66 libavformat/rtspdec.c     rt->real_setup = NULL;
NULL              135 libavformat/rtspdec.c         rtsp_send_reply(s, RTSP_STATUS_SESSION, NULL, request->seq);
NULL              185 libavformat/rtspdec.c         rtsp_send_reply(s, RTSP_STATUS_SERVICE, NULL, request.seq);
NULL              194 libavformat/rtspdec.c             rtsp_send_reply(s, RTSP_STATUS_INTERNAL, NULL, request.seq);
NULL              202 libavformat/rtspdec.c         rtsp_send_reply(s, RTSP_STATUS_OK, NULL, request.seq);
NULL              280 libavformat/rtspdec.c             rtsp_send_reply(s, RTSP_STATUS_TRANSPORT, NULL, request.seq);
NULL              291 libavformat/rtspdec.c             AVDictionary *opts = NULL;
NULL              293 libavformat/rtspdec.c             ff_url_join(url, sizeof(url), "rtp", NULL, host, localport, NULL);
NULL              297 libavformat/rtspdec.c                                        s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL              303 libavformat/rtspdec.c             rtsp_send_reply(s, RTSP_STATUS_TRANSPORT, NULL, request.seq);
NULL              310 libavformat/rtspdec.c             rtsp_send_reply(s, RTSP_STATUS_TRANSPORT, NULL, request.seq);
NULL              437 libavformat/rtspdec.c         av_url_split(NULL, 0, auth, sizeof(auth), host, sizeof(host), &port,
NULL              439 libavformat/rtspdec.c         av_url_split(NULL, 0, ctl_auth, sizeof(ctl_auth), ctl_host,
NULL              456 libavformat/rtspdec.c     if (!av_strstart(linept, "RTSP/1.0", NULL)) {
NULL              490 libavformat/rtspdec.c         ret       = rtsp_send_reply(s, RTSP_STATUS_OK, NULL , request.seq);
NULL              498 libavformat/rtspdec.c         ret       = rtsp_send_reply(s, RTSP_STATUS_OK, NULL , request.seq);
NULL              549 libavformat/rtspdec.c         ff_rtsp_send_cmd(s, "PLAY", rt->control_uri, cmd, reply, NULL);
NULL              558 libavformat/rtspdec.c                 AVStream *st = NULL;
NULL              582 libavformat/rtspdec.c         ff_rtsp_send_cmd(s, "PAUSE", rt->control_uri, NULL, reply, NULL);
NULL              595 libavformat/rtspdec.c     unsigned char *content = NULL;
NULL              648 libavformat/rtspdec.c     ff_url_join(rt->control_uri, sizeof(rt->control_uri), proto, NULL, host,
NULL              660 libavformat/rtspdec.c     ff_url_join(tcpname, sizeof(tcpname), lower_proto, NULL, host, port,
NULL              664 libavformat/rtspdec.c                                    &s->interrupt_callback, NULL,
NULL              665 libavformat/rtspdec.c                                    s->protocol_whitelist, s->protocol_blacklist, NULL)) {
NULL              704 libavformat/rtspdec.c         av_strstart(p->filename, "rtsps:", NULL) ||
NULL              706 libavformat/rtspdec.c         av_strstart(p->filename, "rtsp:", NULL))
NULL              728 libavformat/rtspdec.c         rt->real_setup_cache = !s->nb_streams ? NULL :
NULL              760 libavformat/rtspdec.c         ret = ff_rtsp_read_reply(s, &reply, NULL, 1, NULL);
NULL              782 libavformat/rtspdec.c         ff_rdt_parse_header(buf, len, &id, NULL, NULL, NULL, NULL) < 0)
NULL              804 libavformat/rtspdec.c     av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port, NULL, 0,
NULL              832 libavformat/rtspdec.c                                  cmd, reply, NULL);
NULL              867 libavformat/rtspdec.c                              cmd, reply, NULL);
NULL              889 libavformat/rtspdec.c                     ff_rtsp_send_cmd(s, "TEARDOWN", rt->control_uri, NULL,
NULL              890 libavformat/rtspdec.c                                      reply, NULL);
NULL              912 libavformat/rtspdec.c                 ff_rtsp_send_cmd_async(s, "GET_PARAMETER", rt->control_uri, NULL);
NULL              914 libavformat/rtspdec.c                 ff_rtsp_send_cmd_async(s, "OPTIONS", rt->control_uri, NULL);
NULL               77 libavformat/rtspenc.c                 "rtsp", NULL, addr, -1, NULL);
NULL               86 libavformat/rtspenc.c                                   reply, NULL, sdp, strlen(sdp));
NULL              119 libavformat/rtspenc.c     ff_rtsp_send_cmd(s, "RECORD", rt->control_uri, cmd, reply, NULL);
NULL              151 libavformat/rtspenc.c     rtpctx->pb = NULL;
NULL              201 libavformat/rtspenc.c             ret = ff_rtsp_read_reply(s, &reply, NULL, 1, NULL);
NULL              236 libavformat/rtspenc.c     ff_rtsp_send_cmd_async(s, "TEARDOWN", rt->control_uri, NULL);
NULL              106 libavformat/s337m.c         if (s337m_get_offset_and_codec(NULL, state, data_type, data_size, &offset, NULL))
NULL              186 libavformat/s337m.c         AVStream *st = avformat_new_stream(s, NULL);
NULL               52 libavformat/samidec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               97 libavformat/samidec.c                 sub->pts      = p ? strtol(p, NULL, 10) : 0;
NULL              113 libavformat/samidec.c     av_bprint_finalize(&buf, NULL);
NULL               47 libavformat/sapdec.c     if (av_strstart(p->filename, "sap:", NULL))
NULL               75 libavformat/sapdec.c     av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port,
NULL               85 libavformat/sapdec.c     ff_url_join(url, sizeof(url), "udp", NULL, host, port, "?localport=%d",
NULL               88 libavformat/sapdec.c                                &s->interrupt_callback, NULL,
NULL               89 libavformat/sapdec.c                                s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL              152 libavformat/sapdec.c     ffio_init_context(&sap->sdp_pb, sap->sdp, strlen(sap->sdp), 0, NULL, NULL,
NULL              153 libavformat/sapdec.c                   NULL, NULL);
NULL              170 libavformat/sapdec.c     ret = avformat_open_input(&sap->sdp_ctx, "temp.sdp", infmt, NULL);
NULL              176 libavformat/sapdec.c         AVStream *st = avformat_new_stream(s, NULL);
NULL              225 libavformat/sapdec.c             AVStream *st = avformat_new_stream(s, NULL);
NULL               54 libavformat/sapenc.c         s->streams[i]->priv_data = NULL;
NULL               74 libavformat/sapenc.c     AVFormatContext **contexts = NULL;
NULL               79 libavformat/sapenc.c     AVDictionaryEntry* title = av_dict_get(s->metadata, "title", NULL, 0);
NULL               85 libavformat/sapenc.c     av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &base_port,
NULL               95 libavformat/sapenc.c             port = strtol(buf, NULL, 10);
NULL               98 libavformat/sapenc.c             same_port = strtol(buf, NULL, 10);
NULL              101 libavformat/sapenc.c             ttl = strtol(buf, NULL, 10);
NULL              109 libavformat/sapenc.c         struct addrinfo hints = { 0 }, *ai = NULL;
NULL              111 libavformat/sapenc.c         if (getaddrinfo(host, NULL, &hints, &ai)) {
NULL              148 libavformat/sapenc.c         ff_url_join(url, sizeof(url), "rtp", NULL, host, base_port,
NULL              153 libavformat/sapenc.c                                    &s->interrupt_callback, NULL,
NULL              154 libavformat/sapenc.c                                    s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL              175 libavformat/sapenc.c     ff_url_join(url, sizeof(url), "udp", NULL, announce_addr, port,
NULL              178 libavformat/sapenc.c                                &s->interrupt_callback, NULL,
NULL              179 libavformat/sapenc.c                                s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL              166 libavformat/sbgdec.c             return NULL;
NULL              169 libavformat/sbgdec.c             return NULL;
NULL              856 libavformat/sbgdec.c     char *buf = NULL;
NULL             1375 libavformat/sbgdec.c     r = parse_script(NULL, p->buf, p->buf_size, &script);
NULL             1386 libavformat/sbgdec.c     char *buf = NULL;
NULL             1414 libavformat/sbgdec.c     st = avformat_new_stream(avf, NULL);
NULL             1494 libavformat/sbgdec.c     { NULL },
NULL               65 libavformat/sccdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               83 libavformat/sccdec.c         char *saveptr = NULL, *lline;
NULL              130 libavformat/sccdec.c             lline = NULL;
NULL               82 libavformat/sctp.c     struct cmsghdr *cmsg = NULL;
NULL              122 libavformat/sctp.c     outmsg.msg_name       = NULL;
NULL              168 libavformat/sctp.c     { NULL }
NULL              193 libavformat/sctp.c     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
NULL              207 libavformat/sctp.c             s->max_streams = strtol(buf, NULL, 10);
NULL              314 libavformat/sctp.c         ret = ff_sctp_recvmsg(s->fd, buf + 2, size - 2, NULL, 0, &info, 0);
NULL              102 libavformat/sdp.c     if (getaddrinfo(dest_addr, NULL, &hints, &ai))
NULL              105 libavformat/sdp.c                 NULL, 0, NI_NUMERICHOST);
NULL              128 libavformat/sdp.c     av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url);
NULL              144 libavformat/sdp.c             *ttl = strtol(buff, NULL, 10);
NULL              162 libavformat/sdp.c     uint8_t *tmpbuf = NULL;
NULL              163 libavformat/sdp.c     const uint8_t *sps = NULL, *sps_end;
NULL              168 libavformat/sdp.c         return NULL;
NULL              173 libavformat/sdp.c             return NULL;
NULL              181 libavformat/sdp.c         return NULL;
NULL              210 libavformat/sdp.c             return NULL;
NULL              231 libavformat/sdp.c     uint8_t *tmpbuf = NULL;
NULL              244 libavformat/sdp.c             return NULL;
NULL              324 libavformat/sdp.c     return NULL;
NULL              334 libavformat/sdp.c         return NULL;
NULL              339 libavformat/sdp.c         return NULL;
NULL              365 libavformat/sdp.c         return NULL;
NULL              372 libavformat/sdp.c         return NULL;
NULL              415 libavformat/sdp.c     return NULL;
NULL              462 libavformat/sdp.c         return NULL;
NULL              475 libavformat/sdp.c         return NULL;
NULL              485 libavformat/sdp.c     char *config = NULL;
NULL              508 libavformat/sdp.c             const char *pic_fmt = NULL;
NULL              556 libavformat/sdp.c                     return NULL;
NULL              569 libavformat/sdp.c                     return NULL;
NULL              572 libavformat/sdp.c                     return NULL;
NULL              624 libavformat/sdp.c                 return NULL;
NULL              645 libavformat/sdp.c                 return NULL;
NULL              653 libavformat/sdp.c                 return NULL;
NULL              774 libavformat/sdp.c     AVDictionaryEntry *title = av_dict_get(ac[0]->metadata, "title", NULL, 0);
NULL              816 libavformat/sdp.c                                dst[0] ? dst : NULL, dst_type,
NULL              824 libavformat/sdp.c                 uint8_t *crypto_suite = NULL, *crypto_params = NULL;
NULL               85 libavformat/sdsdec.c     st = avformat_new_stream(ctx, NULL);
NULL               52 libavformat/sdxdec.c     st = avformat_new_stream(s, NULL);
NULL               98 libavformat/segafilm.c     film->sample_table = NULL;
NULL              149 libavformat/segafilm.c         st = avformat_new_stream(s, NULL);
NULL              170 libavformat/segafilm.c         st = avformat_new_stream(s, NULL);
NULL              273 libavformat/segafilm.c     film_sample *next_sample = NULL;
NULL              285 libavformat/segafilm.c     while (next_sample == NULL) {
NULL              291 libavformat/segafilm.c             next_sample = NULL;
NULL              307 libavformat/segafilm.c     if (next_sample != NULL)
NULL              101 libavformat/segafilmenc.c     if (film->last == NULL) {
NULL              107 libavformat/segafilmenc.c     metadata->next = NULL;
NULL              108 libavformat/segafilmenc.c     if (film->start == NULL)
NULL              163 libavformat/segafilmenc.c     film->start = NULL;
NULL              164 libavformat/segafilmenc.c     film->last = NULL;
NULL              227 libavformat/segafilmenc.c     ret = format_context->io_open(format_context, &read_pb, format_context->url, AVIO_FLAG_READ, NULL);
NULL              273 libavformat/segafilmenc.c     AVStream *video = NULL;
NULL              357 libavformat/segafilmenc.c     while (packet != NULL) {
NULL              363 libavformat/segafilmenc.c     film->start = film->last = NULL;
NULL              372 libavformat/segafilmenc.c     while (packet != NULL) {
NULL              377 libavformat/segafilmenc.c     film->start = film->last = NULL;
NULL              151 libavformat/segment.c     ret = avformat_alloc_output_context2(&seg->avf, seg->oformat, NULL, NULL);
NULL              168 libavformat/segment.c         if (!(st = avformat_new_stream(oc, NULL)))
NULL              247 libavformat/segment.c         seg->avf = NULL;
NULL              260 libavformat/segment.c     if ((err = s->io_open(s, &oc->pb, oc->url, AVIO_FLAG_WRITE, NULL)) < 0) {
NULL              271 libavformat/segment.c         AVDictionary *options = NULL;
NULL              290 libavformat/segment.c     ret = s->io_open(s, &seg->list_pb, seg->temp_list_filename, AVIO_FLAG_WRITE, NULL);
NULL              340 libavformat/segment.c         if (av_escape(&buf, list_entry->filename, NULL, AV_ESCAPE_MODE_AUTO, AV_ESCAPE_FLAG_WHITESPACE) < 0) {
NULL              369 libavformat/segment.c     av_write_frame(oc, NULL); /* Flush any buffered data (fragmented mp4) */
NULL              422 libavformat/segment.c         tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
NULL              447 libavformat/segment.c                 AVDictionaryEntry *st_tcr = av_dict_get(s->streams[i]->metadata, "timecode", NULL, 0);
NULL              472 libavformat/segment.c     char *saveptr = NULL;
NULL              494 libavformat/segment.c         p = NULL;
NULL              530 libavformat/segment.c     char *saveptr = NULL;
NULL              554 libavformat/segment.c         p = NULL;
NULL              589 libavformat/segment.c     *ctx = avio_alloc_context(buf, buf_size, AVIO_FLAG_WRITE, NULL, NULL, NULL, NULL);
NULL              665 libavformat/segment.c     seg->avf = NULL;
NULL              672 libavformat/segment.c     AVDictionary *options = NULL;
NULL              748 libavformat/segment.c     seg->oformat = av_guess_format(seg->format, s->url, NULL);
NULL              768 libavformat/segment.c                               AVIO_FLAG_WRITE, NULL)) < 0) {
NULL              798 libavformat/segment.c         ret = avformat_write_header(oc, NULL);
NULL              840 libavformat/segment.c         ret = avformat_write_header(oc, NULL);
NULL              847 libavformat/segment.c             av_write_frame(oc, NULL);
NULL              852 libavformat/segment.c         if ((ret = oc->io_open(oc, &oc->pb, oc->url, AVIO_FLAG_WRITE, NULL)) < 0)
NULL             1024 libavformat/segment.c     seg->avf = NULL;
NULL             1038 libavformat/segment.c             ost->internal->bsfc = NULL;
NULL             1049 libavformat/segment.c     { "segment_format",    "set container format used for the segments", OFFSET(format),  AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
NULL             1050 libavformat/segment.c     { "segment_format_options", "set list of options for the container format used for the segments", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, E },
NULL             1051 libavformat/segment.c     { "segment_list",      "set the segment list filename",              OFFSET(list),    AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
NULL             1052 libavformat/segment.c     { "segment_header_filename", "write a single file containing the header", OFFSET(header_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
NULL             1071 libavformat/segment.c     { "segment_time",      "set segment duration",                       OFFSET(time_str),AV_OPT_TYPE_STRING, {.str = NULL},  0, 0,       E },
NULL             1073 libavformat/segment.c     { "segment_times",     "set segment split time points",              OFFSET(times_str),AV_OPT_TYPE_STRING,{.str = NULL},  0, 0,       E },
NULL             1074 libavformat/segment.c     { "segment_frames",    "set segment split frame numbers",            OFFSET(frames_str),AV_OPT_TYPE_STRING,{.str = NULL},  0, 0,       E },
NULL             1076 libavformat/segment.c     { "segment_list_entry_prefix", "set base url prefix for segments", OFFSET(entry_prefix), AV_OPT_TYPE_STRING,  {.str = NULL}, 0, 0, E },
NULL             1088 libavformat/segment.c     { NULL },
NULL               54 libavformat/serdec.c     st = avformat_new_stream(s, NULL);
NULL              125 libavformat/serdec.c     { NULL },
NULL               89 libavformat/sierravmd.c     AVStream *st = NULL, *vst = NULL;
NULL              116 libavformat/sierravmd.c         vst = avformat_new_stream(s, NULL);
NULL              138 libavformat/sierravmd.c         st = avformat_new_stream(s, NULL);
NULL              183 libavformat/sierravmd.c     raw_frame_table = NULL;
NULL              184 libavformat/sierravmd.c     vmd->frame_table = NULL;
NULL               78 libavformat/siff.c     ast = avformat_new_stream(s, NULL);
NULL              123 libavformat/siff.c     st = avformat_new_stream(s, NULL);
NULL              129 libavformat/smacker.c     st = avformat_new_stream(s, NULL);
NULL              170 libavformat/smacker.c             AVStream *ast = avformat_new_stream(s, NULL);
NULL               49 libavformat/smjpegdec.c     AVStream *ast = NULL, *vst = NULL;
NULL               37 libavformat/smjpegenc.c     AVDictionaryEntry *t = NULL;
NULL              105 libavformat/smoothstreamingenc.c         os->tail_out = NULL;
NULL              117 libavformat/smoothstreamingenc.c             AVDictionary *opts = NULL;
NULL              121 libavformat/smoothstreamingenc.c                                        &os->ctx->interrupt_callback, &opts, os->ctx->protocol_whitelist, os->ctx->protocol_blacklist, NULL);
NULL              125 libavformat/smoothstreamingenc.c                 os->tail_out = NULL;
NULL              130 libavformat/smoothstreamingenc.c                                  &os->ctx->interrupt_callback, &opts, os->ctx->protocol_whitelist, os->ctx->protocol_blacklist, NULL);
NULL              219 libavformat/smoothstreamingenc.c     ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL);
NULL              297 libavformat/smoothstreamingenc.c     oformat = av_guess_format("ismv", NULL, NULL);
NULL              313 libavformat/smoothstreamingenc.c         AVDictionary *opts = NULL;
NULL              337 libavformat/smoothstreamingenc.c         if (!(st = avformat_new_stream(ctx, NULL))) {
NULL              345 libavformat/smoothstreamingenc.c         ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), AVIO_FLAG_WRITE, os, NULL, ism_write, ism_seek);
NULL              410 libavformat/smoothstreamingenc.c     if ((ret = s->io_open(s, &in, filename, AVIO_FLAG_READ, NULL)) < 0)
NULL              487 libavformat/smoothstreamingenc.c     if ((ret = s->io_open(s, &in, infile, AVIO_FLAG_READ, NULL)) < 0)
NULL              489 libavformat/smoothstreamingenc.c     if ((ret = s->io_open(s, &out, outfile, AVIO_FLAG_WRITE, NULL)) < 0) {
NULL              524 libavformat/smoothstreamingenc.c         ret = ffurl_open_whitelist(&os->out, filename, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL, s->protocol_whitelist, s->protocol_blacklist, NULL);
NULL              528 libavformat/smoothstreamingenc.c         av_write_frame(os->ctx, NULL);
NULL              643 libavformat/smoothstreamingenc.c     { NULL },
NULL              110 libavformat/sol.c     st = avformat_new_stream(s, NULL);
NULL               54 libavformat/soxdec.c     st = avformat_new_stream(s, NULL);
NULL               52 libavformat/soxenc.c     comment = av_dict_get(s->metadata, "comment", NULL, 0);
NULL              146 libavformat/spdifdec.c             if (!spdif_get_offset_and_codec(NULL, (buf[2] << 8) | buf[1],
NULL              215 libavformat/spdifdec.c         AVStream *st = avformat_new_stream(s, NULL);
NULL              100 libavformat/spdifenc.c { NULL },
NULL              130 libavformat/srtdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              185 libavformat/srtdec.c                 char *pline = NULL;
NULL              212 libavformat/srtdec.c     av_bprint_finalize(&buf, NULL);
NULL               38 libavformat/srtp.c     s->hmac = NULL;
NULL               48 libavformat/srtp.c         av_aes_crypt(aes, keystream, iv, 1, NULL, 0);
NULL               83 libavformat/srtp.c         av_log(NULL, AV_LOG_WARNING, "SRTP Crypto suite %s not supported\n",
NULL               88 libavformat/srtp.c         av_log(NULL, AV_LOG_WARNING, "Incorrect amount of SRTP params\n");
NULL              180 libavformat/srtp.c         av_log(NULL, AV_LOG_WARNING, "HMAC mismatch\n");
NULL               43 libavformat/srtpproto.c     { "srtp_out_suite", "", offsetof(SRTPProtoContext, out_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               44 libavformat/srtpproto.c     { "srtp_out_params", "", offsetof(SRTPProtoContext, out_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
NULL               45 libavformat/srtpproto.c     { "srtp_in_suite", "", offsetof(SRTPProtoContext, in_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
NULL               46 libavformat/srtpproto.c     { "srtp_in_params", "", offsetof(SRTPProtoContext, in_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
NULL               47 libavformat/srtpproto.c     { NULL }
NULL               79 libavformat/srtpproto.c     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &rtp_port,
NULL               81 libavformat/srtpproto.c     ff_url_join(buf, sizeof(buf), "rtp", NULL, hostname, rtp_port, "%s", path);
NULL               83 libavformat/srtpproto.c                                     NULL, h->protocol_whitelist, h->protocol_blacklist, h)) < 0)
NULL               75 libavformat/stldec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               41 libavformat/subfile.c     { NULL }
NULL               56 libavformat/subtitles.c     ffio_init_context(&r->buf_pb, buf, size, 0, NULL, NULL, NULL, NULL);
NULL               57 libavformat/subtitles.c     ff_text_init_avio(NULL, r, &r->buf_pb);
NULL              123 libavformat/subtitles.c             return NULL;
NULL              129 libavformat/subtitles.c             return NULL;
NULL              133 libavformat/subtitles.c             return NULL;
NULL              137 libavformat/subtitles.c             return NULL;
NULL              352 libavformat/subtitles.c     return NULL;
NULL               46 libavformat/subviewer1dec.c     AVPacket *sub = NULL;
NULL               48 libavformat/subviewer1dec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               83 libavformat/subviewerdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               88 libavformat/subviewerdec.c     AVPacket *sub = NULL;
NULL              177 libavformat/subviewerdec.c     av_bprint_finalize(&header, NULL);
NULL               27 libavformat/supdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               40 libavformat/svag.c     st = avformat_new_stream(s, NULL);
NULL              149 libavformat/swfdec.c                                       zlib_refill, NULL, NULL);
NULL              181 libavformat/swfdec.c     AVStream *ast = avformat_new_stream(s, NULL);
NULL              183 libavformat/swfdec.c         return NULL;
NULL              208 libavformat/swfdec.c     AVStream *vst = NULL, *ast = NULL, *st = 0;
NULL              240 libavformat/swfdec.c             vst = avformat_new_stream(s, NULL);
NULL              313 libavformat/swfdec.c             uint8_t *buf = NULL, *zbuf = NULL, *pal;
NULL              377 libavformat/swfdec.c                 vst = avformat_new_stream(s, NULL);
NULL              475 libavformat/swfdec.c                 vst = avformat_new_stream(s, NULL);
NULL              462 libavformat/swfenc.c     av_fifo_generic_write(swf->audio_fifo, buf, size, NULL);
NULL              488 libavformat/swfenc.c     video_par = NULL;
NULL               59 libavformat/takdec.c     uint8_t *buffer = NULL;
NULL              165 libavformat/takdec.c             buffer                           = NULL;
NULL               63 libavformat/tcp.c     { NULL }
NULL              115 libavformat/tcp.c     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
NULL              126 libavformat/tcp.c             char *endptr = NULL;
NULL              133 libavformat/tcp.c             s->rw_timeout = strtol(buf, NULL, 10);
NULL              136 libavformat/tcp.c             s->listen_timeout = strtol(buf, NULL, 10);
NULL              149 libavformat/tcp.c         ret = getaddrinfo(NULL, portstr, &hints, &ai);
NULL               40 libavformat/tedcaptionsdec.c     { NULL },
NULL              137 libavformat/tedcaptionsdec.c     av_bprint_finalize(bp, NULL);
NULL              256 libavformat/tedcaptionsdec.c         av_bprint_finalize(&content, NULL);
NULL              278 libavformat/tedcaptionsdec.c     AVStream *st = avformat_new_stream(avf, NULL);
NULL               70 libavformat/tee.c          AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM},
NULL               71 libavformat/tee.c         {NULL}
NULL              143 libavformat/tee.c     tee_slave->avf = NULL;
NULL              161 libavformat/tee.c     AVDictionary *options = NULL, *bsf_options = NULL;
NULL              164 libavformat/tee.c     char *format = NULL, *select = NULL, *on_fail = NULL;
NULL              165 libavformat/tee.c     char *use_fifo = NULL, *fifo_options_str = NULL;
NULL              166 libavformat/tee.c     AVFormatContext *avf2 = NULL;
NULL              170 libavformat/tee.c     char *subselect = NULL, *next_subselect = NULL, *first_subselect = NULL, *tmp_select = NULL;
NULL              176 libavformat/tee.c         if ((entry = av_dict_get(options, option, NULL, 0))) {          \
NULL              178 libavformat/tee.c             entry->value = NULL; /* prevent it from being freed */      \
NULL              179 libavformat/tee.c             av_dict_set(&options, option, NULL, 0);                     \
NULL              188 libavformat/tee.c     entry = NULL;
NULL              192 libavformat/tee.c         av_dict_set(&options, entry->key, NULL, 0);
NULL              211 libavformat/tee.c             char *format_options_str = NULL;
NULL              225 libavformat/tee.c             format = NULL;
NULL              233 libavformat/tee.c     ret = avformat_alloc_output_context2(&avf2, NULL,
NULL              263 libavformat/tee.c             next_subselect = NULL;
NULL              265 libavformat/tee.c                 first_subselect = NULL;
NULL              288 libavformat/tee.c         if (!(st2 = avformat_new_stream(avf2, NULL))) {
NULL              318 libavformat/tee.c     entry = NULL;
NULL              319 libavformat/tee.c     while (entry = av_dict_get(bsf_options, "", NULL, AV_DICT_IGNORE_SUFFIX)) {
NULL              360 libavformat/tee.c         av_dict_set(&bsf_options, entry->key, NULL, 0);
NULL              395 libavformat/tee.c         entry = NULL;
NULL              459 libavformat/tee.c     char **slaves = NULL;
NULL              553 libavformat/tee.c             ret = av_interleaved_write_frame(avf2, NULL);
NULL               39 libavformat/teeproto.c     { NULL }
NULL               94 libavformat/teeproto.c         char *child_name = NULL;
NULL               96 libavformat/teeproto.c         AVDictionary *options = NULL;
NULL               63 libavformat/tests/fifo_muxer.c     ret = avformat_alloc_output_context2(oc, NULL, "fifo", "-");
NULL               70 libavformat/tests/fifo_muxer.c     s = avformat_new_stream(*oc, NULL);
NULL              112 libavformat/tests/fifo_muxer.c     ret = av_write_frame(oc, NULL);
NULL              204 libavformat/tests/fifo_muxer.c     AVDictionary *opts = NULL;
NULL              205 libavformat/tests/fifo_muxer.c     AVFormatContext *oc = NULL;
NULL              248 libavformat/tests/fifo_muxer.c         {fifo_basic_test, "nonfail test", NULL,1, 0, 0, {0, 0, 0}},
NULL              270 libavformat/tests/fifo_muxer.c         {NULL}
NULL              161 libavformat/tests/movenc.c     out = NULL;
NULL              185 libavformat/tests/movenc.c     ctx->oformat = av_guess_format(format, NULL, NULL);
NULL              188 libavformat/tests/movenc.c     ctx->pb = avio_alloc_context(iobuf, iobuf_size, AVIO_FLAG_WRITE, NULL, NULL, io_write, NULL);
NULL              194 libavformat/tests/movenc.c     st = avformat_new_stream(ctx, NULL);
NULL              210 libavformat/tests/movenc.c     st = avformat_new_stream(ctx, NULL);
NULL              333 libavformat/tests/movenc.c     pkt.data = NULL;
NULL              350 libavformat/tests/movenc.c     ctx = NULL;
NULL              505 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Force writing the moov
NULL              507 libavformat/tests/movenc.c     av_write_frame(ctx, NULL);
NULL              509 libavformat/tests/movenc.c     av_write_frame(ctx, NULL);
NULL              531 libavformat/tests/movenc.c     av_write_frame(ctx, NULL);
NULL              535 libavformat/tests/movenc.c     av_write_frame(ctx, NULL);
NULL              548 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Force writing the moov
NULL              552 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Flush the first fragment
NULL              555 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Flush the second fragment
NULL              567 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the first fragment
NULL              570 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL              585 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL              597 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the moov
NULL              599 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL              612 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the moov
NULL              615 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the first fragment
NULL              618 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL              629 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the moov
NULL              633 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL              645 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the moov
NULL              648 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the first fragment
NULL              651 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL              663 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the moov
NULL              667 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL              681 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the moov
NULL              684 libavformat/tests/movenc.c     av_write_frame(ctx, NULL); // Output the second fragment
NULL               33 libavformat/tests/noproxy.c     test(NULL, "domain.com");
NULL               26 libavformat/tests/rtmpdh.c     FF_DH *peer1 = NULL, *peer2 = NULL;
NULL               64 libavformat/tests/seek.c     AVDictionary *format_opts = NULL;
NULL              102 libavformat/tests/seek.c     ret = avformat_open_input(&ic, filename, NULL, &format_opts);
NULL              109 libavformat/tests/seek.c     ret = avformat_find_stream_info(ic, NULL);
NULL               55 libavformat/tests/url.c     test(NULL, "baz");
NULL              110 libavformat/thp.c             st = avformat_new_stream(s, NULL);
NULL              135 libavformat/thp.c             st = avformat_new_stream(s, NULL);
NULL              226 libavformat/tiertexseq.c     st = avformat_new_stream(s, NULL);
NULL              241 libavformat/tiertexseq.c     st = avformat_new_stream(s, NULL);
NULL               43 libavformat/tls.c         char *endptr = NULL;
NULL               61 libavformat/tls.c     struct addrinfo hints = { 0 }, *ai = NULL;
NULL               70 libavformat/tls.c     av_url_split(NULL, 0, NULL, 0, c->underlying_host, sizeof(c->underlying_host), &port, NULL, 0, uri);
NULL               81 libavformat/tls.c     ff_url_join(buf, sizeof(buf), "tcp", NULL, c->underlying_host, port, "%s", p);
NULL               84 libavformat/tls.c     if (!getaddrinfo(c->underlying_host, NULL, &hints, &ai)) {
NULL               94 libavformat/tls.c                 proxy_path && av_strstart(proxy_path, "http://", NULL);
NULL               99 libavformat/tls.c         av_url_split(NULL, 0, proxy_auth, sizeof(proxy_auth),
NULL              100 libavformat/tls.c                      proxy_host, sizeof(proxy_host), &proxy_port, NULL, 0,
NULL              102 libavformat/tls.c         ff_url_join(dest, sizeof(dest), NULL, NULL, c->underlying_host, port, NULL);
NULL              183 libavformat/tls_gnutls.c     gnutls_priority_set_direct(p->session, "NORMAL", NULL);
NULL              274 libavformat/tls_gnutls.c     { NULL }
NULL               77 libavformat/tls_libtls.c     struct tls_config *cfg = NULL;
NULL              186 libavformat/tls_libtls.c     { NULL }
NULL              212 libavformat/tls_mbedtls.c                                      NULL, 0)) != 0) {
NULL              228 libavformat/tls_mbedtls.c     mbedtls_ssl_conf_ca_chain(&tls_ctx->ssl_config, &tls_ctx->ca_cert, NULL);
NULL              249 libavformat/tls_mbedtls.c     mbedtls_ssl_set_bio(&tls_ctx->ssl_context, shr->tcp, mbedtls_send, mbedtls_recv, NULL);
NULL              332 libavformat/tls_mbedtls.c     { NULL }
NULL               92 libavformat/tls_openssl.c                 pthread_mutex_init(&openssl_mutexes[i], NULL);
NULL              114 libavformat/tls_openssl.c             CRYPTO_set_locking_callback(NULL);
NULL              132 libavformat/tls_openssl.c     av_log(h, AV_LOG_ERROR, "%s\n", ERR_error_string(ERR_get_error(), NULL));
NULL              158 libavformat/tls_openssl.c     BIO_set_data(b, NULL);
NULL              162 libavformat/tls_openssl.c     b->ptr = NULL;
NULL              228 libavformat/tls_openssl.c     .bgets = NULL,
NULL              254 libavformat/tls_openssl.c         av_log(h, AV_LOG_ERROR, "%s\n", ERR_error_string(ERR_get_error(), NULL));
NULL              260 libavformat/tls_openssl.c         if (!SSL_CTX_load_verify_locations(p->ctx, c->ca_file, NULL))
NULL              261 libavformat/tls_openssl.c             av_log(h, AV_LOG_ERROR, "SSL_CTX_load_verify_locations %s\n", ERR_error_string(ERR_get_error(), NULL));
NULL              265 libavformat/tls_openssl.c                c->cert_file, ERR_error_string(ERR_get_error(), NULL));
NULL              271 libavformat/tls_openssl.c                c->key_file, ERR_error_string(ERR_get_error(), NULL));
NULL              278 libavformat/tls_openssl.c         SSL_CTX_set_verify(p->ctx, SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT, NULL);
NULL              281 libavformat/tls_openssl.c         av_log(h, AV_LOG_ERROR, "%s\n", ERR_error_string(ERR_get_error(), NULL));
NULL              356 libavformat/tls_openssl.c     { NULL }
NULL              108 libavformat/tls_schannel.c         init_sec_buffer(&outbuf, SECBUFFER_EMPTY, NULL, 0);
NULL              112 libavformat/tls_schannel.c                                              c->request_flags, 0, 0, NULL, 0, &c->ctxt_handle,
NULL              156 libavformat/tls_schannel.c     if (c->enc_buf == NULL) {
NULL              164 libavformat/tls_schannel.c     if (c->dec_buf == NULL) {
NULL              194 libavformat/tls_schannel.c         init_sec_buffer(&inbuf[1], SECBUFFER_EMPTY, NULL, 0);
NULL              197 libavformat/tls_schannel.c         if (inbuf[0].pvBuffer == NULL) {
NULL              206 libavformat/tls_schannel.c         init_sec_buffer(&outbuf[0], SECBUFFER_TOKEN, NULL, 0);
NULL              207 libavformat/tls_schannel.c         init_sec_buffer(&outbuf[1], SECBUFFER_ALERT, NULL, 0);
NULL              208 libavformat/tls_schannel.c         init_sec_buffer(&outbuf[2], SECBUFFER_EMPTY, NULL, 0);
NULL              212 libavformat/tls_schannel.c                                              0, 0, &inbuf_desc, 0, NULL, &outbuf_desc, &c->context_flags,
NULL              243 libavformat/tls_schannel.c                 if (outbuf[i].pvBuffer != NULL) {
NULL              245 libavformat/tls_schannel.c                     outbuf[i].pvBuffer = NULL;
NULL              284 libavformat/tls_schannel.c         if (outbuf[i].pvBuffer != NULL) {
NULL              286 libavformat/tls_schannel.c             outbuf[i].pvBuffer = NULL;
NULL              302 libavformat/tls_schannel.c     init_sec_buffer(&outbuf, SECBUFFER_EMPTY, NULL, 0);
NULL              309 libavformat/tls_schannel.c     sspi_ret = InitializeSecurityContext(&c->cred_handle, NULL, s->host, c->request_flags, 0, 0,
NULL              310 libavformat/tls_schannel.c                                          NULL, 0, &c->ctxt_handle, &outbuf_desc, &c->context_flags,
NULL              362 libavformat/tls_schannel.c     sspi_ret = AcquireCredentialsHandle(NULL, (TCHAR *)UNISP_NAME, SECPKG_CRED_OUTBOUND,
NULL              363 libavformat/tls_schannel.c                                         NULL,  &schannel_cred, NULL, NULL, &c->cred_handle,
NULL              436 libavformat/tls_schannel.c         init_sec_buffer(&inbuf[1], SECBUFFER_EMPTY, NULL, 0);
NULL              437 libavformat/tls_schannel.c         init_sec_buffer(&inbuf[2], SECBUFFER_EMPTY, NULL, 0);
NULL              438 libavformat/tls_schannel.c         init_sec_buffer(&inbuf[3], SECBUFFER_EMPTY, NULL, 0);
NULL              441 libavformat/tls_schannel.c         sspi_ret = DecryptMessage(&c->ctxt_handle, &inbuf_desc, 0, NULL);
NULL              533 libavformat/tls_schannel.c     uint8_t *data = NULL;
NULL              548 libavformat/tls_schannel.c     if (data == NULL)
NULL              558 libavformat/tls_schannel.c     init_sec_buffer(&outbuf[3], SECBUFFER_EMPTY, NULL, 0);
NULL              594 libavformat/tls_schannel.c     { NULL }
NULL               75 libavformat/tls_securetransport.c     AVIOContext *s = NULL;
NULL               76 libavformat/tls_securetransport.c     CFDataRef data = NULL;
NULL               78 libavformat/tls_securetransport.c     char *buf = NULL;
NULL               81 libavformat/tls_securetransport.c     CFStringRef pathStr = CFStringCreateWithCString(NULL, path, 0x08000100);
NULL               88 libavformat/tls_securetransport.c                                    &h->interrupt_callback, NULL,
NULL              111 libavformat/tls_securetransport.c                       0, NULL, NULL, array) != noErr || !array) {
NULL              137 libavformat/tls_securetransport.c     CFArrayRef array = NULL;
NULL              157 libavformat/tls_securetransport.c     CFArrayRef certArray = NULL;
NULL              158 libavformat/tls_securetransport.c     CFArrayRef keyArray = NULL;
NULL              159 libavformat/tls_securetransport.c     SecIdentityRef id = NULL;
NULL              160 libavformat/tls_securetransport.c     CFMutableArrayRef outArray = NULL;
NULL              276 libavformat/tls_securetransport.c     c->ssl_context = SSLCreateContext(NULL, s->listen ? kSSLServerSide : kSSLClientSide, kSSLStreamType);
NULL              401 libavformat/tls_securetransport.c     { NULL }
NULL               78 libavformat/tmv.c     if (!(vst = avformat_new_stream(s, NULL)))
NULL               81 libavformat/tmv.c     if (!(ast = avformat_new_stream(s, NULL)))
NULL               99 libavformat/tta.c     st = avformat_new_stream(s, NULL);
NULL              106 libavformat/tty.c     AVStream *st = avformat_new_stream(avctx, NULL);
NULL              169 libavformat/tty.c     { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
NULL              171 libavformat/tty.c     { NULL },
NULL               44 libavformat/txd.c     st = avformat_new_stream(s, NULL);
NULL              132 libavformat/ty.c         return NULL;
NULL              314 libavformat/ty.c     st = avformat_new_stream(s, NULL);
NULL              322 libavformat/ty.c     ast = avformat_new_stream(s, NULL);
NULL              368 libavformat/ty.c         ty->seq_table = NULL;
NULL              374 libavformat/ty.c     if (ty->seq_table == NULL) {
NULL              131 libavformat/udp.c     { "localaddr",      "Local address",                                   OFFSET(localaddr),      AV_OPT_TYPE_STRING, { .str = NULL },               .flags = D|E },
NULL              142 libavformat/udp.c     { "sources",        "Source list",                                     OFFSET(sources),        AV_OPT_TYPE_STRING, { .str = NULL },               .flags = D|E },
NULL              143 libavformat/udp.c     { "block",          "Block list",                                      OFFSET(block),          AV_OPT_TYPE_STRING, { .str = NULL },               .flags = D|E },
NULL              144 libavformat/udp.c     { NULL }
NULL              167 libavformat/udp.c             ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_MULTICAST_TTL)");
NULL              175 libavformat/udp.c             ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IPV6_MULTICAST_HOPS)");
NULL              195 libavformat/udp.c             ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_ADD_MEMBERSHIP)");
NULL              208 libavformat/udp.c             ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IPV6_ADD_MEMBERSHIP)");
NULL              228 libavformat/udp.c             ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_DROP_MEMBERSHIP)");
NULL              241 libavformat/udp.c             ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IPV6_DROP_MEMBERSHIP)");
NULL              275 libavformat/udp.c                     ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(MCAST_JOIN_SOURCE_GROUP)");
NULL              277 libavformat/udp.c                     ff_log_net_error(NULL, AV_LOG_ERROR, "setsockopt(MCAST_BLOCK_SOURCE)");
NULL              344 libavformat/udp.c     res0 = ff_ip_resolve_host(h, (localaddr && localaddr[0]) ? localaddr : NULL,
NULL              355 libavformat/udp.c         ff_log_net_error(NULL, AV_LOG_ERROR, "socket");
NULL              381 libavformat/udp.c     if ((error = getnameinfo((struct sockaddr *)addr, addr_len, NULL, 0,  sbuf, sizeof(sbuf), NI_NUMERICSERV)) != 0) {
NULL              382 libavformat/udp.c         av_log(NULL, AV_LOG_ERROR, "getnameinfo: %s\n", gai_strerror(error));
NULL              386 libavformat/udp.c     return strtol(sbuf, NULL, 10);
NULL              413 libavformat/udp.c     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
NULL              425 libavformat/udp.c             s->is_connected = strtol(buf, NULL, 10);
NULL              514 libavformat/udp.c         av_fifo_generic_write(s->fifo, s->tmp, len+4, NULL);
NULL              521 libavformat/udp.c     return NULL;
NULL              559 libavformat/udp.c         av_fifo_generic_read(s->fifo, tmp, 4, NULL);
NULL              565 libavformat/udp.c         av_fifo_generic_read(s->fifo, s->tmp, len, NULL);
NULL              608 libavformat/udp.c                     return NULL;
NULL              618 libavformat/udp.c     return NULL;
NULL              659 libavformat/udp.c             char *endptr = NULL;
NULL              666 libavformat/udp.c             char *endptr = NULL;
NULL              677 libavformat/udp.c             s->ttl = strtol(buf, NULL, 10);
NULL              680 libavformat/udp.c             s->udplite_coverage = strtol(buf, NULL, 10);
NULL              683 libavformat/udp.c             s->local_port = strtol(buf, NULL, 10);
NULL              686 libavformat/udp.c             s->pkt_size = strtol(buf, NULL, 10);
NULL              689 libavformat/udp.c             s->buffer_size = strtol(buf, NULL, 10);
NULL              692 libavformat/udp.c             s->is_connected = strtol(buf, NULL, 10);
NULL              695 libavformat/udp.c             dscp = strtol(buf, NULL, 10);
NULL              698 libavformat/udp.c             s->circular_buffer_size = strtol(buf, NULL, 10);
NULL              705 libavformat/udp.c             s->bitrate = strtoll(buf, NULL, 10);
NULL              712 libavformat/udp.c             s->burst_bits = strtoll(buf, NULL, 10);
NULL              726 libavformat/udp.c             s->timeout = strtol(buf, NULL, 10);
NULL              728 libavformat/udp.c             s->is_broadcast = strtol(buf, NULL, 10);
NULL              740 libavformat/udp.c     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
NULL              898 libavformat/udp.c         ret = pthread_mutex_init(&s->mutex, NULL);
NULL              903 libavformat/udp.c         ret = pthread_cond_init(&s->cond, NULL);
NULL              908 libavformat/udp.c         ret = pthread_create(&s->circular_buffer_thread, NULL, is_output?circular_buffer_task_tx:circular_buffer_task_rx, h);
NULL              958 libavformat/udp.c                 av_fifo_generic_read(s->fifo, tmp, 4, NULL);
NULL              965 libavformat/udp.c                 av_fifo_generic_read(s->fifo, buf, avail, NULL);
NULL             1034 libavformat/udp.c         av_fifo_generic_write(s->fifo, tmp, 4, NULL); /* size of packet */
NULL             1035 libavformat/udp.c         av_fifo_generic_write(s->fifo, (uint8_t *)buf, size, NULL); /* the data */
NULL             1083 libavformat/udp.c             CancelIoEx((HANDLE)(SOCKET)s->udp_fd, NULL);
NULL             1088 libavformat/udp.c         ret = pthread_join(s->circular_buffer_thread, NULL);
NULL              158 libavformat/uncodedframecrcenc.c     av_bprint_finalize(&bp, NULL);
NULL               53 libavformat/unix.c     { NULL }
NULL               54 libavformat/url.c     if (!getaddrinfo(hostname, NULL, &hints, &ai)) {
NULL              109 libavformat/url.c     if (!av_stristart(p, "/", NULL) && root != rel)
NULL              116 libavformat/url.c     if (!av_stristart(tmp_path, "/", NULL) && root != rel)
NULL              197 libavformat/url.c     while (av_strstart(rel, "..", NULL) && sep) {
NULL               39 libavformat/urldecode.c     char *dest = NULL;
NULL               42 libavformat/urldecode.c         return NULL;
NULL               48 libavformat/urldecode.c         return NULL;
NULL              216 libavformat/utils.c         return NULL;
NULL              219 libavformat/utils.c         const AVCodec *probe_codec = NULL;
NULL              220 libavformat/utils.c         void *iter = NULL;
NULL              256 libavformat/utils.c             av_log(NULL, remaining ? AV_LOG_ERROR : AV_LOG_DEBUG, "Truncating packet of size %d to %"PRId64"\n", size, remaining+1);
NULL              307 libavformat/utils.c     pkt->data = NULL;
NULL              414 libavformat/utils.c     AVProbeData pd = { filename, NULL, 0 };
NULL              510 libavformat/utils.c             st->parser = NULL;
NULL              538 libavformat/utils.c     AVDictionary *tmp = NULL;
NULL              539 libavformat/utils.c     ID3v2ExtraMeta *id3v2_extra_meta = NULL;
NULL              544 libavformat/utils.c         av_log(NULL, AV_LOG_ERROR, "Input context has not been properly allocated by avformat_alloc_context() and is not NULL either\n");
NULL              632 libavformat/utils.c         s->internal->id3v2_meta = NULL;
NULL              681 libavformat/utils.c     *ps = NULL;
NULL              779 libavformat/utils.c     first_program = av_find_program_from_stream(s, NULL, stream_index);
NULL              785 libavformat/utils.c                 if (av_find_program_from_stream(s, NULL, i))
NULL              830 libavformat/utils.c     pkt->data = NULL;
NULL              841 libavformat/utils.c                 if ((err = probe_codec(s, st, NULL)) < 0)
NULL              865 libavformat/utils.c                     if ((err = probe_codec(s, st, NULL)) < 0)
NULL             1049 libavformat/utils.c     return NULL;
NULL             1433 libavformat/utils.c     *pkt_buf     = NULL;
NULL             1434 libavformat/utils.c     *pkt_buf_end = NULL;
NULL             1498 libavformat/utils.c             pkt->side_data          = NULL;
NULL             1545 libavformat/utils.c         st->parser = NULL;
NULL             1563 libavformat/utils.c         *pkt_buffer_end = NULL;
NULL             1576 libavformat/utils.c     AVDictionary *metadata = NULL;
NULL             1610 libavformat/utils.c                 st->parser = NULL;
NULL             1669 libavformat/utils.c             compute_pkt_fields(s, st, NULL, pkt, AV_NOPTS_VALUE, AV_NOPTS_VALUE);
NULL             1729 libavformat/utils.c                 if (av_packet_get_side_data(pkt, src_sd->type, NULL))
NULL             1749 libavformat/utils.c         av_opt_set_dict_val(s, "metadata", NULL, AV_OPT_SEARCH_CHILDREN);
NULL             1937 libavformat/utils.c             st->parser = NULL;
NULL             2668 libavformat/utils.c             for (p = NULL; (p = av_find_program_from_stream(ic, p, i)); ) {
NULL             2826 libavformat/utils.c             st->parser = NULL;
NULL             3066 libavformat/utils.c         AVDictionary *thread_opt = NULL;
NULL             3105 libavformat/utils.c            (!has_codec_parameters(st, NULL) || !has_decode_delay_been_guessed(st) ||
NULL             3655 libavformat/utils.c         AVDictionary *thread_opt = NULL;
NULL             3720 libavformat/utils.c         if (!has_codec_parameters(st, NULL) && st->request_probe <= 0) {
NULL             3754 libavformat/utils.c             if (!has_codec_parameters(st, NULL))
NULL             3955 libavformat/utils.c                          (options && i < orig_nb_streams) ? &options[i] : NULL);
NULL             3969 libavformat/utils.c             if (!has_codec_parameters(st, NULL)) {
NULL             3972 libavformat/utils.c                     AVDictionary *opts = NULL;
NULL             4004 libavformat/utils.c                                             ? &options[i] : NULL);
NULL             4005 libavformat/utils.c                 } while (err > 0 && !has_codec_parameters(st, NULL));
NULL             4233 libavformat/utils.c             last = NULL;
NULL             4241 libavformat/utils.c     return NULL;
NULL             4254 libavformat/utils.c     unsigned *program = NULL;
NULL             4255 libavformat/utils.c     const AVCodec *decoder = NULL, *best_decoder = NULL;
NULL             4258 libavformat/utils.c         AVProgram *p = av_find_program_from_stream(ic, NULL, related_stream);
NULL             4299 libavformat/utils.c             program    = NULL;
NULL             4504 libavformat/utils.c         pb = NULL;
NULL             4514 libavformat/utils.c     *ps = NULL;
NULL             4528 libavformat/utils.c         return NULL;
NULL             4532 libavformat/utils.c         return NULL;
NULL             4537 libavformat/utils.c         return NULL;
NULL             4540 libavformat/utils.c         return NULL;
NULL             4550 libavformat/utils.c         return NULL;
NULL             4563 libavformat/utils.c     st->internal->avctx = avcodec_alloc_context3(NULL);
NULL             4615 libavformat/utils.c     return NULL;
NULL             4620 libavformat/utils.c     AVProgram *program = NULL;
NULL             4632 libavformat/utils.c             return NULL;
NULL             4650 libavformat/utils.c     AVChapter *chapter = NULL;
NULL             4655 libavformat/utils.c         return NULL;
NULL             4665 libavformat/utils.c             return NULL;
NULL             4680 libavformat/utils.c     AVProgram *program = NULL;
NULL             4724 libavformat/utils.c         av_log(NULL, AV_LOG_WARNING, "NTP time format roll over detected\n");
NULL             4944 libavformat/utils.c             av_log(NULL, AV_LOG_DEBUG,
NULL             4948 libavformat/utils.c         av_log(NULL, AV_LOG_WARNING,
NULL             4952 libavformat/utils.c         av_log(NULL, AV_LOG_ERROR,
NULL             4976 libavformat/utils.c         char *dest = NULL, *dest_end;
NULL             5253 libavformat/utils.c                tag = av_dict_get(st->metadata, key, NULL, 0);
NULL             5324 libavformat/utils.c     const char *indexptr = NULL;
NULL             5325 libavformat/utils.c     AVProgram *p = NULL;
NULL             5349 libavformat/utils.c         ret = match_stream_specifier(s, candidate, spec, NULL, NULL);
NULL             5461 libavformat/utils.c     const uint8_t *data = NULL;
NULL             5512 libavformat/utils.c     return NULL;
NULL             5558 libavformat/utils.c         return NULL;
NULL             5563 libavformat/utils.c         return NULL;
NULL             5578 libavformat/utils.c         av_log(NULL, AV_LOG_ERROR, "Unknown bitstream filter '%s'\n", name);
NULL             5592 libavformat/utils.c         const AVOption *opt = av_opt_next(bsfc->priv_data, NULL);
NULL             5593 libavformat/utils.c         const char * shorthand[2] = {NULL};
NULL             5611 libavformat/utils.c     av_log(NULL, AV_LOG_VERBOSE,
NULL             5625 libavformat/utils.c         int a = av_bitstream_filter_filter(bsfc, codec, NULL,
NULL             5640 libavformat/utils.c                 new_pkt.buf = NULL;
NULL             5648 libavformat/utils.c                                            av_buffer_default_free, NULL, 0);
NULL             5650 libavformat/utils.c                 pkt->side_data = NULL;
NULL             5689 libavformat/utils.c     *pb = NULL;
NULL             5702 libavformat/utils.c     if ((entry = av_dict_get(s->metadata, "creation_time", NULL, 0))) {
NULL               44 libavformat/v210.c     st = avformat_new_stream(ctx, NULL);
NULL               85 libavformat/v210.c     { "video_size", "set frame size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },
NULL               87 libavformat/v210.c     { NULL },
NULL               38 libavformat/vag.c     st = avformat_new_stream(s, NULL);
NULL               67 libavformat/vapoursynth.c     {NULL}
NULL               89 libavformat/vapoursynth.c     vs->vsapi = NULL;
NULL               90 libavformat/vapoursynth.c     vs->vscore = NULL;
NULL               91 libavformat/vapoursynth.c     vs->outnode = NULL;
NULL              112 libavformat/vapoursynth.c     for (pd = av_pix_fmt_desc_next(NULL); pd; pd = av_pix_fmt_desc_next(pd)) {
NULL              176 libavformat/vapoursynth.c     char *buf = NULL;
NULL              188 libavformat/vapoursynth.c     vs->vss_state = av_buffer_create(NULL, 0, free_vss_state, vss_state, 0);
NULL              254 libavformat/vapoursynth.c     st = avformat_new_stream(s, NULL);
NULL              341 libavformat/vapoursynth.c     AVFrame *frame = NULL;
NULL              347 libavformat/vapoursynth.c     AVBufferRef *vsframe_ref = NULL;
NULL              362 libavformat/vapoursynth.c     vsframe_ref = av_buffer_create(NULL, 0, free_vsframe_ref, ref_data, AV_BUFFER_FLAG_READONLY);
NULL              438 libavformat/vapoursynth.c                                 free_frame, NULL, 0);
NULL              444 libavformat/vapoursynth.c     frame = NULL; // pkt owns it now
NULL               63 libavformat/vc1test.c     st = avformat_new_stream(s, NULL);
NULL              159 libavformat/vividas.c             avpriv_request_sample(NULL, "tiny aligned block\n");
NULL              204 libavformat/vividas.c         return NULL;
NULL              210 libavformat/vividas.c         return NULL;
NULL              214 libavformat/vividas.c         return NULL;
NULL              225 libavformat/vividas.c         buf = NULL;
NULL              240 libavformat/vividas.c         return NULL;
NULL              253 libavformat/vividas.c             return NULL;
NULL              258 libavformat/vividas.c         return NULL;
NULL              262 libavformat/vividas.c         return NULL;
NULL              271 libavformat/vividas.c         return NULL;
NULL              287 libavformat/vividas.c     ffio_init_context(pb, buf, size, 0, NULL, NULL, NULL, NULL);
NULL              319 libavformat/vividas.c         AVStream *st = avformat_new_stream(s, NULL);
NULL              354 libavformat/vividas.c         AVStream *st = avformat_new_stream(s, NULL);
NULL              436 libavformat/vividas.c     ffio_init_context(pb, buf, size, 0, NULL, NULL, NULL, NULL);
NULL              492 libavformat/vividas.c         viv->sb_pb = NULL;
NULL              503 libavformat/vividas.c     pb = avio_alloc_context(viv->sb_buf, size, 0, NULL, NULL, NULL, NULL);
NULL              131 libavformat/vivo.c     vst = avformat_new_stream(s, NULL);
NULL              132 libavformat/vivo.c     ast = avformat_new_stream(s, NULL);
NULL               63 libavformat/vocdec.c         AVStream *st = avformat_new_stream(s, NULL);
NULL               48 libavformat/vorbiscomment.c             AVDictionaryEntry *tag = NULL;
NULL               57 libavformat/vorbiscomment.c         AVDictionaryEntry *tag = NULL;
NULL               79 libavformat/vorbiscomment.c         AVDictionaryEntry *tag = NULL;
NULL              110 libavformat/vorbiscomment.c             tag = NULL;
NULL               57 libavformat/vpcc.c     if (desc == NULL) {
NULL              155 libavformat/vpcc.c     ret = ff_isom_get_vpcc_features(s, par, NULL, &vpcc);
NULL               49 libavformat/vpk.c     st = avformat_new_stream(s, NULL);
NULL               61 libavformat/vplayerdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL               95 libavformat/vqf.c     AVStream *st  = avformat_new_stream(s, NULL);
NULL              229 libavformat/vqf.c     ff_metadata_conv_ctx(s, NULL, vqf_metadata_conv);
NULL              165 libavformat/wavdec.c     *st = avformat_new_stream(s, NULL);
NULL              189 libavformat/wavdec.c     *st = avformat_new_stream(s, NULL);
NULL              336 libavformat/wavdec.c     AVStream *st         = NULL;
NULL              466 libavformat/wavdec.c             vst = avformat_new_stream(s, NULL);
NULL              507 libavformat/wavdec.c             ID3v2ExtraMeta *id3v2_extra_meta = NULL;
NULL              596 libavformat/wavdec.c     ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
NULL              597 libavformat/wavdec.c     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
NULL              756 libavformat/wavdec.c     { NULL },
NULL              816 libavformat/wavdec.c     st = avformat_new_stream(s, NULL);
NULL              890 libavformat/wavdec.c     ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
NULL              891 libavformat/wavdec.c     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
NULL               95 libavformat/wavenc.c     if (tag = av_dict_get(s->metadata, key, NULL, 0)) {
NULL              116 libavformat/wavenc.c     if (tmp_tag = av_dict_get(s->metadata, "time_reference", NULL, 0))
NULL              117 libavformat/wavenc.c         time_reference = strtoll(tmp_tag->value, NULL, 10);
NULL              121 libavformat/wavenc.c     if ((tmp_tag = av_dict_get(s->metadata, "umid", NULL, 0)) && strlen(tmp_tag->value) > 2) {
NULL              129 libavformat/wavenc.c             umidpart = strtoll(umidpart_str, NULL, 16);
NULL              138 libavformat/wavenc.c     if (tmp_tag = av_dict_get(s->metadata, "coding_history", NULL, 0))
NULL              494 libavformat/wavenc.c     { NULL },
NULL              104 libavformat/wc3movie.c     wc3->vpkt.data = NULL; wc3->vpkt.size = 0;
NULL              169 libavformat/wc3movie.c     st = avformat_new_stream(s, NULL);
NULL              180 libavformat/wc3movie.c     st = avformat_new_stream(s, NULL);
NULL              238 libavformat/wc3movie.c             wc3->vpkt.data = NULL; wc3->vpkt.size = 0;
NULL               56 libavformat/webm_chunk.c     AVDictionary *dict = NULL;
NULL               74 libavformat/webm_chunk.c     ret = avformat_alloc_output_context2(&wc->avf, oformat, NULL, NULL);
NULL               80 libavformat/webm_chunk.c     wc->header_filename = NULL;
NULL               93 libavformat/webm_chunk.c     if (!(st = avformat_new_stream(oc, NULL)))
NULL              161 libavformat/webm_chunk.c     ret = avformat_write_header(oc, NULL);
NULL              191 libavformat/webm_chunk.c     AVDictionary *options = NULL;
NULL              198 libavformat/webm_chunk.c         av_write_frame(oc, NULL);
NULL              200 libavformat/webm_chunk.c     oc->pb = NULL;
NULL              279 libavformat/webm_chunk.c     wc->avf = NULL;
NULL              285 libavformat/webm_chunk.c     { "header", "filename of the header where the initialization data will be written", OFFSET(header_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL              287 libavformat/webm_chunk.c     { "method", "set the HTTP method", OFFSET(http_method), AV_OPT_TYPE_STRING, {.str = NULL},  0, 0, AV_OPT_FLAG_ENCODING_PARAM },
NULL              288 libavformat/webm_chunk.c     { NULL },
NULL               72 libavformat/webmdashenc.c                                                   DURATION, NULL, 0);
NULL               98 libavformat/webmdashenc.c         time_t local_time = time(NULL);
NULL              129 libavformat/webmdashenc.c                                           CUE_TIMESTAMPS, NULL, 0);
NULL              133 libavformat/webmdashenc.c                                             CUE_TIMESTAMPS, NULL, 0);
NULL              142 libavformat/webmdashenc.c                                                     TRACK_NUMBER, NULL, 0);
NULL              147 libavformat/webmdashenc.c                                                    TRACK_NUMBER, NULL, 0);
NULL              168 libavformat/webmdashenc.c     AVDictionaryEntry *irange = av_dict_get(stream->metadata, INITIALIZATION_RANGE, NULL, 0);
NULL              169 libavformat/webmdashenc.c     AVDictionaryEntry *cues_start = av_dict_get(stream->metadata, CUES_START, NULL, 0);
NULL              170 libavformat/webmdashenc.c     AVDictionaryEntry *cues_end = av_dict_get(stream->metadata, CUES_END, NULL, 0);
NULL              171 libavformat/webmdashenc.c     AVDictionaryEntry *filename = av_dict_get(stream->metadata, FILENAME, NULL, 0);
NULL              172 libavformat/webmdashenc.c     AVDictionaryEntry *bandwidth = av_dict_get(stream->metadata, BANDWIDTH, NULL, 0);
NULL              275 libavformat/webmdashenc.c     char *underscore_pos = NULL;
NULL              276 libavformat/webmdashenc.c     char *period_pos = NULL;
NULL              355 libavformat/webmdashenc.c     lang = av_dict_get(s->streams[as->streams[0]]->metadata, "language", NULL, 0);
NULL              372 libavformat/webmdashenc.c                                             CLUSTER_KEYFRAME, NULL, 0);
NULL              380 libavformat/webmdashenc.c             av_dict_get(s->streams[as->streams[0]]->metadata, FILENAME, NULL, 0);
NULL              381 libavformat/webmdashenc.c         char *initialization_pattern = NULL;
NULL              382 libavformat/webmdashenc.c         char *media_pattern = NULL;
NULL              383 libavformat/webmdashenc.c         int ret = parse_filename(filename->value, NULL, &initialization_pattern,
NULL              400 libavformat/webmdashenc.c         char *representation_id = NULL;
NULL              404 libavformat/webmdashenc.c                 av_dict_get(s->streams[as->streams[i]]->metadata, FILENAME, NULL, 0);
NULL              407 libavformat/webmdashenc.c             if (ret = parse_filename(filename->value, &representation_id, NULL, NULL))
NULL              447 libavformat/webmdashenc.c             if (mem == NULL)
NULL              452 libavformat/webmdashenc.c             w->as[w->nb_as - 1].streams = NULL;
NULL              548 libavformat/webmdashenc.c     { NULL },
NULL              198 libavformat/webpenc.c     { NULL },
NULL               65 libavformat/webvttdec.c     AVStream *st = avformat_new_stream(s, NULL);
NULL              102 libavformat/webvttdec.c                 identifier = NULL;
NULL              169 libavformat/webvttdec.c     av_bprint_finalize(&cue,    NULL);
NULL              203 libavformat/webvttdec.c     { NULL }
NULL               98 libavformat/westwood_aud.c     st = avformat_new_stream(s, NULL);
NULL               91 libavformat/westwood_vqa.c     st = avformat_new_stream(s, NULL);
NULL              187 libavformat/westwood_vqa.c                     AVStream *st = avformat_new_stream(s, NULL);
NULL              104 libavformat/wsddec.c     st = avformat_new_stream(s, NULL);
NULL              159 libavformat/wtvdec.c         return NULL;
NULL              163 libavformat/wtvdec.c         return NULL;
NULL              169 libavformat/wtvdec.c             return NULL;
NULL              177 libavformat/wtvdec.c             return NULL;
NULL              188 libavformat/wtvdec.c             return NULL;
NULL              199 libavformat/wtvdec.c         return NULL;
NULL              206 libavformat/wtvdec.c         return NULL;
NULL              226 libavformat/wtvdec.c         return NULL;
NULL              234 libavformat/wtvdec.c         return NULL;
NULL              238 libavformat/wtvdec.c                            wtvfile_read_packet, NULL, wtvfile_seek);
NULL              292 libavformat/wtvdec.c     return NULL;
NULL              445 libavformat/wtvdec.c     st = avformat_new_stream(s, NULL);
NULL              554 libavformat/wtvdec.c     ff_metadata_conv(&s->metadata, NULL, ff_asf_metadata_conv);
NULL              567 libavformat/wtvdec.c     st->codecpar->codec_tag = ff_get_bmp_header(pb, st, NULL);
NULL              614 libavformat/wtvdec.c             return NULL;
NULL              615 libavformat/wtvdec.c         st = avformat_new_stream(s, NULL);
NULL              618 libavformat/wtvdec.c             return NULL;
NULL              652 libavformat/wtvdec.c             return NULL;
NULL              666 libavformat/wtvdec.c             return NULL;
NULL              670 libavformat/wtvdec.c                 return NULL;
NULL              693 libavformat/wtvdec.c             return NULL;
NULL              719 libavformat/wtvdec.c             return NULL;
NULL              729 libavformat/wtvdec.c             return NULL;
NULL              740 libavformat/wtvdec.c         return NULL;
NULL              747 libavformat/wtvdec.c     return NULL;
NULL              856 libavformat/wtvdec.c                 ff_parse_mpeg2_descriptor(s, st, 0, &pbuf, buf + buf_size, NULL, 0, 0, NULL);
NULL              529 libavformat/wtvenc.c     { ff_timeline_table_0_entries_Events_le16, sizeof(ff_timeline_table_0_entries_Events_le16), NULL},
NULL              530 libavformat/wtvenc.c     { ff_timeline_le16,                        sizeof(ff_timeline_le16),                        NULL},
NULL              532 libavformat/wtvenc.c     { ff_table_0_entries_legacy_attrib_le16,   sizeof(ff_table_0_entries_legacy_attrib_le16),   NULL},
NULL              533 libavformat/wtvenc.c     { table_0_redirector_legacy_attrib,        sizeof(table_0_redirector_legacy_attrib),        NULL},
NULL              535 libavformat/wtvenc.c     { ff_table_0_entries_time_le16,            sizeof(ff_table_0_entries_time_le16),            NULL},
NULL              677 libavformat/wtvenc.c     ff_metadata_conv(&s->metadata, ff_asf_metadata_conv, NULL);
NULL              683 libavformat/wtvenc.c         tag = av_dict_get(st->metadata, "title", NULL, 0);
NULL              713 libavformat/wtvenc.c         pos += metadata_header_size("WM/Picture") + attachment_value_size(&wctx->thumbnail, av_dict_get(st->metadata, "title", NULL, 0));
NULL              250 libavformat/wvdec.c     st = avformat_new_stream(s, NULL);
NULL              270 libavformat/wvdec.c         if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
NULL               37 libavformat/wvedec.c     st = avformat_new_stream(s, NULL);
NULL               72 libavformat/xa.c     st = avformat_new_stream(s, NULL);
NULL              291 libavformat/xmv.c         AVStream *vst = avformat_new_stream(s, NULL);
NULL              336 libavformat/xmv.c             AVStream *ast = avformat_new_stream(s, NULL);
NULL               43 libavformat/xvag.c     st = avformat_new_stream(s, NULL);
NULL               49 libavformat/xwma.c     uint32_t *dpds_table = NULL;
NULL               74 libavformat/xwma.c     st = avformat_new_stream(s, NULL);
NULL               66 libavformat/yop.c     audio_stream = avformat_new_stream(s, NULL);
NULL               67 libavformat/yop.c     video_stream = avformat_new_stream(s, NULL);
NULL              262 libavformat/yuv4mpegdec.c     st = avformat_new_stream(s, NULL);
NULL              271 libavresample/audio_convert.c         return NULL;
NULL              286 libavresample/audio_convert.c             return NULL;
NULL              126 libavresample/audio_data.c         return NULL;
NULL              130 libavresample/audio_data.c         return NULL;
NULL              135 libavresample/audio_data.c         return NULL;
NULL              153 libavresample/audio_data.c             return NULL;
NULL              184 libavresample/audio_data.c         uint8_t *new_data[AVRESAMPLE_MAX_CHANNELS] = { NULL };
NULL              288 libavresample/audio_mix.c     am->mix = am->mix_generic = NULL;
NULL              348 libavresample/audio_mix.c         return NULL;
NULL              406 libavresample/audio_mix.c     return NULL;
NULL              419 libavresample/audio_mix.c         am->matrix = NULL;
NULL              450 libavresample/audio_mix.c         uint8_t *data0[AVRESAMPLE_MAX_CHANNELS] = { NULL };
NULL              667 libavresample/audio_mix.c         am->matrix = NULL;
NULL              307 libavresample/dither.c         c->s16_data = NULL;
NULL              358 libavresample/dither.c         return NULL;
NULL              363 libavresample/dither.c         return NULL;
NULL              439 libavresample/dither.c     return NULL;
NULL               86 libavresample/options.c     { NULL },
NULL              102 libavresample/options.c         return NULL;
NULL              136 libavresample/resample.c         return NULL;
NULL              140 libavresample/resample.c         return NULL;
NULL              221 libavresample/resample.c     return NULL;
NULL              406 libavresample/resample.c         out_samples = resample(c, NULL, NULL, NULL, c->buffer->nb_samples,
NULL              194 libavresample/tests/avresample.c     uint8_t *in_buf = NULL;
NULL              195 libavresample/tests/avresample.c     uint8_t *out_buf = NULL;
NULL              218 libavresample/tests/avresample.c             av_log(NULL, AV_LOG_INFO, "Usage: avresample-test [<num formats> "
NULL              223 libavresample/tests/avresample.c         num_formats = strtol(argv[1], NULL, 0);
NULL              227 libavresample/tests/avresample.c         num_rates = strtol(argv[2], NULL, 0);
NULL              231 libavresample/tests/avresample.c         num_layouts = strtol(argv[3], NULL, 0);
NULL              252 libavresample/tests/avresample.c         av_log(NULL, AV_LOG_ERROR, "Error allocating AVAudioResampleContext\n");
NULL              282 libavresample/tests/avresample.c                             av_log(NULL, AV_LOG_INFO, "%s to %s, %d to %d channels, %d Hz to %d Hz\n",
NULL              314 libavresample/tests/avresample.c                                 av_log(NULL, AV_LOG_ERROR, "%s\n", errbuf);
NULL              317 libavresample/tests/avresample.c                             av_log(NULL, AV_LOG_INFO, "Converted %d samples to %d samples\n",
NULL              320 libavresample/tests/avresample.c                                 av_log(NULL, AV_LOG_INFO, "%d delay samples not converted\n",
NULL              323 libavresample/tests/avresample.c                                 av_log(NULL, AV_LOG_INFO, "%d samples available for output\n",
NULL              325 libavresample/tests/avresample.c                             av_log(NULL, AV_LOG_INFO, "\n");
NULL              268 libavresample/utils.c     avr->out_fifo = NULL;
NULL              320 libavresample/utils.c                                  &avr->ch_map_info : NULL);
NULL              387 libavresample/utils.c                                      &avr->ch_map_info : NULL);
NULL              419 libavresample/utils.c                                          &avr->ch_map_info : NULL);
NULL              435 libavresample/utils.c             return handle_buffered_output(avr, output ? &output_buffer : NULL,
NULL              436 libavresample/utils.c                                           NULL);
NULL              437 libavresample/utils.c         current_buffer = NULL;
NULL              501 libavresample/utils.c     return handle_buffered_output(avr, output ? &output_buffer : NULL,
NULL              554 libavresample/utils.c     uint8_t **out_data = NULL, **in_data = NULL;
NULL              119 libavutil/aes_ctr.c             av_aes_crypt(a->aes, a->encrypted_counter, a->counter, 1, NULL, 0);
NULL               82 libavutil/arm/cpu.c         if (av_strstart(buf, "Features", NULL)) {
NULL               67 libavutil/audio_fifo.c         return NULL;
NULL               71 libavutil/audio_fifo.c         return NULL;
NULL               93 libavutil/audio_fifo.c     return NULL;
NULL              129 libavutil/audio_fifo.c         ret = av_fifo_generic_write(af->buf[i], data[i], size, NULL);
NULL              150 libavutil/audio_fifo.c         if ((ret = av_fifo_generic_peek(af->buf[i], data[i], size, NULL)) < 0)
NULL              174 libavutil/audio_fifo.c         if ((ret = av_fifo_generic_peek_at(af->buf[i], data[i], offset, size, NULL)) < 0)
NULL              193 libavutil/audio_fifo.c         if (av_fifo_generic_read(af->buf[i], data[i], size, NULL) < 0)
NULL               39 libavutil/avassert.h         av_log(NULL, AV_LOG_PANIC, "Assertion %s failed at %s:%d\n",    \
NULL              735 libavutil/avsscanf.c     void *dest=NULL;
NULL               62 libavutil/avstring.c         if (av_stristart(s1, s2, NULL))
NULL               66 libavutil/avstring.c     return NULL;
NULL               80 libavutil/avstring.c     return NULL;
NULL              115 libavutil/avstring.c     char *p = NULL;
NULL              120 libavutil/avstring.c     len = vsnprintf(NULL, 0, fmt, va);
NULL              155 libavutil/avstring.c         return NULL;
NULL              189 libavutil/avstring.c         return NULL;
NULL              196 libavutil/avstring.c         *saveptr = NULL;
NULL              197 libavutil/avstring.c         return NULL;
NULL              207 libavutil/avstring.c         *saveptr = NULL;
NULL              237 libavutil/avstring.c     char *ret = NULL;
NULL              250 libavutil/avstring.c         av_bprint_finalize(&pbuf, NULL);
NULL              283 libavutil/avstring.c     char *p = path ? strrchr(path, '/') : NULL;
NULL              286 libavutil/avstring.c     char *q = path ? strrchr(path, '\\') : NULL;
NULL              287 libavutil/avstring.c     char *d = path ? strchr(path, ':')  : NULL;
NULL              315 libavutil/avstring.c         return NULL;
NULL              342 libavutil/avstring.c         av_bprint_finalize(&dstbuf, NULL);
NULL              149 libavutil/base64.c         return NULL;
NULL               49 libavutil/bprint.c     old_str = av_bprint_is_allocated(buf) ? buf->str : NULL;
NULL              103 libavutil/bprint.c         dst = room ? buf->str + buf->len : NULL;
NULL              126 libavutil/bprint.c         dst = room ? buf->str + buf->len : NULL;
NULL              224 libavutil/bprint.c     *mem = *actual_size ? buf->str + buf->len : NULL;
NULL              246 libavutil/bprint.c             buf->str = NULL;
NULL               33 libavutil/buffer.c     AVBufferRef *ref = NULL;
NULL               34 libavutil/buffer.c     AVBuffer    *buf = NULL;
NULL               38 libavutil/buffer.c         return NULL;
NULL               52 libavutil/buffer.c         return NULL;
NULL               69 libavutil/buffer.c     AVBufferRef *ret = NULL;
NULL               70 libavutil/buffer.c     uint8_t    *data = NULL;
NULL               74 libavutil/buffer.c         return NULL;
NULL               76 libavutil/buffer.c     ret = av_buffer_create(data, size, av_buffer_default_free, NULL, 0);
NULL               87 libavutil/buffer.c         return NULL;
NULL               98 libavutil/buffer.c         return NULL;
NULL              130 libavutil/buffer.c     buffer_replace(buf, NULL);
NULL              177 libavutil/buffer.c         uint8_t *data = av_realloc(NULL, size);
NULL              181 libavutil/buffer.c         buf = av_buffer_create(data, size, av_buffer_default_free, NULL, 0);
NULL              197 libavutil/buffer.c         AVBufferRef *new = NULL;
NULL              224 libavutil/buffer.c         return NULL;
NULL              226 libavutil/buffer.c     ff_mutex_init(&pool->mutex, NULL);
NULL              243 libavutil/buffer.c         return NULL;
NULL              245 libavutil/buffer.c     ff_mutex_init(&pool->mutex, NULL);
NULL              283 libavutil/buffer.c     *ppool = NULL;
NULL              318 libavutil/buffer.c         return NULL;
NULL              323 libavutil/buffer.c         return NULL;
NULL              349 libavutil/buffer.c             buf->next = NULL;
NULL              500 libavutil/cast5.c             decipher(cs, dst, src, NULL);
NULL               70 libavutil/channel_layout.c         return NULL;
NULL              247 libavutil/channel_layout.c         return NULL;
NULL              251 libavutil/channel_layout.c     return NULL;
NULL              258 libavutil/channel_layout.c         return NULL;
NULL              262 libavutil/channel_layout.c     return NULL;
NULL              172 libavutil/color_utils.c     avpriv_trc_function func = NULL;
NULL               86 libavutil/cpu.c         av_log(NULL, AV_LOG_WARNING, "MMX implied by specified flags\n");
NULL              132 libavutil/cpu.c         { "flags"   , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
NULL              134 libavutil/cpu.c         { "altivec" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ALTIVEC  },    .unit = "flags" },
NULL              136 libavutil/cpu.c         { "mmx"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_MMX      },    .unit = "flags" },
NULL              137 libavutil/cpu.c         { "mmxext"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_MMXEXT       },    .unit = "flags" },
NULL              138 libavutil/cpu.c         { "sse"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE          },    .unit = "flags" },
NULL              139 libavutil/cpu.c         { "sse2"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE2         },    .unit = "flags" },
NULL              140 libavutil/cpu.c         { "sse2slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE2SLOW     },    .unit = "flags" },
NULL              141 libavutil/cpu.c         { "sse3"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE3         },    .unit = "flags" },
NULL              142 libavutil/cpu.c         { "sse3slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE3SLOW     },    .unit = "flags" },
NULL              143 libavutil/cpu.c         { "ssse3"   , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSSE3        },    .unit = "flags" },
NULL              144 libavutil/cpu.c         { "atom"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ATOM     },    .unit = "flags" },
NULL              145 libavutil/cpu.c         { "sse4.1"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE4         },    .unit = "flags" },
NULL              146 libavutil/cpu.c         { "sse4.2"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE42        },    .unit = "flags" },
NULL              147 libavutil/cpu.c         { "avx"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AVX          },    .unit = "flags" },
NULL              148 libavutil/cpu.c         { "avxslow" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AVXSLOW      },    .unit = "flags" },
NULL              149 libavutil/cpu.c         { "xop"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_XOP          },    .unit = "flags" },
NULL              150 libavutil/cpu.c         { "fma3"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_FMA3         },    .unit = "flags" },
NULL              151 libavutil/cpu.c         { "fma4"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_FMA4         },    .unit = "flags" },
NULL              152 libavutil/cpu.c         { "avx2"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AVX2         },    .unit = "flags" },
NULL              153 libavutil/cpu.c         { "bmi1"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_BMI1     },    .unit = "flags" },
NULL              154 libavutil/cpu.c         { "bmi2"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_BMI2         },    .unit = "flags" },
NULL              155 libavutil/cpu.c         { "3dnow"   , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_3DNOW        },    .unit = "flags" },
NULL              156 libavutil/cpu.c         { "3dnowext", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_3DNOWEXT     },    .unit = "flags" },
NULL              157 libavutil/cpu.c         { "cmov",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_CMOV     },    .unit = "flags" },
NULL              158 libavutil/cpu.c         { "aesni"   , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AESNI        },    .unit = "flags" },
NULL              159 libavutil/cpu.c         { "avx512"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AVX512       },    .unit = "flags" },
NULL              161 libavutil/cpu.c         { "armv5te",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV5TE  },    .unit = "flags" },
NULL              162 libavutil/cpu.c         { "armv6",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV6    },    .unit = "flags" },
NULL              163 libavutil/cpu.c         { "armv6t2",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV6T2  },    .unit = "flags" },
NULL              164 libavutil/cpu.c         { "vfp",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP      },    .unit = "flags" },
NULL              165 libavutil/cpu.c         { "vfp_vm",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP_VM   },    .unit = "flags" },
NULL              166 libavutil/cpu.c         { "vfpv3",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFPV3    },    .unit = "flags" },
NULL              167 libavutil/cpu.c         { "neon",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_NEON     },    .unit = "flags" },
NULL              169 libavutil/cpu.c         { "armv8",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV8    },    .unit = "flags" },
NULL              170 libavutil/cpu.c         { "neon",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_NEON     },    .unit = "flags" },
NULL              171 libavutil/cpu.c         { "vfp",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP      },    .unit = "flags" },
NULL              173 libavutil/cpu.c         { NULL },
NULL              194 libavutil/cpu.c         { "flags"   , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
NULL              196 libavutil/cpu.c         { "altivec" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ALTIVEC  },    .unit = "flags" },
NULL              198 libavutil/cpu.c         { "mmx"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_MMX      },    .unit = "flags" },
NULL              199 libavutil/cpu.c         { "mmx2"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_MMX2     },    .unit = "flags" },
NULL              200 libavutil/cpu.c         { "mmxext"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_MMX2     },    .unit = "flags" },
NULL              201 libavutil/cpu.c         { "sse"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSE      },    .unit = "flags" },
NULL              202 libavutil/cpu.c         { "sse2"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSE2     },    .unit = "flags" },
NULL              203 libavutil/cpu.c         { "sse2slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSE2SLOW },    .unit = "flags" },
NULL              204 libavutil/cpu.c         { "sse3"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSE3     },    .unit = "flags" },
NULL              205 libavutil/cpu.c         { "sse3slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSE3SLOW },    .unit = "flags" },
NULL              206 libavutil/cpu.c         { "ssse3"   , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSSE3    },    .unit = "flags" },
NULL              207 libavutil/cpu.c         { "atom"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ATOM     },    .unit = "flags" },
NULL              208 libavutil/cpu.c         { "sse4.1"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSE4     },    .unit = "flags" },
NULL              209 libavutil/cpu.c         { "sse4.2"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SSE42    },    .unit = "flags" },
NULL              210 libavutil/cpu.c         { "avx"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_AVX      },    .unit = "flags" },
NULL              211 libavutil/cpu.c         { "avxslow" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_AVXSLOW  },    .unit = "flags" },
NULL              212 libavutil/cpu.c         { "xop"     , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_XOP      },    .unit = "flags" },
NULL              213 libavutil/cpu.c         { "fma3"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_FMA3     },    .unit = "flags" },
NULL              214 libavutil/cpu.c         { "fma4"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_FMA4     },    .unit = "flags" },
NULL              215 libavutil/cpu.c         { "avx2"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_AVX2     },    .unit = "flags" },
NULL              216 libavutil/cpu.c         { "bmi1"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_BMI1     },    .unit = "flags" },
NULL              217 libavutil/cpu.c         { "bmi2"    , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_BMI2     },    .unit = "flags" },
NULL              218 libavutil/cpu.c         { "3dnow"   , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_3DNOW    },    .unit = "flags" },
NULL              219 libavutil/cpu.c         { "3dnowext", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_3DNOWEXT },    .unit = "flags" },
NULL              220 libavutil/cpu.c         { "cmov",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_CMOV     },    .unit = "flags" },
NULL              221 libavutil/cpu.c         { "aesni",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_AESNI    },    .unit = "flags" },
NULL              222 libavutil/cpu.c         { "avx512"  , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_AVX512   },    .unit = "flags" },
NULL              227 libavutil/cpu.c         { "pentium2", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPU_FLAG_P2          },    .unit = "flags" },
NULL              228 libavutil/cpu.c         { "pentium3", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPU_FLAG_P3          },    .unit = "flags" },
NULL              229 libavutil/cpu.c         { "pentium4", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPU_FLAG_P4          },    .unit = "flags" },
NULL              235 libavutil/cpu.c         { "k6",       NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_MMX      },    .unit = "flags" },
NULL              236 libavutil/cpu.c         { "k62",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPU_FLAG_K62         },    .unit = "flags" },
NULL              237 libavutil/cpu.c         { "athlon",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPU_FLAG_ATHLON      },    .unit = "flags" },
NULL              238 libavutil/cpu.c         { "athlonxp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPU_FLAG_ATHLONXP    },    .unit = "flags" },
NULL              239 libavutil/cpu.c         { "k8",       NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPU_FLAG_K8          },    .unit = "flags" },
NULL              241 libavutil/cpu.c         { "armv5te",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV5TE  },    .unit = "flags" },
NULL              242 libavutil/cpu.c         { "armv6",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV6    },    .unit = "flags" },
NULL              243 libavutil/cpu.c         { "armv6t2",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV6T2  },    .unit = "flags" },
NULL              244 libavutil/cpu.c         { "vfp",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP      },    .unit = "flags" },
NULL              245 libavutil/cpu.c         { "vfp_vm",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP_VM   },    .unit = "flags" },
NULL              246 libavutil/cpu.c         { "vfpv3",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFPV3    },    .unit = "flags" },
NULL              247 libavutil/cpu.c         { "neon",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_NEON     },    .unit = "flags" },
NULL              248 libavutil/cpu.c         { "setend",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_SETEND   },    .unit = "flags" },
NULL              250 libavutil/cpu.c         { "armv8",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV8    },    .unit = "flags" },
NULL              251 libavutil/cpu.c         { "neon",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_NEON     },    .unit = "flags" },
NULL              252 libavutil/cpu.c         { "vfp",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP      },    .unit = "flags" },
NULL              254 libavutil/cpu.c         { NULL },
NULL              290 libavutil/cpu.c     if (sysctl(mib, 2, &nb_cpus, &len, NULL, 0) == -1)
NULL              302 libavutil/cpu.c         av_log(NULL, AV_LOG_DEBUG, "detected %d logical cores\n", nb_cpus);
NULL               46 libavutil/dict.c         return NULL;
NULL               67 libavutil/dict.c     return NULL;
NULL               74 libavutil/dict.c     AVDictionaryEntry *tag = NULL;
NULL               75 libavutil/dict.c     char *oldval = NULL, *copy_key = NULL, *copy_value = NULL;
NULL               78 libavutil/dict.c         tag = av_dict_get(m, key, NULL, flags);
NULL              161 libavutil/dict.c     char *val = NULL;
NULL              219 libavutil/dict.c     AVDictionaryEntry *t = NULL;
NULL              233 libavutil/dict.c     AVDictionaryEntry *t = NULL;
NULL               29 libavutil/dovi_meta.c         return NULL;
NULL               35 libavutil/downmix_info.c         return NULL;
NULL               45 libavutil/encryption_info.c         return NULL;
NULL               57 libavutil/encryption_info.c         return NULL;
NULL               69 libavutil/encryption_info.c         return NULL;
NULL               96 libavutil/encryption_info.c         return NULL;
NULL              103 libavutil/encryption_info.c         return NULL;
NULL              107 libavutil/encryption_info.c         return NULL;
NULL              133 libavutil/encryption_info.c         return NULL;
NULL              140 libavutil/encryption_info.c         return NULL;
NULL              184 libavutil/encryption_info.c         return NULL;
NULL              188 libavutil/encryption_info.c     info->key_ids = key_id_size ? av_mallocz_array(num_key_ids, sizeof(*info->key_ids)) : NULL;
NULL              198 libavutil/encryption_info.c         return NULL;
NULL              206 libavutil/encryption_info.c                 return NULL;
NULL              233 libavutil/encryption_info.c     AVEncryptionInitInfo *ret = NULL, *info, *temp_info;
NULL              238 libavutil/encryption_info.c         return NULL;
NULL              246 libavutil/encryption_info.c             return NULL;
NULL              257 libavutil/encryption_info.c             return NULL;
NULL              265 libavutil/encryption_info.c             return NULL;
NULL              302 libavutil/encryption_info.c             return NULL;
NULL              309 libavutil/encryption_info.c                 return NULL;
NULL              317 libavutil/encryption_info.c         return NULL;
NULL              108 libavutil/error.c     const struct error_entry *entry = NULL;
NULL               63 libavutil/eval.c     .option                    = NULL,
NULL              510 libavutil/eval.c         return NULL;
NULL              692 libavutil/eval.c     AVExpr *e = NULL;
NULL              733 libavutil/eval.c     e = NULL;
NULL              782 libavutil/eval.c     AVExpr *e = NULL;
NULL               31 libavutil/fifo.c         return NULL;
NULL               35 libavutil/fifo.c         return NULL;
NULL               67 libavutil/fifo.c         *f = NULL;
NULL               97 libavutil/fifo.c         av_fifo_generic_read(f, f2->buffer, len, NULL);
NULL               47 libavutil/file.c     .option                    = NULL,
NULL               62 libavutil/file.c     *bufptr = NULL;
NULL               90 libavutil/file.c         *bufptr = NULL;
NULL               95 libavutil/file.c     ptr = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
NULL              109 libavutil/file.c         mh = CreateFileMapping(fh, NULL, PAGE_READONLY, 0, 0, NULL);
NULL               88 libavutil/file_open.c             av_log(NULL, AV_LOG_DEBUG, "Failed to set close on exec\n");
NULL              104 libavutil/file_open.c     .option                    = NULL,
NULL              115 libavutil/file_open.c     void *ptr= tempnam(NULL, prefix);
NULL              170 libavutil/file_open.c         return NULL;
NULL              182 libavutil/file_open.c             return NULL;
NULL              188 libavutil/file_open.c         return NULL;
NULL              153 libavutil/fixed_dsp.c         return NULL;
NULL              139 libavutil/float_dsp.c         return NULL;
NULL               93 libavutil/frame.c     AVBufferRef *buf = NULL;
NULL              109 libavutil/frame.c             return NULL;
NULL              113 libavutil/frame.c             return NULL;
NULL              119 libavutil/frame.c     return buf ? buf->data : NULL;
NULL              135 libavutil/frame.c         return NULL;
NULL              195 libavutil/frame.c         return NULL;
NULL              197 libavutil/frame.c     frame->extended_data = NULL;
NULL              221 libavutil/frame.c     if ((ret = av_image_check_size(frame->width, frame->height, 0, NULL)) < 0)
NULL              243 libavutil/frame.c                                       NULL, frame->linesize)) < 0)
NULL              414 libavutil/frame.c     dst->qscale_table = NULL;
NULL              546 libavutil/frame.c         return NULL;
NULL              672 libavutil/frame.c             return NULL;
NULL              679 libavutil/frame.c         return NULL;
NULL              692 libavutil/frame.c     return NULL;
NULL              702 libavutil/frame.c         return NULL;
NULL              705 libavutil/frame.c         return NULL;
NULL              710 libavutil/frame.c         return NULL;
NULL              715 libavutil/frame.c         return NULL;
NULL              748 libavutil/frame.c     return NULL;
NULL              855 libavutil/frame.c     return NULL;
NULL              864 libavutil/frame.c         const AVComponentDescriptor *comp = NULL;
NULL               86 libavutil/hash.c     if (i < 0 || i >= NUM_HASHES) return NULL;
NULL              104 libavutil/hash.c     *ctx = NULL;
NULL               28 libavutil/hdr_dynamic_metadata.c         return NULL;
NULL               42 libavutil/hdr_dynamic_metadata.c         return NULL;
NULL               76 libavutil/hmac.c         return NULL;
NULL              128 libavutil/hmac.c         return NULL;
NULL              132 libavutil/hmac.c         return NULL;
NULL               65 libavutil/hwcontext.c     NULL,
NULL               98 libavutil/hwcontext.c         return NULL;
NULL              146 libavutil/hwcontext.c     const HWContextType *hw_type = NULL;
NULL              156 libavutil/hwcontext.c         return NULL;
NULL              160 libavutil/hwcontext.c         return NULL;
NULL              179 libavutil/hwcontext.c                            hwdevice_ctx_free, NULL,
NULL              197 libavutil/hwcontext.c     return NULL;
NULL              252 libavutil/hwcontext.c     AVBufferRef *buf, *device_ref = NULL;
NULL              256 libavutil/hwcontext.c         return NULL;
NULL              279 libavutil/hwcontext.c                            hwframe_ctx_free, NULL,
NULL              302 libavutil/hwcontext.c     return NULL;
NULL              571 libavutil/hwcontext.c         return NULL;
NULL              584 libavutil/hwcontext.c         return NULL;
NULL              588 libavutil/hwcontext.c         return NULL;
NULL              597 libavutil/hwcontext.c         return NULL;
NULL              613 libavutil/hwcontext.c     AVBufferRef *device_ref = NULL;
NULL              642 libavutil/hwcontext.c     *pdevice_ref = NULL;
NULL              651 libavutil/hwcontext.c     AVBufferRef *dst_ref = NULL, *tmp_ref;
NULL              710 libavutil/hwcontext.c     *dst_ref_ptr = NULL;
NULL              719 libavutil/hwcontext.c                                                NULL, flags);
NULL              853 libavutil/hwcontext.c     AVBufferRef   *dst_ref = NULL;
NULL              854 libavutil/hwcontext.c     AVHWFramesContext *dst = NULL;
NULL              104 libavutil/hwcontext_cuda.c     AVBufferRef *ret = NULL;
NULL              105 libavutil/hwcontext_cuda.c     CUcontext dummy = NULL;
NULL              111 libavutil/hwcontext_cuda.c         return NULL;
NULL              150 libavutil/hwcontext_cuda.c         ctx->internal->pool_internal = av_buffer_pool_init2(size, ctx, cuda_pool_alloc, NULL);
NULL              277 libavutil/hwcontext_cuda.c             hwctx->cuda_ctx = NULL;
NULL              357 libavutil/hwcontext_cuda.c     hwctx->stream = NULL;
NULL              371 libavutil/hwcontext_cuda.c         device_idx = strtol(device, NULL, 0);
NULL              402 libavutil/hwcontext_cuda.c     const char *src_uuid = NULL;
NULL              110 libavutil/hwcontext_d3d11va.c     frames_hwctx->texture = NULL;
NULL              114 libavutil/hwcontext_d3d11va.c     s->staging_texture = NULL;
NULL              161 libavutil/hwcontext_d3d11va.c         return NULL;
NULL              171 libavutil/hwcontext_d3d11va.c         return NULL;
NULL              196 libavutil/hwcontext_d3d11va.c     hr = ID3D11Device_CreateTexture2D(device_hwctx->device, &texDesc, NULL, &tex);
NULL              199 libavutil/hwcontext_d3d11va.c         return NULL;
NULL              219 libavutil/hwcontext_d3d11va.c         return NULL;
NULL              271 libavutil/hwcontext_d3d11va.c         hr = ID3D11Device_CreateTexture2D(device_hwctx->device, &texDesc, NULL, &hwctx->texture);
NULL              279 libavutil/hwcontext_d3d11va.c                                                         ctx, d3d11va_pool_alloc, NULL);
NULL              344 libavutil/hwcontext_d3d11va.c     hr = ID3D11Device_CreateTexture2D(device_hwctx->device, &texDesc, NULL, &s->staging_texture);
NULL              405 libavutil/hwcontext_d3d11va.c                                                   texture, index, NULL);
NULL              433 libavutil/hwcontext_d3d11va.c                                                   staging, 0, NULL);
NULL              451 libavutil/hwcontext_d3d11va.c         device_hwctx->lock_ctx = CreateMutex(NULL, 0, NULL);
NULL              453 libavutil/hwcontext_d3d11va.c             av_log(NULL, AV_LOG_ERROR, "Failed to create a mutex\n");
NULL              489 libavutil/hwcontext_d3d11va.c         device_hwctx->device = NULL;
NULL              494 libavutil/hwcontext_d3d11va.c         device_hwctx->device_context = NULL;
NULL              499 libavutil/hwcontext_d3d11va.c         device_hwctx->video_device = NULL;
NULL              504 libavutil/hwcontext_d3d11va.c         device_hwctx->video_context = NULL;
NULL              510 libavutil/hwcontext_d3d11va.c         device_hwctx->lock = NULL;
NULL              520 libavutil/hwcontext_d3d11va.c     IDXGIAdapter           *pAdapter = NULL;
NULL              523 libavutil/hwcontext_d3d11va.c     int is_debug       = !!av_dict_get(opts, "debug", NULL, 0);
NULL              548 libavutil/hwcontext_d3d11va.c                 pAdapter = NULL;
NULL              562 libavutil/hwcontext_d3d11va.c     hr = mD3D11CreateDevice(pAdapter, pAdapter ? D3D_DRIVER_TYPE_UNKNOWN : D3D_DRIVER_TYPE_HARDWARE, NULL, creationFlags, NULL, 0,
NULL              563 libavutil/hwcontext_d3d11va.c                    D3D11_SDK_VERSION, &device_hwctx->device, NULL, NULL);
NULL              584 libavutil/hwcontext_d3d11va.c                 IDXGIDebug *dxgi_debug = NULL;
NULL              125 libavutil/hwcontext_drm.c         addr = mmap(NULL, desc->objects[i].size, mmap_prot, MAP_SHARED,
NULL              111 libavutil/hwcontext_dxva2.c         s->service = NULL;
NULL              139 libavutil/hwcontext_dxva2.c     return NULL;
NULL              192 libavutil/hwcontext_dxva2.c                                                         s->surfaces_internal, NULL);
NULL              199 libavutil/hwcontext_dxva2.c                                                         ctx, dxva2_pool_alloc, NULL);
NULL              299 libavutil/hwcontext_dxva2.c     hr = IDirect3DSurface9_LockRect(surface, &LockedRect, NULL, lock_flags);
NULL              473 libavutil/hwcontext_dxva2.c     IDirect3D9Ex *d3d9ex = NULL;
NULL              474 libavutil/hwcontext_dxva2.c     IDirect3DDevice9Ex *exdev = NULL;
NULL              485 libavutil/hwcontext_dxva2.c     hr = IDirect3D9Ex_GetAdapterDisplayModeEx(d3d9ex, adapter, &modeex, NULL);
NULL              495 libavutil/hwcontext_dxva2.c                                      &d3dpp, NULL, &exdev);
NULL              512 libavutil/hwcontext_dxva2.c     pCreateDeviceManager9 *createDeviceManager = NULL;
NULL              208 libavutil/hwcontext_opencl.c     cle = clGetPlatformInfo(platform_id, key, 0, NULL, &size);
NULL              210 libavutil/hwcontext_opencl.c         return NULL;
NULL              213 libavutil/hwcontext_opencl.c         return NULL;
NULL              217 libavutil/hwcontext_opencl.c         return NULL;
NULL              229 libavutil/hwcontext_opencl.c     cle = clGetDeviceInfo(device_id, key, 0, NULL, &size);
NULL              231 libavutil/hwcontext_opencl.c         return NULL;
NULL              234 libavutil/hwcontext_opencl.c         return NULL;
NULL              238 libavutil/hwcontext_opencl.c         return NULL;
NULL              298 libavutil/hwcontext_opencl.c     cle = clGetPlatformIDs(0, NULL, nb_platforms);
NULL              311 libavutil/hwcontext_opencl.c     cle = clGetPlatformIDs(*nb_platforms, *platforms, NULL);
NULL              334 libavutil/hwcontext_opencl.c                             NULL, 0);
NULL              367 libavutil/hwcontext_opencl.c                          0, NULL, nb_devices);
NULL              386 libavutil/hwcontext_opencl.c                          *nb_devices, *devices, NULL);
NULL              407 libavutil/hwcontext_opencl.c     param = av_dict_get(opts, "device_type", NULL, 0);
NULL              425 libavutil/hwcontext_opencl.c                               sizeof(device_type), &device_type, NULL);
NULL              440 libavutil/hwcontext_opencl.c                             NULL, 0);
NULL              492 libavutil/hwcontext_opencl.c     cl_platform_id *platforms = NULL;
NULL              495 libavutil/hwcontext_opencl.c     cl_device_id   *devices = NULL;
NULL              499 libavutil/hwcontext_opencl.c     char *platform_name_src = NULL,
NULL              500 libavutil/hwcontext_opencl.c          *device_name_src   = NULL;
NULL              650 libavutil/hwcontext_opencl.c     return opencl_device_create_internal(hwdev, &selector, NULL);
NULL              680 libavutil/hwcontext_opencl.c                           NULL);
NULL              722 libavutil/hwcontext_opencl.c         cl_context_properties *props = NULL;
NULL              734 libavutil/hwcontext_opencl.c                                0, NULL, &props_size);
NULL              752 libavutil/hwcontext_opencl.c                                props_size, props, NULL);
NULL              759 libavutil/hwcontext_opencl.c         va_display = NULL;
NULL              900 libavutil/hwcontext_opencl.c         priv->command_queue = NULL;
NULL              946 libavutil/hwcontext_opencl.c         CL_PREFERRED_DEVICES_FOR_VA_API_INTEL, 0, NULL, nb_devices);
NULL              964 libavutil/hwcontext_opencl.c         CL_PREFERRED_DEVICES_FOR_VA_API_INTEL, *nb_devices, *devices, NULL);
NULL             1034 libavutil/hwcontext_opencl.c         0, NULL, nb_devices);
NULL             1053 libavutil/hwcontext_opencl.c         *nb_devices, *devices, NULL);
NULL             1105 libavutil/hwcontext_opencl.c                                      0, NULL, nb_devices);
NULL             1124 libavutil/hwcontext_opencl.c                                      *nb_devices, *devices, NULL);
NULL             1146 libavutil/hwcontext_opencl.c                           sizeof(device_type), &device_type, NULL);
NULL             1210 libavutil/hwcontext_opencl.c             AVDictionary *selector_opts = NULL;
NULL             1223 libavutil/hwcontext_opencl.c                     .filter_device       = NULL,
NULL             1225 libavutil/hwcontext_opencl.c                 err = opencl_device_create_internal(hwdev, &selector, NULL);
NULL             1349 libavutil/hwcontext_opencl.c                 .context             = NULL,
NULL             1356 libavutil/hwcontext_opencl.c             err = opencl_device_create_internal(hwdev, &selector, NULL);
NULL             1481 libavutil/hwcontext_opencl.c     cl_image_format *image_formats = NULL;
NULL             1488 libavutil/hwcontext_opencl.c                           sizeof(max_width), &max_width, NULL);
NULL             1496 libavutil/hwcontext_opencl.c                           sizeof(max_height), &max_height, NULL);
NULL             1509 libavutil/hwcontext_opencl.c                                      0, NULL, &nb_image_formats);
NULL             1534 libavutil/hwcontext_opencl.c                                      image_formats, NULL);
NULL             1634 libavutil/hwcontext_opencl.c         return NULL;
NULL             1650 libavutil/hwcontext_opencl.c                               &image_format, &image_desc, NULL, &cle);
NULL             1673 libavutil/hwcontext_opencl.c     return NULL;
NULL             1700 libavutil/hwcontext_opencl.c                                  &opencl_pool_alloc, NULL);
NULL             1735 libavutil/hwcontext_opencl.c         priv->command_queue = NULL;
NULL             1842 libavutil/hwcontext_opencl.c                                  0, NULL, &events[p]);
NULL             1897 libavutil/hwcontext_opencl.c                                   0, NULL, &events[p]);
NULL             1934 libavutil/hwcontext_opencl.c                                       0, NULL, &events[e]);
NULL             1998 libavutil/hwcontext_opencl.c                               &row_pitch, NULL, 0, NULL,
NULL             2034 libavutil/hwcontext_opencl.c                                 0, NULL, &events[p]);
NULL             2214 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2293 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2340 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2380 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2407 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2453 libavutil/hwcontext_opencl.c             .shared_handle = NULL,
NULL             2502 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2535 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2562 libavutil/hwcontext_opencl.c         0, NULL, &event);
NULL             2673 libavutil/hwcontext_opencl.c     DRMARMtoOpenCLMapping *mapping = NULL;
NULL             2757 libavutil/hwcontext_opencl.c                               &image_format, &image_desc, NULL, &cle);
NULL              172 libavutil/hwcontext_qsv.c     s->session_download = NULL;
NULL              179 libavutil/hwcontext_qsv.c     s->session_upload = NULL;
NULL              206 libavutil/hwcontext_qsv.c                                 sizeof(*hwctx->surfaces), qsv_pool_release_dummy, NULL, 0);
NULL              209 libavutil/hwcontext_qsv.c     return NULL;
NULL              218 libavutil/hwcontext_qsv.c     AVBufferRef *child_device_ref = NULL;
NULL              219 libavutil/hwcontext_qsv.c     AVBufferRef *child_frames_ref = NULL;
NULL              307 libavutil/hwcontext_qsv.c     child_frames_ref          = NULL;
NULL              381 libavutil/hwcontext_qsv.c                                                         ctx, qsv_pool_alloc, NULL);
NULL              510 libavutil/hwcontext_qsv.c         *session = NULL;
NULL              568 libavutil/hwcontext_qsv.c     s->session_download = NULL;
NULL              569 libavutil/hwcontext_qsv.c     s->session_upload   = NULL;
NULL              575 libavutil/hwcontext_qsv.c     pthread_mutex_init(&s->session_lock, NULL);
NULL              576 libavutil/hwcontext_qsv.c     pthread_cond_init(&s->session_cond, NULL);
NULL              694 libavutil/hwcontext_qsv.c                                     dst, src, NULL, NULL);
NULL              758 libavutil/hwcontext_qsv.c     dummy->buf[0]        = NULL;
NULL              759 libavutil/hwcontext_qsv.c     dummy->data[3]       = NULL;
NULL              760 libavutil/hwcontext_qsv.c     dummy->hw_frames_ctx = NULL;
NULL              817 libavutil/hwcontext_qsv.c     mfxSyncPoint sync = NULL;
NULL              858 libavutil/hwcontext_qsv.c         err = MFXVideoVPP_RunFrameVPPAsync(s->session_download, in, &out, NULL, &sync);
NULL              886 libavutil/hwcontext_qsv.c     mfxSyncPoint sync = NULL;
NULL              950 libavutil/hwcontext_qsv.c         err = MFXVideoVPP_RunFrameVPPAsync(s->session_upload, &in, out, NULL, &sync);
NULL             1053 libavutil/hwcontext_qsv.c                                 dst, src, NULL, NULL);
NULL             1127 libavutil/hwcontext_qsv.c             impl = strtol(device, NULL, 0);
NULL             1242 libavutil/hwcontext_qsv.c     e = av_dict_get(opts, "child_device", NULL, 0);
NULL             1244 libavutil/hwcontext_qsv.c     child_device_opts = NULL;
NULL             1262 libavutil/hwcontext_qsv.c                                  e ? e->value : NULL, child_device_opts, 0);
NULL              149 libavutil/hwcontext_vaapi.c     return NULL;
NULL              159 libavutil/hwcontext_vaapi.c     return NULL;
NULL              196 libavutil/hwcontext_vaapi.c     VASurfaceAttrib *attr_list = NULL;
NULL              258 libavutil/hwcontext_vaapi.c             constraints->valid_sw_formats = NULL;
NULL              335 libavutil/hwcontext_vaapi.c     VAImageFormat *image_list = NULL;
NULL              456 libavutil/hwcontext_vaapi.c         return NULL;
NULL              465 libavutil/hwcontext_vaapi.c         return NULL;
NULL              474 libavutil/hwcontext_vaapi.c         return NULL;
NULL              495 libavutil/hwcontext_vaapi.c     AVBufferRef *test_surface = NULL;
NULL              548 libavutil/hwcontext_vaapi.c             ctx->attributes = NULL;
NULL              569 libavutil/hwcontext_vaapi.c             avfc->surface_ids = NULL;
NULL              574 libavutil/hwcontext_vaapi.c                                  &vaapi_pool_alloc, NULL);
NULL              746 libavutil/hwcontext_vaapi.c     void *address = NULL;
NULL              939 libavutil/hwcontext_vaapi.c         err = vaapi_get_image_format(hwfc->device_ctx, dst->format, NULL);
NULL             1135 libavutil/hwcontext_vaapi.c     AVDRMFrameDescriptor *drm_desc = NULL;
NULL             1250 libavutil/hwcontext_vaapi.c     VAAPIDRMImageBufferMapping *mapping = NULL;
NULL             1475 libavutil/hwcontext_vaapi.c     VADisplay display = NULL;
NULL             1488 libavutil/hwcontext_vaapi.c     ent = av_dict_get(opts, "connection_type", NULL, 0);
NULL             1524 libavutil/hwcontext_vaapi.c             kernel_driver = av_dict_get(opts, "kernel_driver", NULL, 0);
NULL             1606 libavutil/hwcontext_vaapi.c     ent = av_dict_get(opts, "driver", NULL, 0);
NULL              229 libavutil/hwcontext_vdpau.c         return NULL;
NULL              236 libavutil/hwcontext_vdpau.c         return NULL;
NULL              266 libavutil/hwcontext_vdpau.c                                                             vdpau_pool_alloc, NULL);
NULL              180 libavutil/hwcontext_vulkan.c     return NULL;
NULL              302 libavutil/hwcontext_vulkan.c     const char **extension_names = NULL;
NULL              310 libavutil/hwcontext_vulkan.c     char *user_exts_str = NULL;
NULL              319 libavutil/hwcontext_vulkan.c         user_exts = av_dict_get(opts, "instance_extensions", NULL, 0);
NULL              327 libavutil/hwcontext_vulkan.c         vkEnumerateInstanceExtensionProperties(NULL, &sup_ext_count, NULL);
NULL              331 libavutil/hwcontext_vulkan.c         vkEnumerateInstanceExtensionProperties(NULL, &sup_ext_count, sup_ext);
NULL              336 libavutil/hwcontext_vulkan.c         user_exts = av_dict_get(opts, "device_extensions", NULL, 0);
NULL              344 libavutil/hwcontext_vulkan.c         vkEnumerateDeviceExtensionProperties(hwctx->phys_dev, NULL,
NULL              345 libavutil/hwcontext_vulkan.c                                              &sup_ext_count, NULL);
NULL              349 libavutil/hwcontext_vulkan.c         vkEnumerateDeviceExtensionProperties(hwctx->phys_dev, NULL,
NULL              407 libavutil/hwcontext_vulkan.c             token = av_strtok(NULL, "+", &save);
NULL              435 libavutil/hwcontext_vulkan.c     AVDictionaryEntry *debug_opt = av_dict_get(opts, "debug", NULL, 0);
NULL              436 libavutil/hwcontext_vulkan.c     const int debug_mode = debug_opt && strtol(debug_opt->value, NULL, 10);
NULL              526 libavutil/hwcontext_vulkan.c     VkPhysicalDevice *devices = NULL;
NULL              527 libavutil/hwcontext_vulkan.c     VkPhysicalDeviceIDProperties *idp = NULL;
NULL              528 libavutil/hwcontext_vulkan.c     VkPhysicalDeviceProperties2 *prop = NULL;
NULL              531 libavutil/hwcontext_vulkan.c     ret = vkEnumeratePhysicalDevices(hwctx->inst, &num, NULL);
NULL              646 libavutil/hwcontext_vulkan.c     VkQueueFamilyProperties *qs = NULL;
NULL              652 libavutil/hwcontext_vulkan.c     vkGetPhysicalDeviceQueueFamilyProperties(hwctx->phys_dev, &num, NULL);
NULL             1041 libavutil/hwcontext_vulkan.c     opt_d = av_dict_get(opts, "linear_images", NULL, 0);
NULL             1043 libavutil/hwcontext_vulkan.c         p->use_linear_images = strtol(opt_d->value, NULL, 10);
NULL             1089 libavutil/hwcontext_vulkan.c     vkGetPhysicalDeviceQueueFamilyProperties(hwctx->phys_dev, &queue_num, NULL);
NULL             1127 libavutil/hwcontext_vulkan.c         char *end = NULL;
NULL             1497 libavutil/hwcontext_vulkan.c                          0, 0, NULL, 0, NULL, planes, img_bar);
NULL             1522 libavutil/hwcontext_vulkan.c         .pNext = p->extensions & EXT_EXTERNAL_FD_SEM ? &ext_sem_info : NULL,
NULL             1615 libavutil/hwcontext_vulkan.c         .pNext  = !exp ? NULL : &enext,
NULL             1635 libavutil/hwcontext_vulkan.c     AVBufferRef *avbuf = NULL;
NULL             1663 libavutil/hwcontext_vulkan.c                        eiinfo.handleTypes ? &eiinfo : NULL);
NULL             1665 libavutil/hwcontext_vulkan.c         return NULL;
NULL             1684 libavutil/hwcontext_vulkan.c     return NULL;
NULL             1742 libavutil/hwcontext_vulkan.c                                                              NULL);
NULL             2005 libavutil/hwcontext_vulkan.c             .pNext       = has_modifiers ? &drm_info : NULL,
NULL             2149 libavutil/hwcontext_vulkan.c             bind_info[bind_counts].pNext  = signal_p ? &plane_info[bind_counts] : NULL;
NULL             2194 libavutil/hwcontext_vulkan.c     VulkanMapping *map = NULL;
NULL             2470 libavutil/hwcontext_vulkan.c     dst_f->internal = NULL;
NULL             2738 libavutil/hwcontext_vulkan.c     ret = vkCreateBuffer(hwctx->act_dev, &buf_spawn, NULL, &vkbuf->buf);
NULL             2934 libavutil/hwcontext_vulkan.c                              0, NULL, 0, NULL, bar_num, img_bar);
NULL             3047 libavutil/hwcontext_vulkan.c                          VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT, NULL,
NULL             3048 libavutil/hwcontext_vulkan.c                          host_mapped[i] ? &import_desc : NULL);
NULL             3168 libavutil/hwcontext_vulkan.c     dst_f->internal = NULL;
NULL             3231 libavutil/hwcontext_vulkan.c                          VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT, NULL,
NULL             3232 libavutil/hwcontext_vulkan.c                          host_mapped[i] ? &import_desc : NULL);
NULL              202 libavutil/imgutils.c     if ((ret = av_image_check_size(w, h, 0, NULL)) < 0)
NULL              210 libavutil/imgutils.c     if ((ret = av_image_fill_pointers(pointers, pix_fmt, h, NULL, linesizes)) < 0)
NULL              222 libavutil/imgutils.c             av_log(NULL, AV_LOG_ERROR, "Formats with a palette require a minimum alignment of 4\n");
NULL              247 libavutil/imgutils.c     .option                    = NULL,
NULL              374 libavutil/imgutils.c                 av_log(NULL, AV_LOG_ERROR, "av_image_get_linesize failed\n");
NULL              417 libavutil/imgutils.c     ret = av_image_check_size(width, height, 0, NULL);
NULL              441 libavutil/imgutils.c     ret = av_image_check_size(width, height, 0, NULL);
NULL              449 libavutil/imgutils.c     return av_image_fill_arrays(data, linesize, NULL, pix_fmt,
NULL              184 libavutil/internal.h #   define NULL_IF_CONFIG_SMALL(x) NULL
NULL              225 libavutil/internal.h #   define ONLY_IF_THREADS_ENABLED(x) NULL
NULL              143 libavutil/log.c         WriteConsoleW(con, line, nb_chars, &written, NULL);
NULL              295 libavutil/log.c     AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
NULL              340 libavutil/log.c     format_line(ptr, level, fmt, vl, part, print_prefix, NULL);
NULL              342 libavutil/log.c     av_bprint_finalize(part+3, NULL);
NULL              400 libavutil/log.c     av_bprint_finalize(part+3, NULL);
NULL              426 libavutil/log.c     AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
NULL               38 libavutil/mastering_display_metadata.c         return NULL;
NULL               61 libavutil/mastering_display_metadata.c         return NULL;
NULL               79 libavutil/mem.c     void *ptr = NULL;
NULL               82 libavutil/mem.c         return NULL;
NULL               87 libavutil/mem.c         ptr = NULL;
NULL              137 libavutil/mem.c         return NULL;
NULL              153 libavutil/mem.c         return NULL;
NULL              186 libavutil/mem.c         return NULL;
NULL              194 libavutil/mem.c         return NULL;
NULL              202 libavutil/mem.c         return NULL;
NULL              233 libavutil/mem.c     memcpy(arg, &(void *){ NULL }, sizeof(val));
NULL              249 libavutil/mem.c         return NULL;
NULL              255 libavutil/mem.c     char *ptr = NULL;
NULL              258 libavutil/mem.c         ptr = av_realloc(NULL, len);
NULL              267 libavutil/mem.c     char *ret = NULL, *end;
NULL              270 libavutil/mem.c         return NULL;
NULL              276 libavutil/mem.c     ret = av_realloc(NULL, len + 1);
NULL              278 libavutil/mem.c         return NULL;
NULL              287 libavutil/mem.c     void *ptr = NULL;
NULL              327 libavutil/mem.c     uint8_t *tab_elem_data = NULL;
NULL              485 libavutil/mem.c         return NULL;
NULL               49 libavutil/opt.c         return NULL;
NULL               55 libavutil/opt.c     return NULL;
NULL              269 libavutil/opt.c                     for (o_named = NULL; o_named = av_opt_next(target_obj, o_named); ) {
NULL              292 libavutil/opt.c                 const_names [ci] = NULL;
NULL              296 libavutil/opt.c                                             const_values, NULL, NULL, NULL, NULL, NULL, 0, obj);
NULL              304 libavutil/opt.c             read_number(o, dst, NULL, NULL, &intnum);
NULL              378 libavutil/opt.c         char *end = NULL;
NULL              449 libavutil/opt.c     AVDictionary *options = NULL;
NULL              469 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              574 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              604 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              615 libavutil/opt.c     ptr = len ? av_malloc(len) : NULL;
NULL              634 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              656 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              674 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0,
NULL              712 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              730 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              782 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              829 libavutil/opt.c             *out_val = NULL;
NULL              837 libavutil/opt.c             *out_val = NULL;
NULL              878 libavutil/opt.c             *out_val = NULL;
NULL              896 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              918 libavutil/opt.c     if ((ret = get_number(obj, name, NULL, &num, &den, &intnum, search_flags)) < 0)
NULL              930 libavutil/opt.c     if ((ret = get_number(obj, name, NULL, &num, &den, &intnum, search_flags)) < 0)
NULL              942 libavutil/opt.c     if ((ret = get_number(obj, name, NULL, &num, &den, &intnum, search_flags)) < 0)
NULL              955 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL              976 libavutil/opt.c     if ((ret = get_number(obj, name, NULL, &num, &den, &intnum, search_flags)) < 0)
NULL              990 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL             1017 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL             1035 libavutil/opt.c     const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj);
NULL             1050 libavutil/opt.c     const AVOption *field = av_opt_find(obj, field_name, NULL, 0, 0);
NULL             1052 libavutil/opt.c                                         field ? field->unit : NULL, 0, 0);
NULL             1113 libavutil/opt.c     const AVOption *opt = NULL;
NULL             1116 libavutil/opt.c         return NULL;
NULL             1121 libavutil/opt.c     return NULL;
NULL             1126 libavutil/opt.c     const AVOption *opt = NULL;
NULL             1131 libavutil/opt.c         return NULL;
NULL             1142 libavutil/opt.c     return NULL;
NULL             1148 libavutil/opt.c     const AVOption *opt = NULL;
NULL             1352 libavutil/opt.c     opt_list(obj, av_log_obj, NULL, req_flags, rej_flags, -1);
NULL             1364 libavutil/opt.c     const AVOption *opt = NULL;
NULL             1542 libavutil/opt.c     char *key = NULL, *val;
NULL             1563 libavutil/opt.c     const char *dummy_shorthand = NULL;
NULL             1612 libavutil/opt.c     const AVOption *o = NULL;
NULL             1632 libavutil/opt.c     AVDictionaryEntry *t = NULL;
NULL             1633 libavutil/opt.c     AVDictionary    *tmp = NULL;
NULL             1663 libavutil/opt.c     return av_opt_find2(obj, name, unit, opt_flags, search_flags, NULL);
NULL             1670 libavutil/opt.c     const AVOption *o = NULL;
NULL             1673 libavutil/opt.c         return NULL;
NULL             1678 libavutil/opt.c         return NULL;
NULL             1682 libavutil/opt.c             const AVClass *child = NULL;
NULL             1684 libavutil/opt.c                 if (o = av_opt_find2(&child, name, unit, opt_flags, search_flags, NULL))
NULL             1687 libavutil/opt.c             void *child = NULL;
NULL             1702 libavutil/opt.c                     *target_obj = NULL;
NULL             1707 libavutil/opt.c     return NULL;
NULL             1715 libavutil/opt.c     return NULL;
NULL             1722 libavutil/opt.c     return NULL;
NULL             1727 libavutil/opt.c     const AVOption *opt= av_opt_find2(&class, name, NULL, 0, AV_OPT_SEARCH_FAKE_OBJ, NULL);
NULL             1729 libavutil/opt.c         return NULL;
NULL             1770 libavutil/opt.c     const AVOption *o = NULL;
NULL             1810 libavutil/opt.c             *ddict = NULL;
NULL             1829 libavutil/opt.c     int (*callback)(AVOptionRanges **, void *obj, const char *key, int flags) = NULL;
NULL             1851 libavutil/opt.c     const AVOption *field = av_opt_find(obj, key, NULL, 0, flags);
NULL             1854 libavutil/opt.c     *ranges_arg = NULL;
NULL             1964 libavutil/opt.c         read_number(o, dst, NULL, NULL, &i64);
NULL             1974 libavutil/opt.c         read_number(o, dst, &d, NULL, NULL);
NULL             1977 libavutil/opt.c         read_number(o, dst, &d, NULL, NULL);
NULL             1997 libavutil/opt.c         ret = set_string_binary(NULL, NULL, o->default_val.str, &tmp.data);
NULL             2004 libavutil/opt.c         AVDictionary *dict1 = NULL;
NULL             2006 libavutil/opt.c         AVDictionaryEntry *en1 = NULL;
NULL             2007 libavutil/opt.c         AVDictionaryEntry *en2 = NULL;
NULL             2036 libavutil/opt.c             if ((ret = av_parse_color(color, o->default_val.str, -1, NULL)) < 0)
NULL             2054 libavutil/opt.c     o = av_opt_find2(obj, name, NULL, 0, search_flags, &target);
NULL             2063 libavutil/opt.c     const AVOption *o = NULL;
NULL             2078 libavutil/opt.c     *buffer = NULL;
NULL             2091 libavutil/opt.c             av_bprint_finalize(&bprint, NULL);
NULL               53 libavutil/parseutils.c         ret = av_expr_parse_and_eval(&d, str, NULL, NULL,
NULL               54 libavutil/parseutils.c                                      NULL, NULL, NULL, NULL,
NULL               55 libavutil/parseutils.c                                      NULL, log_offset, log_ctx);
NULL              439 libavutil/parseutils.c         return NULL;
NULL              498 libavutil/parseutils.c                 return NULL;
NULL              510 libavutil/parseutils.c                 return NULL;
NULL              516 libavutil/parseutils.c                 return NULL;
NULL              522 libavutil/parseutils.c                 return NULL;
NULL              528 libavutil/parseutils.c                 return NULL;
NULL              534 libavutil/parseutils.c                 return NULL;
NULL              540 libavutil/parseutils.c                 return NULL;
NULL              546 libavutil/parseutils.c                 return NULL;
NULL              553 libavutil/parseutils.c                 return NULL;
NULL              558 libavutil/parseutils.c                 return NULL;
NULL              561 libavutil/parseutils.c             return NULL;
NULL              610 libavutil/parseutils.c     q = NULL;
NULL               53 libavutil/parseutils.h     av_parse_ratio(rate, str, max, AV_LOG_MAX_OFFSET, NULL)
NULL               41 libavutil/pca.c         return NULL;
NULL               45 libavutil/pca.c         return NULL;
NULL               55 libavutil/pca.c         return NULL;
NULL             2468 libavutil/pixdesc.c         av_pix_fmt_descriptors[pix_fmt].name : NULL;
NULL             2552 libavutil/pixdesc.c         return NULL;
NULL             2565 libavutil/pixdesc.c     return NULL;
NULL             2878 libavutil/pixdesc.c         color_range_names[range] : NULL;
NULL             2897 libavutil/pixdesc.c         color_primaries_names[primaries] : NULL;
NULL             2921 libavutil/pixdesc.c         color_transfer_names[transfer] : NULL;
NULL             2945 libavutil/pixdesc.c         color_space_names[space] : NULL;
NULL             2969 libavutil/pixdesc.c         chroma_location_names[location] : NULL;
NULL               71 libavutil/pixelutils.c     return NULL;
NULL               79 libavutil/pixelutils.c         return NULL;
NULL               81 libavutil/pixelutils.c         return NULL;
NULL               69 libavutil/ppc/cpu.c     err = sysctl(sels, 2, &has_vu, &len, NULL, 0);
NULL               52 libavutil/samplefmt.c         return NULL;
NULL              177 libavutil/samplefmt.c     int size = av_samples_get_buffer_size(NULL, nb_channels, nb_samples,
NULL               82 libavutil/slicethread.c             return NULL;
NULL              134 libavutil/slicethread.c     pthread_mutex_init(&ctx->done_mutex, NULL);
NULL              135 libavutil/slicethread.c     pthread_cond_init(&ctx->done_cond, NULL);
NULL              142 libavutil/slicethread.c         pthread_mutex_init(&w->mutex, NULL);
NULL              143 libavutil/slicethread.c         pthread_cond_init(&w->cond, NULL);
NULL              147 libavutil/slicethread.c         if (ret = pthread_create(&w->thread, NULL, thread_worker, w)) {
NULL              223 libavutil/slicethread.c         pthread_join(w->thread, NULL);
NULL              241 libavutil/slicethread.c     *pctx = NULL;
NULL               28 libavutil/spherical.c         return NULL;
NULL               39 libavutil/stereo3d.c         return NULL;
NULL              112 libavutil/tea.c                 tea_crypt_ecb(ctx, dst, dst, decrypt, NULL);
NULL              115 libavutil/tea.c                 tea_crypt_ecb(ctx, dst, src, decrypt, NULL);
NULL               52 libavutil/tests/adler32.c     av_log(NULL, AV_LOG_DEBUG, "%X (expected 50E6E508)\n", checksum);
NULL               63 libavutil/tests/aes.c         av_aes_crypt(b, temp, rct[i], 1, NULL, 1);
NULL               66 libavutil/tests/aes.c                 av_log(NULL, AV_LOG_ERROR, "%d %02X %02X\n",
NULL              100 libavutil/tests/aes.c                     av_log(NULL, AV_LOG_ERROR, "%02X %02X %02X %02X\n",
NULL              103 libavutil/tests/aes.c                 av_aes_crypt(ae, temp, pt, 2, NULL, 0);
NULL              105 libavutil/tests/aes.c                     av_log(NULL, AV_LOG_ERROR, "%02X %02X %02X %02X\n",
NULL              107 libavutil/tests/aes.c                 av_aes_crypt(ad, temp, temp, 2, NULL, 1);
NULL              112 libavutil/tests/aes.c                     av_log(NULL, AV_LOG_ERROR, "%d %d %02X %02X\n",
NULL               54 libavutil/tests/aes_ctr.c         av_log(NULL, AV_LOG_ERROR, "test failed\n");
NULL               58 libavutil/tests/aes_ctr.c     av_log(NULL, AV_LOG_INFO, "test passed\n");
NULL              129 libavutil/tests/audio_fifo.c     void **output_data  = NULL;
NULL               76 libavutil/tests/avstring.c     TEST_APPEND_PATH_COMPONENT(NULL, NULL, "(null)")
NULL               77 libavutil/tests/avstring.c     TEST_APPEND_PATH_COMPONENT("path", NULL, "path");
NULL               78 libavutil/tests/avstring.c     TEST_APPEND_PATH_COMPONENT(NULL, "comp", "comp");
NULL               93 libavutil/tests/avstring.c     TEST_STRNSTR(haystack, needle [2], strlen(haystack), NULL       );
NULL               99 libavutil/tests/avstring.c         if (ptr == NULL) { \
NULL              114 libavutil/tests/avstring.c         if((ptr = av_d2str(value)) == NULL){ \
NULL               63 libavutil/tests/base64.c     if (av_base64_decode(NULL, encoded, 0) != 0) {
NULL               72 libavutil/tests/base64.c         if (av_base64_decode(NULL, encoded, 0) >= 0) {
NULL              119 libavutil/tests/base64.c             av_base64_decode(NULL, out, 0);
NULL              158 libavutil/tests/blowfish.c     test_blowfish(ctx, tmp, plaintext, ciphertext, 1, NULL, 0, "encryption");
NULL              159 libavutil/tests/blowfish.c     test_blowfish(ctx, tmp, ciphertext, plaintext, 1, NULL, 1, "decryption");
NULL              160 libavutil/tests/blowfish.c     test_blowfish(ctx, tmp, tmp, ciphertext, 1, NULL, 0, "Inplace encryption");
NULL              161 libavutil/tests/blowfish.c     test_blowfish(ctx, tmp, tmp, plaintext,  1, NULL, 1, "Inplace decryption");
NULL               54 libavutil/tests/bprint.c     av_bprint_finalize(&b, NULL);
NULL               59 libavutil/tests/bprint.c     av_bprint_finalize(&b, NULL);
NULL               64 libavutil/tests/bprint.c     av_bprint_finalize(&b, NULL);
NULL               86 libavutil/tests/bprint.c     av_bprint_finalize(&b, NULL);
NULL               47 libavutil/tests/camellia.c         av_camellia_crypt(cs, temp, rpt, 1, NULL, 0);
NULL               50 libavutil/tests/camellia.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[j][i], temp[i]);
NULL               54 libavutil/tests/camellia.c         av_camellia_crypt(cs, temp, rct[j], 1, NULL, 1);
NULL               57 libavutil/tests/camellia.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
NULL               69 libavutil/tests/camellia.c             av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
NULL               58 libavutil/tests/cast5.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[j][i], temp[i]);
NULL               66 libavutil/tests/cast5.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
NULL               82 libavutil/tests/cast5.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct2[j][i], rpt2[j][i]);
NULL               96 libavutil/tests/cast5.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct2[0][i], rpt2[0][i]);
NULL               35 libavutil/tests/color_utils.c           if(func != NULL) {
NULL               35 libavutil/tests/cpu_init.c     return NULL;
NULL               46 libavutil/tests/cpu_init.c     if ((ret = pthread_create(&thread1, NULL, thread_main, &cpu_flags1))) {
NULL               50 libavutil/tests/cpu_init.c     if ((ret = pthread_create(&thread2, NULL, thread_main, &cpu_flags2))) {
NULL               54 libavutil/tests/cpu_init.c     pthread_join(thread1, NULL);
NULL               55 libavutil/tests/cpu_init.c     pthread_join(thread2, NULL);
NULL               57 libavutil/tests/des.c     av_des_crypt(&d, large_buffer[delay], large_buffer[0], 10000, cbc ? tmp : NULL, decrypt);
NULL               92 libavutil/tests/des.c     av_des_crypt(&d, tmp, plain, 1, NULL, 0);
NULL              107 libavutil/tests/des.c         av_des_crypt(&d, ct.byte, data.byte, 1, NULL, 0);
NULL              109 libavutil/tests/des.c         av_des_crypt(&d, ct.byte, ct.byte, 1, NULL, 1);
NULL               25 libavutil/tests/dict.c     AVDictionaryEntry *t = NULL;
NULL               33 libavutil/tests/dict.c     AVDictionary *dict = NULL;
NULL               37 libavutil/tests/dict.c     char *buffer = NULL;
NULL               54 libavutil/tests/dict.c     AVDictionary *dict = NULL;
NULL               56 libavutil/tests/dict.c     char *buffer = NULL;
NULL               91 libavutil/tests/dict.c     av_dict_set(&dict, "f", NULL, 0);
NULL               94 libavutil/tests/dict.c     e = NULL;
NULL               99 libavutil/tests/dict.c     av_dict_set(&dict, NULL, "a", 0);
NULL              100 libavutil/tests/dict.c     av_dict_set(&dict, NULL, "b", 0);
NULL              101 libavutil/tests/dict.c     av_dict_get(dict, NULL, NULL, 0);
NULL              102 libavutil/tests/dict.c     e = NULL;
NULL              118 libavutil/tests/dict.c     e = NULL;
NULL              126 libavutil/tests/dict.c     e = av_dict_get(dict, "key", NULL, 0);
NULL              128 libavutil/tests/dict.c     e = av_dict_get(dict, "key", NULL, 0);
NULL              131 libavutil/tests/dict.c     e = av_dict_get(dict, "key", NULL, 0);
NULL              141 libavutil/tests/eval.c         NULL
NULL              149 libavutil/tests/eval.c                                NULL, NULL, NULL, NULL, NULL, 0, NULL);
NULL              160 libavutil/tests/eval.c                            NULL, NULL, NULL, NULL, NULL, 0, NULL);
NULL              166 libavutil/tests/eval.c                            NULL, NULL, NULL, NULL, NULL, 0, NULL);
NULL              176 libavutil/tests/eval.c                                    NULL, NULL, NULL, NULL, NULL, 0, NULL);
NULL               31 libavutil/tests/fifo.c         av_fifo_generic_write(fifo, &i, sizeof(int), NULL);
NULL               44 libavutil/tests/fifo.c         av_fifo_generic_peek_at(fifo, &j, i * sizeof(int), sizeof(j), NULL);
NULL               53 libavutil/tests/fifo.c     if (p == NULL) {
NULL               58 libavutil/tests/fifo.c     (void) av_fifo_generic_peek(fifo, p, n, NULL);
NULL               69 libavutil/tests/fifo.c         av_fifo_generic_read(fifo, &j, sizeof(int), NULL);
NULL               80 libavutil/tests/fifo.c         av_fifo_generic_write(fifo, &i, sizeof(int), NULL);
NULL               85 libavutil/tests/fifo.c         av_fifo_generic_peek_at(fifo, &j, i * sizeof(int), sizeof(j), NULL);
NULL               96 libavutil/tests/fifo.c         av_fifo_generic_write(fifo, &i, sizeof(int), NULL);
NULL              101 libavutil/tests/fifo.c         av_fifo_generic_peek_at(fifo, &j, i * sizeof(int), sizeof(j), NULL);
NULL               27 libavutil/tests/file.c     if (av_file_map("file.c", &buf, &size, 0, NULL) < 0)
NULL               31 libavutil/tests/hash.c    struct AVHashContext *ctx = NULL;
NULL               27 libavutil/tests/hwdevice.c     AVBufferRef *derived_ref = NULL, *back_ref = NULL;
NULL              167 libavutil/tests/hwdevice.c     err = test_device(type, name, NULL, NULL, 0);
NULL              184 libavutil/tests/hwdevice.c                               NULL, 0);
NULL               29 libavutil/tests/imgutils.c             int ret = av_image_check_size(x, y, 0, NULL);
NULL              114 libavutil/tests/lfg.c     av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);
NULL              160 libavutil/tests/lfg.c                 av_log(NULL, AV_LOG_INFO, "error: out of bounds! tried to access"
NULL               32 libavutil/tests/log.c     ret = av_log_format_line2(NULL, AV_LOG_INFO, fmt, args, buffer, buffer_size, &print_prefix);
NULL               42 libavutil/tests/log.c         av_log(NULL, AV_LOG_FATAL, "use_color: %d\n", use_color);
NULL               44 libavutil/tests/log.c             av_log(NULL, i, " %d", i);
NULL               45 libavutil/tests/log.c             av_log(NULL, AV_LOG_INFO, "e ");
NULL               46 libavutil/tests/log.c             av_log(NULL, i + 256*123, "C%d", i);
NULL               47 libavutil/tests/log.c             av_log(NULL, AV_LOG_INFO, "e");
NULL               49 libavutil/tests/log.c         av_log(NULL, AV_LOG_PANIC, "\n");
NULL               54 libavutil/tests/log.c         result = call_log_format_line2("foo", NULL, 0);
NULL               61 libavutil/tests/lzo.c         if (lzo1x_decompress_safe(comp, inlen, decomp, &outlen, NULL))
NULL               63 libavutil/tests/lzo.c         if (lzo1x_decompress(comp, inlen, decomp, &outlen, NULL))
NULL               67 libavutil/tests/lzo.c             av_log(NULL, AV_LOG_ERROR, "decompression error\n");
NULL               71 libavutil/tests/lzo.c         av_log(NULL, AV_LOG_ERROR, "decompression incorrect\n");
NULL               73 libavutil/tests/lzo.c         av_log(NULL, AV_LOG_ERROR, "decompression OK\n");
NULL               86 libavutil/tests/opt.c     {"bin1",       "set binary value",   OFFSET(binary1),        AV_OPT_TYPE_BINARY,         { .str=NULL },                     0,         0, 1 },
NULL               94 libavutil/tests/opt.c     {"dict1",      "set dictionary value", OFFSET(dict1),        AV_OPT_TYPE_DICT,           { .str = NULL},                    0,         0, 1 },
NULL               96 libavutil/tests/opt.c     { NULL },
NULL              148 libavutil/tests/opt.c         av_opt_show2(&test_ctx, NULL, -1, 0);
NULL              157 libavutil/tests/opt.c         const AVOption *o = NULL;
NULL              178 libavutil/tests/opt.c         const AVOption *o = NULL;
NULL              187 libavutil/tests/opt.c             char *value1 = NULL;
NULL              188 libavutil/tests/opt.c             char *value2 = NULL;
NULL              316 libavutil/tests/opt.c                 av_log_set_callback(NULL);
NULL              340 libavutil/tests/opt.c         static const char * const shorthand[] = { "num", "string", NULL };
NULL              122 libavutil/tests/parseutils.c         if (av_parse_color(rgba, color_names[i], -1, NULL) >= 0)
NULL               36 libavutil/tests/pixdesc.c             av_log(NULL, AV_LOG_INFO, "%3d unused pixel format values\n", skip);
NULL               39 libavutil/tests/pixdesc.c         av_log(NULL, AV_LOG_INFO, "pix fmt %s avg_bpp:%d colortype:%d\n", desc->name, av_get_padded_bits_per_pixel(desc), get_color_type(desc));
NULL               33 libavutil/tests/pixelutils.c     av_pixelutils_sad_fn f_out = av_pixelutils_get_sad_fn(n, n, align, NULL);
NULL               48 libavutil/tests/pixfmt_best.c                                          pixfmt, 0, NULL);
NULL               45 libavutil/tests/rational.c                         av_log(NULL, AV_LOG_ERROR, "%d/%d %d/%d, %d %f\n", a.num,
NULL               49 libavutil/tests/rational.c                         av_log(NULL, AV_LOG_ERROR, "%d/%d ", r.num, r.den);
NULL               85 libavutil/tests/rational.c                 av_log(NULL, AV_LOG_ERROR, "%"PRId64" * %"PRId64" / %"PRId64" = %"PRId64" or %"PRId64"\n", a,b,c, res, av_i2int(ai));
NULL              109 libavutil/tests/rational.c                                 av_log(NULL, AV_LOG_ERROR, "%d/%d %d/%d, %d %d\n", a.num,
NULL              125 libavutil/tests/rational.c                 av_log(NULL, AV_LOG_ERROR, "%d/%d %f %f\n", a.num,
NULL               96 libavutil/tests/tea.c         test_tea(ctx, buf, tea_test_pt[i], tea_test_ct[i], 1, NULL, 0, "encryption");
NULL               97 libavutil/tests/tea.c         test_tea(ctx, buf, tea_test_ct[i], tea_test_pt[i], 1, NULL, 1, "decryption");
NULL               48 libavutil/tests/tree.c         av_log(NULL, AV_LOG_ERROR, " ");
NULL               50 libavutil/tests/tree.c         av_log(NULL, AV_LOG_ERROR, "Node %p %2d %p\n", t, t->state, t->elem);
NULL               54 libavutil/tests/tree.c         av_log(NULL, AV_LOG_ERROR, "NULL\n");
NULL               66 libavutil/tests/tree.c     AVTreeNode *root = NULL, *node = NULL;
NULL               78 libavutil/tests/tree.c             av_log(NULL, AV_LOG_ERROR, "FATAL error %d\n", i);
NULL               82 libavutil/tests/tree.c         av_log(NULL, AV_LOG_DEBUG, "inserting %4d\n", (int)j);
NULL               87 libavutil/tests/tree.c             av_log(NULL, AV_LOG_ERROR, "Memory allocation failure.\n");
NULL               94 libavutil/tests/tree.c             AVTreeNode *node2 = NULL;
NULL               95 libavutil/tests/tree.c             av_log(NULL, AV_LOG_DEBUG, "removing %4d\n", (int)j);
NULL               97 libavutil/tests/tree.c             k = av_tree_find(root, (void *)(j + 1), cmp, NULL);
NULL               99 libavutil/tests/tree.c                 av_log(NULL, AV_LOG_ERROR, "removal failure %d\n", i);
NULL               49 libavutil/tests/twofish.c         av_twofish_crypt(cs, temp, rpt, 1, NULL, 0);
NULL               52 libavutil/tests/twofish.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[j][i], temp[i]);
NULL               56 libavutil/tests/twofish.c         av_twofish_crypt(cs, temp, rct[j], 1, NULL, 1);
NULL               59 libavutil/tests/twofish.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
NULL               69 libavutil/tests/twofish.c             av_twofish_crypt(cs, temp, rpt, 1, NULL, 0);
NULL               76 libavutil/tests/twofish.c                 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[3 + j][i], temp[i]);
NULL               88 libavutil/tests/twofish.c             av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
NULL               43 libavutil/tests/utf8.c     ret = av_file_map(filename, &file_buf, &file_buf_size, 0, NULL);
NULL               96 libavutil/tests/xtea.c         test_xtea(ctx, buf, xtea_test_pt[i], xtea_test_ct[i], 1, NULL, 0, "encryption", av_xtea_crypt);
NULL               97 libavutil/tests/xtea.c         test_xtea(ctx, buf, xtea_test_ct[i], xtea_test_pt[i], 1, NULL, 1, "decryption", av_xtea_crypt);
NULL              106 libavutil/tests/xtea.c         test_xtea(ctx, buf, pl, ct, 1, NULL, 0, "encryption", av_xtea_le_crypt);
NULL              107 libavutil/tests/xtea.c         test_xtea(ctx, buf, ct, pl, 1, NULL, 1, "decryption", av_xtea_le_crypt);
NULL               38 libavutil/thread.h     av_log(NULL, AV_LOG_FATAL, AV_STRINGIFY(func)                       \
NULL               52 libavutil/threadmessage.c     if ((ret = pthread_mutex_init(&rmq->lock, NULL))) {
NULL               56 libavutil/threadmessage.c     if ((ret = pthread_cond_init(&rmq->cond_recv, NULL))) {
NULL               61 libavutil/threadmessage.c     if ((ret = pthread_cond_init(&rmq->cond_send, NULL))) {
NULL               78 libavutil/threadmessage.c     *mq = NULL;
NULL              131 libavutil/threadmessage.c     av_fifo_generic_write(mq->fifo, msg, mq->elsize, NULL);
NULL              148 libavutil/threadmessage.c     av_fifo_generic_read(mq->fifo, msg, mq->elsize, NULL);
NULL               43 libavutil/time.c     gettimeofday(&tv, NULL);
NULL               30 libavutil/time_internal.h         return NULL;
NULL               42 libavutil/time_internal.h         return NULL;
NULL               89 libavutil/timer.h             av_log(NULL, AV_LOG_ERROR,                                    \
NULL               93 libavutil/timer.h                 av_log(NULL, AV_LOG_VERBOSE, " %2d", av_log2(2*thistogram[i]));\
NULL               94 libavutil/timer.h             av_log(NULL, AV_LOG_ERROR, "\n");                             \
NULL              116 libavutil/timer.h         av_log(NULL, AV_LOG_ERROR, "perf_event_open failed: %s\n",          \
NULL               56 libavutil/tree.c     return NULL;
NULL               77 libavutil/tree.c                 *tp   = NULL;
NULL               78 libavutil/tree.c                 return NULL;
NULL              137 libavutil/tree.c         *next = NULL;
NULL              140 libavutil/tree.c             return NULL;
NULL              158 libavutil/tx.c     *tx = NULL;
NULL               43 libavutil/tx_template.c     NULL,
NULL               44 libavutil/tx_template.c     NULL,
NULL               45 libavutil/tx_template.c     NULL,
NULL               46 libavutil/tx_template.c     NULL,
NULL              105 libavutil/tx_template.c     { NULL },
NULL              106 libavutil/tx_template.c     { NULL },
NULL              107 libavutil/tx_template.c     { NULL },
NULL              358 libavutil/tx_template.c     NULL, fft2, fft4, fft8, fft16, fft32, fft64, fft128, fft256, fft512,
NULL              606 libavutil/tx_template.c         av_log(NULL, AV_LOG_ERROR, "Unsupported transform size: n = %i, "
NULL               53 libavutil/utils.c         av_log(NULL, AV_LOG_FATAL, "Libavutil has been built with a broken binutils, please upgrade binutils and rebuild\n");
NULL               58 libavutil/utils.c         av_log(NULL, AV_LOG_ERROR, "Libavutil has been linked to a broken llrint()\n");
NULL               84 libavutil/utils.c     default:                      return NULL;
NULL               38 libavutil/video_enc_params.c         return NULL;
NULL               43 libavutil/video_enc_params.c         return NULL;
NULL               66 libavutil/video_enc_params.c         return NULL;
NULL               67 libavutil/video_enc_params.c     buf = av_buffer_create((uint8_t *)par, size, NULL, NULL, 0);
NULL               70 libavutil/video_enc_params.c         return NULL;
NULL               75 libavutil/video_enc_params.c         return NULL;
NULL               30 libavutil/wchar_filename.h     num_chars = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, filename_utf8, -1, NULL, 0);
NULL               32 libavutil/wchar_filename.h         *filename_w = NULL;
NULL              232 libavutil/xtea.c                 crypt(ctx, dst, dst, decrypt, NULL);
NULL              235 libavutil/xtea.c                 crypt(ctx, dst, src, decrypt, NULL);
NULL              156 libpostproc/postprocess.c     {NULL, NULL,0,0,0,0} //End Marker
NULL              166 libpostproc/postprocess.c     NULL //End Marker
NULL              651 libpostproc/postprocess.c         av_log(NULL, AV_LOG_ERROR, "pp: Missing argument\n");
NULL              652 libpostproc/postprocess.c         return NULL;
NULL              659 libpostproc/postprocess.c             av_log(NULL, AV_LOG_INFO, "%s", temp);
NULL              661 libpostproc/postprocess.c         return NULL;
NULL              666 libpostproc/postprocess.c         return NULL;
NULL              683 libpostproc/postprocess.c     av_log(NULL, AV_LOG_DEBUG, "pp: %s\n", name);
NULL              706 libpostproc/postprocess.c         av_log(NULL, AV_LOG_DEBUG, "pp: %s::%s\n", filterToken, filterName);
NULL              714 libpostproc/postprocess.c             option= av_strtok(NULL, optionDelimiters, &tokstate);
NULL              717 libpostproc/postprocess.c             av_log(NULL, AV_LOG_DEBUG, "pp: option: %s\n", option);
NULL              728 libpostproc/postprocess.c         options[numOfUnknownOptions] = NULL;
NULL              828 libpostproc/postprocess.c     av_log(NULL, AV_LOG_DEBUG, "pp: lumMode=%X, chromMode=%X\n", ppMode->lumMode, ppMode->chromMode);
NULL              830 libpostproc/postprocess.c         av_log(NULL, AV_LOG_ERROR, "%d errors in postprocess string \"%s\"\n", ppMode->error, name);
NULL              832 libpostproc/postprocess.c         return NULL;
NULL              877 libpostproc/postprocess.c static const AVClass av_codec_context_class = { "Postproc", context_to_name, NULL };
NULL              885 libpostproc/postprocess.c         return NULL;
NULL               55 libswresample/aarch64/audio_convert_init.c     ac->simd_f= NULL;
NULL               55 libswresample/arm/audio_convert_init.c     ac->simd_f= NULL;
NULL              154 libswresample/audioconvert.c         return NULL;
NULL              157 libswresample/audioconvert.c         return NULL;
NULL              223 libswresample/noise_shaping_data.c   {    0, fir,  0,   0,  NULL,          SWR_DITHER_NONE},
NULL              390 libswresample/rematrix.c     s->mix_any_f = NULL;
NULL              104 libswresample/rematrix_template.c     return NULL;
NULL              264 libswresample/resample.c                 av_log(NULL, AV_LOG_ERROR, "i:%4d ss:%f ff:%13.6e-%13.6e sf:%13.6e-%13.6e\n", i, ss, maxff, minff, maxsf, minsf);
NULL              316 libswresample/resample.c             return NULL;
NULL              334 libswresample/resample.c             av_log(NULL, AV_LOG_ERROR, "Unsupported sample format\n");
NULL              339 libswresample/resample.c             av_log(NULL, AV_LOG_ERROR, "Filter length too large\n");
NULL              380 libswresample/resample.c     return NULL;
NULL               60 libswresample/soxr_resample.c         av_log(NULL, AV_LOG_ERROR, "soxr_create: %s\n", error);
NULL               66 libswresample/soxr_resample.c     *c = NULL;
NULL               72 libswresample/soxr_resample.c     soxr_process((soxr_t)s->resample, NULL, 0, NULL, NULL, 0, NULL);
NULL              127 libswresample/soxr_resample.c     create, destroy, process, flush, NULL /* set_compensation */, get_delay,
NULL               64 libswresample/swresample.c     if(!s) return NULL;
NULL               98 libswresample/swresample.c     return NULL;
NULL              340 libswresample/swresample.c                                                    s-> in_sample_fmt, s-> in.ch_count, NULL, 0);
NULL              347 libswresample/swresample.c                                              s->int_sample_fmt, s->out.ch_count, NULL, 0);
NULL              836 libswresample/swresample.c     return swr_convert(s, NULL, s->drop_output, tmp_arg, 0);
NULL              863 libswresample/swresample.c     ret = swr_convert(s, NULL, 0, (const uint8_t**)tmp_arg, count);
NULL               82 libswresample/swresample_frame.c     uint8_t **out_data = NULL;
NULL               83 libswresample/swresample_frame.c     const uint8_t **in_data = NULL;
NULL              245 libswresample/tests/swresample.c     struct SwrContext * forw_ctx= NULL;
NULL              246 libswresample/tests/swresample.c     struct SwrContext *backw_ctx= NULL;
NULL              250 libswresample/tests/swresample.c             av_log(NULL, AV_LOG_INFO, "Usage: swresample-test [<num_tests>[ <test>]]  \n"
NULL              254 libswresample/tests/swresample.c         num_tests = strtol(argv[1], NULL, 0);
NULL              262 libswresample/tests/swresample.c             specific_test = strtol(argv[1], NULL, 0);
NULL               42 libswresample/x86/audio_convert_init.c     ac->simd_f= NULL;
NULL               41 libswresample/x86/rematrix_init.c     s->mix_1_1_simd = NULL;
NULL               42 libswresample/x86/rematrix_init.c     s->mix_2_1_simd = NULL;
NULL               67 libswscale/gamma.c     desc->dst = NULL;
NULL              119 libswscale/hscale.c                 c->readAlpPlanar(dst, src, srcW, NULL);
NULL              286 libswscale/hscale.c     desc->instance = NULL;
NULL             1102 libswscale/input.c     c->chrToYV12 = NULL;
NULL             1428 libswscale/input.c     c->lumToYV12 = NULL;
NULL             1429 libswscale/input.c     c->alpToYV12 = NULL;
NULL               84 libswscale/options.c     { NULL }
NULL              941 libswscale/output.c     *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL              942 libswscale/output.c     *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL             1082 libswscale/output.c                   *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL             1083 libswscale/output.c                   *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL             1314 libswscale/output.c                   *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL             1315 libswscale/output.c                   *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL             1702 libswscale/output.c                   *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL             1703 libswscale/output.c                   *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL             2042 libswscale/output.c                   *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL             2043 libswscale/output.c                   *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL             2425 libswscale/output.c                   *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL             2426 libswscale/output.c                   *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL              688 libswscale/ppc/swscale_vsx.c                   *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL              689 libswscale/ppc/swscale_vsx.c                   *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL              810 libswscale/ppc/swscale_vsx.c                   *abuf0 = hasAlpha ? abuf[0] : NULL,
NULL              811 libswscale/ppc/swscale_vsx.c                   *abuf1 = hasAlpha ? abuf[1] : NULL;
NULL              528 libswscale/ppc/yuv2rgb_altivec.c         return NULL;
NULL              538 libswscale/ppc/yuv2rgb_altivec.c         return NULL;
NULL              548 libswscale/ppc/yuv2rgb_altivec.c             return NULL;
NULL              569 libswscale/ppc/yuv2rgb_altivec.c         default: return NULL;
NULL              578 libswscale/ppc/yuv2rgb_altivec.c         default: return NULL;
NULL              584 libswscale/ppc/yuv2rgb_altivec.c     return NULL;
NULL               32 libswscale/slice.c                s->plane[i].line[j+n] = NULL;
NULL               98 libswscale/slice.c         s->plane[i].tmp = ring ? s->plane[i].line + size[i] * 2 : NULL;
NULL              114 libswscale/slice.c             s->plane[i].tmp = NULL;
NULL              528 libswscale/swscale.c     c->lumConvertRange = NULL;
NULL              529 libswscale/swscale.c     c->chrConvertRange = NULL;
NULL              602 libswscale/swscale.c         src[3] = NULL;
NULL              604 libswscale/swscale.c         src[3] = src[2] = NULL;
NULL              607 libswscale/swscale.c             src[1] = NULL;
NULL              753 libswscale/swscale.c     uint8_t *rgb0_tmp = NULL;
NULL              529 libswscale/swscale_unscaled.c                  const uint8_t *palette) = NULL;
NULL              573 libswscale/swscale_unscaled.c     int dst_alpha = dst[3] != NULL;
NULL              767 libswscale/swscale_unscaled.c     int src_alpha = src[3] != NULL;
NULL             1413 libswscale/swscale_unscaled.c     rgbConvFn conv = NULL;
NULL             1519 libswscale/swscale_unscaled.c         return NULL;
NULL             1524 libswscale/swscale_unscaled.c             return NULL;
NULL               48 libswscale/tests/colorspace.c     av_log(NULL, AV_LOG_INFO, "memory corruption test ...\n");
NULL               94 libswscale/tests/colorspace.c             FUNC(0, 0, NULL)
NULL              104 libswscale/tests/colorspace.c         av_log(NULL, AV_LOG_INFO, ".");
NULL              116 libswscale/tests/colorspace.c                     const char *name = NULL;
NULL              133 libswscale/tests/colorspace.c                             av_log(NULL, AV_LOG_INFO,
NULL              142 libswscale/tests/colorspace.c                             av_log(NULL, AV_LOG_INFO,
NULL              151 libswscale/tests/colorspace.c                             av_log(NULL, AV_LOG_INFO,
NULL              167 libswscale/tests/colorspace.c     av_log(NULL, AV_LOG_INFO,
NULL               62 libswscale/tests/pixdesc_query.c         const char **pix_fmts = NULL;
NULL               64 libswscale/tests/pixdesc_query.c         const AVPixFmtDescriptor *pix_desc = NULL;
NULL              100 libswscale/tests/swscale.c     struct SwsContext *dstContext = NULL, *outContext = NULL;
NULL              105 libswscale/tests/swscale.c         struct SwsContext *srcContext = NULL;
NULL              127 libswscale/tests/swscale.c                                     srcFormat, SWS_BILINEAR, NULL, NULL, NULL);
NULL              169 libswscale/tests/swscale.c                                 flags, NULL, NULL, NULL);
NULL              207 libswscale/tests/swscale.c                                     NULL, NULL, NULL);
NULL              296 libswscale/tests/swscale.c                                      NULL);
NULL              366 libswscale/tests/swscale.c     const uint8_t * const rgb_src[4] = { rgb_data, NULL, NULL, NULL };
NULL              376 libswscale/tests/swscale.c     FILE *fp = NULL;
NULL              418 libswscale/tests/swscale.c                          AV_PIX_FMT_YUVA420P, SWS_BILINEAR, NULL, NULL, NULL);
NULL              347 libswscale/utils.c     int64_t *filter    = NULL;
NULL              348 libswscale/utils.c     int64_t *filter2   = NULL;
NULL              355 libswscale/utils.c     FF_ALLOC_ARRAY_OR_GOTO(NULL, *filterPos, (dstW + 3), sizeof(**filterPos), fail);
NULL              360 libswscale/utils.c         FF_ALLOCZ_ARRAY_OR_GOTO(NULL, filter,
NULL              371 libswscale/utils.c         FF_ALLOC_ARRAY_OR_GOTO(NULL, filter,
NULL              387 libswscale/utils.c         FF_ALLOC_ARRAY_OR_GOTO(NULL, filter,
NULL              428 libswscale/utils.c         FF_ALLOC_ARRAY_OR_GOTO(NULL, filter,
NULL              528 libswscale/utils.c     FF_ALLOCZ_ARRAY_OR_GOTO(NULL, filter2, dstW, filter2Size * sizeof(*filter2), fail);
NULL              623 libswscale/utils.c         av_log(NULL, AV_LOG_VERBOSE,
NULL              687 libswscale/utils.c     FF_ALLOCZ_ARRAY_OR_GOTO(NULL, *outFilter,
NULL              701 libswscale/utils.c             av_log(NULL, AV_LOG_WARNING, "SwScaler: zero vector in scaling\n");
NULL              727 libswscale/utils.c         av_log(NULL, ret == RETCODE_USE_CASCADE ? AV_LOG_DEBUG : AV_LOG_ERROR, "sws: initFilter failed\n");
NULL              962 libswscale/utils.c             ret = sws_init_context(c->cascaded_context[0], NULL , NULL);
NULL              972 libswscale/utils.c                                                     c->flags, NULL, NULL, c->param);
NULL             1104 libswscale/utils.c         return NULL;
NULL             1176 libswscale/utils.c     SwsFilter dummyFilter = { NULL, NULL, NULL, NULL };
NULL             1478 libswscale/utils.c         c->cascaded_context[0] = NULL;
NULL             1487 libswscale/utils.c                                                 flags, NULL, NULL, c->param);
NULL             1512 libswscale/utils.c             c->cascaded_context[1] = NULL;
NULL             1516 libswscale/utils.c         c->cascaded_context[2] = NULL;
NULL             1525 libswscale/utils.c                                                 flags, NULL, NULL, c->param);
NULL             1544 libswscale/utils.c                                                     flags, srcFilter, NULL, c->param);
NULL             1550 libswscale/utils.c                                                     flags, NULL, dstFilter, c->param);
NULL             1591 libswscale/utils.c             ret = sws_init_context(c->cascaded_context[0], NULL , NULL);
NULL             1622 libswscale/utils.c             c->lumMmxextFilterCodeSize = ff_init_hscaler_mmxext(dstW, c->lumXInc, NULL,
NULL             1623 libswscale/utils.c                                                              NULL, NULL, 8);
NULL             1625 libswscale/utils.c                                                              NULL, NULL, NULL, 4);
NULL             1628 libswscale/utils.c             c->lumMmxextFilterCode = mmap(NULL, c->lumMmxextFilterCodeSize,
NULL             1632 libswscale/utils.c             c->chrMmxextFilterCode = mmap(NULL, c->chrMmxextFilterCodeSize,
NULL             1637 libswscale/utils.c             c->lumMmxextFilterCode = VirtualAlloc(NULL,
NULL             1641 libswscale/utils.c             c->chrMmxextFilterCode = VirtualAlloc(NULL,
NULL             1762 libswscale/utils.c         const char *scaler = NULL, *cpucaps;
NULL             1860 libswscale/utils.c                                                 flags, srcFilter, NULL, c->param);
NULL             1866 libswscale/utils.c                                                 flags, NULL, dstFilter, c->param);
NULL             1881 libswscale/utils.c         return NULL;
NULL             1910 libswscale/utils.c         return NULL;
NULL             1914 libswscale/utils.c         return NULL;
NULL             1943 libswscale/utils.c         return NULL;
NULL             2004 libswscale/utils.c         sws_printVec2(filter->chrH, NULL, AV_LOG_DEBUG);
NULL             2006 libswscale/utils.c         sws_printVec2(filter->lumH, NULL, AV_LOG_DEBUG);
NULL             2016 libswscale/utils.c     return NULL;
NULL             2024 libswscale/utils.c         return NULL;
NULL             2028 libswscale/utils.c         return NULL;
NULL             2044 libswscale/utils.c         return NULL;
NULL             2049 libswscale/utils.c         return NULL;
NULL             2075 libswscale/utils.c         return NULL;
NULL             2127 libswscale/utils.c         return NULL;
NULL             2146 libswscale/utils.c         return NULL;
NULL             2164 libswscale/utils.c         return NULL;
NULL             2183 libswscale/utils.c         return NULL;
NULL             2257 libswscale/utils.c         return NULL;
NULL             2357 libswscale/utils.c     c->lumMmxextFilterCode = NULL;
NULL             2358 libswscale/utils.c     c->chrMmxextFilterCode = NULL;
NULL             2411 libswscale/utils.c         context = NULL;
NULL             2416 libswscale/utils.c             return NULL;
NULL             2434 libswscale/utils.c             return NULL;
NULL              130 libswscale/vscale.c     uint8_t **src3 = desc->alpha ? desc->src->plane[3].line + sp3 : NULL;
NULL              136 libswscale/vscale.c                                     (const int16_t*)(desc->alpha ? *src3 : NULL),  *dst, dstW, 0, sliceY);
NULL              142 libswscale/vscale.c                                     (const int16_t*)(desc->alpha ? *src3 : NULL),  *dst, dstW, chrAlpha, sliceY);
NULL              198 libswscale/vscale.c     uint8_t **src3 = desc->alpha ? desc->src->plane[3].line + sp3 : NULL;
NULL              202 libswscale/vscale.c                         desc->alpha ? desc->dst->plane[3].line[dp3] : NULL };
NULL              215 libswscale/vscale.c     VScalerContext *lumCtx = NULL;
NULL              216 libswscale/vscale.c     VScalerContext *chrCtx = NULL;
NULL              266 libswscale/vscale.c     VScalerContext *lumCtx = NULL;
NULL              267 libswscale/vscale.c     VScalerContext *chrCtx = NULL;
NULL             1916 libswscale/x86/rgb2rgb_template.c         RENAME(ff_nv12ToUV)(dst1, dst2, NULL, src, NULL, width, NULL);
NULL              114 libswscale/x86/swscale.c         const int16_t **alpSrcPtr  = (CONFIG_SWSCALE_ALPHA && hasAlpha) ? (const int16_t **)(void*) alpPlane->line + firstLumSrcY - alpPlane->sliceY : NULL;
NULL             1571 libswscale/x86/swscale_template.c         c->hyscale_fast = NULL;
NULL             1572 libswscale/x86/swscale_template.c         c->hcscale_fast = NULL;
NULL              154 libswscale/x86/yuv2rgb.c     return NULL;
NULL              681 libswscale/yuv2rgb.c     SwsFunc t = NULL;
NULL              734 libswscale/yuv2rgb.c     return NULL;
NULL               69 tests/api/api-band-test.c     AVCodec *codec = NULL;
NULL               70 tests/api/api-band-test.c     AVCodecContext *ctx= NULL;
NULL               71 tests/api/api-band-test.c     AVCodecParameters *origin_par = NULL;
NULL               72 tests/api/api-band-test.c     uint8_t *byte_buffer = NULL;
NULL               73 tests/api/api-band-test.c     AVFrame *fr = NULL;
NULL               75 tests/api/api-band-test.c     AVFormatContext *fmt_ctx = NULL;
NULL               85 tests/api/api-band-test.c     result = avformat_open_input(&fmt_ctx, input_filename, NULL, NULL);
NULL               87 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't open file\n");
NULL               91 tests/api/api-band-test.c     result = avformat_find_stream_info(fmt_ctx, NULL);
NULL               93 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't get stream info\n");
NULL               97 tests/api/api-band-test.c     video_stream = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
NULL               99 tests/api/api-band-test.c       av_log(NULL, AV_LOG_ERROR, "Can't find video stream in input file\n");
NULL              107 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n");
NULL              113 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate decoder context\n");
NULL              119 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n");
NULL              126 tests/api/api-band-test.c     result = avcodec_open2(ctx, codec, NULL);
NULL              134 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate frame\n");
NULL              139 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Wrong codec\n");
NULL              146 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n");
NULL              152 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n");
NULL              166 tests/api/api-band-test.c             pkt.data = NULL;
NULL              173 tests/api/api-band-test.c                 av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n");
NULL              181 tests/api/api-band-test.c                     av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
NULL              185 tests/api/api-band-test.c                     av_log(NULL, AV_LOG_ERROR, "draw_horiz_band haven't been called!\n");
NULL              190 tests/api/api-band-test.c                     av_log(NULL, AV_LOG_ERROR, "Decoded frames with and without draw_horiz_band are not the same!\n");
NULL              213 tests/api/api-band-test.c         av_log(NULL, AV_LOG_ERROR, "Incorrect input: expected %s <name of a video file>\nNote that test works only for huffyuv, flv and mpeg4 decoders\n", argv[0]);
NULL               34 tests/api/api-codec-param-test.c     AVFrame *frame = NULL;
NULL               40 tests/api/api-codec-param-test.c         ret = avcodec_open2(codec_ctx, codec, NULL);
NULL               49 tests/api/api-codec-param-test.c         av_log(NULL, AV_LOG_ERROR, "Failed to allocate frame\n");
NULL               86 tests/api/api-codec-param-test.c         AVCodecContext *codec_ctx = NULL;
NULL              146 tests/api/api-codec-param-test.c         const AVOption *opt = NULL;
NULL              172 tests/api/api-codec-param-test.c     ret = avformat_open_input(fmt_ctx, filename, NULL, NULL);
NULL              174 tests/api/api-codec-param-test.c         av_log(NULL, AV_LOG_ERROR, "Failed to open input '%s'", filename);
NULL              196 tests/api/api-codec-param-test.c         const AVOption *opt = NULL;
NULL              206 tests/api/api-codec-param-test.c             uint8_t *str1 = NULL, *str2 = NULL;
NULL              217 tests/api/api-codec-param-test.c                 av_log(NULL, AV_LOG_ERROR, "Field %s differs: %s %s", opt->name, str1, str2);
NULL              231 tests/api/api-codec-param-test.c     AVFormatContext *fmt_ctx = NULL;
NULL              232 tests/api/api-codec-param-test.c     AVFormatContext *fmt_ctx_no_decode = NULL;
NULL              235 tests/api/api-codec-param-test.c         av_log(NULL, AV_LOG_ERROR, "Usage: %s <input>\n", argv[0]);
NULL              240 tests/api/api-codec-param-test.c         av_log(NULL, AV_LOG_ERROR, "Failed to probe '%s' without frame decoding\n", argv[1]);
NULL              245 tests/api/api-codec-param-test.c         av_log(NULL, AV_LOG_ERROR, "Failed to probe '%s' with frame decoding\n", argv[1]);
NULL               59 tests/api/api-flac-test.c     av_log(NULL, AV_LOG_INFO, "channel layout: %s, sample rate: %i\n", name_buff, sample_rate);
NULL               63 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate encoder context\n");
NULL               71 tests/api/api-flac-test.c     result = avcodec_open2(ctx, enc, NULL);
NULL               89 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR , "Can't allocate decoder context\n");
NULL               98 tests/api/api-flac-test.c     result = avcodec_open2(ctx, dec, NULL);
NULL              113 tests/api/api-flac-test.c     uint8_t *raw_in = NULL, *raw_out = NULL;
NULL              122 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate input frame\n");
NULL              130 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate a buffer for input frame\n");
NULL              136 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate output frame\n");
NULL              142 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate memory for raw_in\n");
NULL              148 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate memory for raw_out\n");
NULL              154 tests/api/api-flac-test.c         enc_pkt.data = NULL;
NULL              161 tests/api/api-flac-test.c             av_log(NULL, AV_LOG_ERROR, "Incorrect value of input frame linesize\n");
NULL              168 tests/api/api-flac-test.c             av_log(NULL, AV_LOG_ERROR, "Error encoding audio frame\n");
NULL              176 tests/api/api-flac-test.c                 av_log(NULL, AV_LOG_ERROR, "Error decoding audio packet\n");
NULL              182 tests/api/api-flac-test.c                     av_log(NULL, AV_LOG_INFO, "Decoder consumed only part of a packet, it is allowed to do so -- need to update this test\n");
NULL              187 tests/api/api-flac-test.c                     av_log(NULL, AV_LOG_ERROR, "Error frames before and after decoding has different number of samples\n");
NULL              192 tests/api/api-flac-test.c                     av_log(NULL, AV_LOG_ERROR, "Error frames before and after decoding has different channel layout\n");
NULL              197 tests/api/api-flac-test.c                     av_log(NULL, AV_LOG_ERROR, "Error frames before and after decoding has different sample format\n");
NULL              202 tests/api/api-flac-test.c                     av_log(NULL, AV_LOG_ERROR, "Incorrect value of output frame linesize\n");
NULL              213 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Output differs\n");
NULL              217 tests/api/api-flac-test.c     av_log(NULL, AV_LOG_INFO, "OK\n");
NULL              242 tests/api/api-flac-test.c     AVCodec *enc = NULL, *dec = NULL;
NULL              243 tests/api/api-flac-test.c     AVCodecContext *enc_ctx = NULL, *dec_ctx = NULL;
NULL              250 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't find encoder\n");
NULL              256 tests/api/api-flac-test.c         av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n");
NULL              111 tests/api/api-h264-slice-test.c     const AVCodec *codec = NULL;
NULL              112 tests/api/api-h264-slice-test.c     AVCodecContext *c = NULL;
NULL              113 tests/api/api-h264-slice-test.c     AVFrame *frame = NULL;
NULL              116 tests/api/api-h264-slice-test.c     FILE *file = NULL;
NULL              117 tests/api/api-h264-slice-test.c     char * nal = NULL;
NULL              126 tests/api/api-h264-slice-test.c     if (!(threads = strtoul(argv[1], NULL, 0)))
NULL              163 tests/api/api-h264-slice-test.c     if ((ret = avcodec_open2(c, codec, NULL)) < 0) {
NULL              225 tests/api/api-h264-slice-test.c     ret = decode(c, frame, NULL);
NULL               35 tests/api/api-h264-test.c     AVCodec *codec = NULL;
NULL               36 tests/api/api-h264-test.c     AVCodecContext *ctx= NULL;
NULL               37 tests/api/api-h264-test.c     AVCodecParameters *origin_par = NULL;
NULL               38 tests/api/api-h264-test.c     AVFrame *fr = NULL;
NULL               39 tests/api/api-h264-test.c     uint8_t *byte_buffer = NULL;
NULL               41 tests/api/api-h264-test.c     AVFormatContext *fmt_ctx = NULL;
NULL               50 tests/api/api-h264-test.c     result = avformat_open_input(&fmt_ctx, input_filename, NULL, NULL);
NULL               52 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Can't open file\n");
NULL               56 tests/api/api-h264-test.c     result = avformat_find_stream_info(fmt_ctx, NULL);
NULL               58 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Can't get stream info\n");
NULL               62 tests/api/api-h264-test.c     video_stream = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
NULL               64 tests/api/api-h264-test.c       av_log(NULL, AV_LOG_ERROR, "Can't find video stream in input file\n");
NULL               72 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n");
NULL               78 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate decoder context\n");
NULL               84 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n");
NULL               88 tests/api/api-h264-test.c     result = avcodec_open2(ctx, codec, NULL);
NULL               96 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate frame\n");
NULL              103 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n");
NULL              115 tests/api/api-h264-test.c             pkt.data = NULL;
NULL              124 tests/api/api-h264-test.c                 av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n");
NULL              132 tests/api/api-h264-test.c                     av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
NULL              158 tests/api/api-h264-test.c         av_log(NULL, AV_LOG_ERROR, "Incorrect input\n");
NULL               45 tests/api/api-seek-test.c         if ((crc_array == NULL) || (pts_array == NULL)) {
NULL               46 tests/api/api-seek-test.c             av_log(NULL, AV_LOG_ERROR, "Can't allocate array to store crcs\n");
NULL               66 tests/api/api-seek-test.c                 av_log(NULL, AV_LOG_ERROR, "Incorrect crc of a frame after seeking\n");
NULL               71 tests/api/api-seek-test.c     av_log(NULL, AV_LOG_ERROR, "Incorrect pts of a frame after seeking\n");
NULL               90 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n");
NULL               98 tests/api/api-seek-test.c             av_log(NULL, AV_LOG_ERROR, "Error in seeking\n");
NULL              110 tests/api/api-seek-test.c             pkt.data = NULL;
NULL              116 tests/api/api-seek-test.c                 av_log(NULL, AV_LOG_ERROR, "Error: frames doesn't have pts values\n");
NULL              121 tests/api/api-seek-test.c                 av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n");
NULL              129 tests/api/api-seek-test.c                     av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
NULL              159 tests/api/api-seek-test.c     char *end_of_string = NULL;
NULL              162 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Incorrect input ranges of seeking\n");
NULL              167 tests/api/api-seek-test.c             av_log(NULL, AV_LOG_ERROR, "Incorrect input ranges of seeking\n");
NULL              176 tests/api/api-seek-test.c     AVCodec *codec = NULL;
NULL              177 tests/api/api-seek-test.c     AVCodecContext *ctx= NULL;
NULL              178 tests/api/api-seek-test.c     AVCodecParameters *origin_par = NULL;
NULL              179 tests/api/api-seek-test.c     AVFrame *fr = NULL;
NULL              180 tests/api/api-seek-test.c     AVFormatContext *fmt_ctx = NULL;
NULL              188 tests/api/api-seek-test.c     crc_array = NULL;
NULL              189 tests/api/api-seek-test.c     pts_array = NULL;
NULL              191 tests/api/api-seek-test.c     result = avformat_open_input(&fmt_ctx, input_filename, NULL, NULL);
NULL              193 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Can't open file\n");
NULL              197 tests/api/api-seek-test.c     result = avformat_find_stream_info(fmt_ctx, NULL);
NULL              199 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Can't get stream info\n");
NULL              211 tests/api/api-seek-test.c     video_stream = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
NULL              213 tests/api/api-seek-test.c       av_log(NULL, AV_LOG_ERROR, "Can't find video stream in input file\n");
NULL              222 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n");
NULL              229 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate decoder context\n");
NULL              236 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n");
NULL              240 tests/api/api-seek-test.c     result = avcodec_open2(ctx, codec, NULL);
NULL              248 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Can't allocate frame\n");
NULL              278 tests/api/api-seek-test.c         av_log(NULL, AV_LOG_ERROR, "Incorrect input\n");
NULL               67 tests/api/api-threadmessage-test.c     av_log(NULL, AV_LOG_INFO, "sender #%d: workload=%d\n", wd->id, wd->workload);
NULL               70 tests/api/api-threadmessage-test.c             av_log(NULL, AV_LOG_INFO, "sender #%d: flushing the queue\n", wd->id);
NULL               74 tests/api/api-threadmessage-test.c             AVDictionary *meta = NULL;
NULL              111 tests/api/api-threadmessage-test.c             av_log(NULL, AV_LOG_INFO, "sender #%d: sending my work (%d/%d frame:%p)\n",
NULL              120 tests/api/api-threadmessage-test.c     av_log(NULL, AV_LOG_INFO, "sender #%d: my work is done here (%s)\n",
NULL              123 tests/api/api-threadmessage-test.c     return NULL;
NULL              133 tests/api/api-threadmessage-test.c             av_log(NULL, AV_LOG_INFO, "receiver #%d: flushing the queue, "
NULL              147 tests/api/api-threadmessage-test.c             e = av_dict_get(meta, "sig", NULL, 0);
NULL              148 tests/api/api-threadmessage-test.c             av_log(NULL, AV_LOG_INFO, "got \"%s\" (%p)\n", e->value, msg.frame);
NULL              153 tests/api/api-threadmessage-test.c     av_log(NULL, AV_LOG_INFO, "consumed enough (%d), stop\n", i);
NULL              156 tests/api/api-threadmessage-test.c     return NULL;
NULL              172 tests/api/api-threadmessage-test.c     AVThreadMessageQueue *queue = NULL;
NULL              175 tests/api/api-threadmessage-test.c         av_log(NULL, AV_LOG_ERROR, "%s <max_queue_size> "
NULL              192 tests/api/api-threadmessage-test.c         av_log(NULL, AV_LOG_ERROR, "negative values not allowed\n");
NULL              196 tests/api/api-threadmessage-test.c     av_log(NULL, AV_LOG_INFO, "qsize:%d / %d senders sending [%d-%d] / "
NULL              222 tests/api/api-threadmessage-test.c         ret = pthread_create(&td->tid, NULL, type##_thread, td);                \
NULL              225 tests/api/api-threadmessage-test.c             av_log(NULL, AV_LOG_ERROR, "Unable to start " AV_STRINGIFY(type)    \
NULL              236 tests/api/api-threadmessage-test.c         ret = pthread_join(td->tid, NULL);                                      \
NULL              239 tests/api/api-threadmessage-test.c             av_log(NULL, AV_LOG_ERROR, "Unable to join " AV_STRINGIFY(type)     \
NULL              258 tests/api/api-threadmessage-test.c         av_log(NULL, AV_LOG_ERROR, "Error: %s\n", av_err2str(ret));
NULL              192 tests/checkasm/checkasm.c     { NULL }
NULL              235 tests/checkasm/checkasm.c     { NULL }
NULL              602 tests/checkasm/checkasm.c         state.cpu_flag_name = NULL;
NULL              694 tests/checkasm/checkasm.c             seed = strtoul(argv[1], NULL, 10);
NULL              704 tests/checkasm/checkasm.c     check_cpu_flag(NULL, 0);
NULL              739 tests/checkasm/checkasm.c         return NULL;
NULL              750 tests/checkasm/checkasm.c                 return NULL;
NULL              836 tests/checkasm/checkasm.c         length += vsnprintf(NULL, 0, name, arg);
NULL               57 tests/checkasm/fmtconvert.c     ff_fmt_convert_init(&c, NULL);
NULL              198 tests/checkasm/h264dsp.c                 void (*idct)(uint8_t *, int16_t *, int) = NULL;
NULL              246 tests/checkasm/h264dsp.c             void (*idct)(uint8_t *, const int *, int16_t *, int, const uint8_t[]) = NULL;
NULL               71 tests/checkasm/sw_scale.c     if (sws_init_context(ctx, NULL, NULL) < 0)
NULL              119 tests/checkasm/sw_scale.c                 call_ref(NULL, dst0, SRC_PIXELS, src, filter, filterPos, width);
NULL              120 tests/checkasm/sw_scale.c                 call_new(NULL, dst1, SRC_PIXELS, src, filter, filterPos, width);
NULL              123 tests/checkasm/sw_scale.c                 bench_new(NULL, dst0, SRC_PIXELS, src, filter, filterPos, width);
NULL               78 tests/checkasm/vf_blend.c                      dst1 + dst_offset, w, w, HEIGHT, &param, NULL);                       \
NULL               80 tests/checkasm/vf_blend.c                      dst2 + dst_offset, w, w, HEIGHT, &param, NULL);                       \
NULL               85 tests/checkasm/vf_blend.c                   w / 4, HEIGHT / 4, &param, NULL);                                        \
NULL              396 tests/checkasm/vp8dsp.c             void (*func)(uint8_t *, ptrdiff_t, int, int, int) = NULL;
NULL              444 tests/checkasm/vp8dsp.c             void (*func)(uint8_t *, uint8_t *, ptrdiff_t, int, int, int) = NULL;
NULL              114 tests/dnn/dnn-layer-conv2d-test.c     operands[1].data = NULL;
NULL              214 tests/dnn/dnn-layer-conv2d-test.c     operands[1].data = NULL;
NULL               80 tests/dnn/dnn-layer-depth2space-test.c     operands[1].data = NULL;
NULL               69 tests/dnn/dnn-layer-mathbinary-test.c     operands[1].data = NULL;
NULL              109 tests/dnn/dnn-layer-mathbinary-test.c     operands[1].data = NULL;
NULL              156 tests/dnn/dnn-layer-mathbinary-test.c     operands[2].data = NULL;
NULL               57 tests/dnn/dnn-layer-mathunary-test.c     operands[1].data = NULL;
NULL               45 tests/dnn/dnn-layer-maximum-test.c     operands[1].data = NULL;
NULL               79 tests/dnn/dnn-layer-pad-test.c     operands[1].data = NULL;
NULL              144 tests/dnn/dnn-layer-pad-test.c     operands[1].data = NULL;
NULL              210 tests/dnn/dnn-layer-pad-test.c     operands[1].data = NULL;
NULL              189 tests/rotozoom.c             pgmyuv_save(NULL, w, h, rgb_tab);
NULL              227 tests/tiny_ssim.c                                      w>>!!i, h>>!!i, temp, NULL );
NULL              187 tests/videogen.c             pgmyuv_save(NULL, w, h, rgb_tab);
NULL               37 tools/aviocat.c     const char *input_url = NULL, *output_url = NULL;
NULL               42 tools/aviocat.c     AVDictionary *in_opts = NULL;
NULL               43 tools/aviocat.c     AVDictionary *out_opts = NULL;
NULL               81 tools/aviocat.c     ret = avio_open2(&input, input_url, AVIO_FLAG_READ, NULL, &in_opts);
NULL              104 tools/aviocat.c     ret = avio_open2(&output, output_url, AVIO_FLAG_WRITE, NULL, &out_opts);
NULL               59 tools/crypto_bench.c     av_log(NULL, AV_LOG_ERROR, "Fatal error: %s\n", tag);
NULL              120 tools/crypto_bench.c     av_aes_crypt(aes, output, input, size >> 4, NULL, 0);
NULL              130 tools/crypto_bench.c     av_blowfish_crypt(blowfish, output, input, size >> 3, NULL, 0);
NULL              140 tools/crypto_bench.c     av_camellia_crypt(camellia, output, input, size >> 4, NULL, 0);
NULL              160 tools/crypto_bench.c     av_des_crypt(des, output, input, size >> 3, NULL, 0);
NULL              170 tools/crypto_bench.c     av_twofish_crypt(twofish, output, input, size >> 4, NULL, 0);
NULL              180 tools/crypto_bench.c     av_rc4_crypt(rc4, output, input, size, NULL, 0);
NULL              190 tools/crypto_bench.c     av_xtea_crypt(xtea, output, input, size >> 3, NULL, 0);
NULL              682 tools/crypto_bench.c             specified_runs = strtol(optarg, NULL, 0);
NULL               81 tools/cws2fws.c     zstream.zalloc = NULL;
NULL               82 tools/cws2fws.c     zstream.zfree  = NULL;
NULL               83 tools/cws2fws.c     zstream.opaque = NULL;
NULL               68 tools/enum_options.c         const AVOption *u = NULL;
NULL               80 tools/enum_options.c     const AVOption *o = NULL;
NULL               91 tools/enum_options.c     const AVInputFormat *iformat = NULL;
NULL               92 tools/enum_options.c     const AVOutputFormat *oformat = NULL;
NULL               93 tools/enum_options.c     void *iformat_opaque = NULL;
NULL               94 tools/enum_options.c     void *oformat_opaque = NULL;
NULL              116 tools/enum_options.c     void *iter = NULL;
NULL              117 tools/enum_options.c     AVCodec *c = NULL;
NULL               59 tools/ffescape.c     const char *outfilename = NULL, *infilename = NULL;
NULL               60 tools/ffescape.c     FILE *outfile = NULL, *infile = NULL;
NULL               66 tools/ffescape.c     char *special_chars = NULL;
NULL               84 tools/ffescape.c                 av_log(NULL, AV_LOG_ERROR,
NULL               95 tools/ffescape.c                 av_log(NULL, AV_LOG_ERROR,
NULL              108 tools/ffescape.c                 av_log(NULL, AV_LOG_ERROR,
NULL              135 tools/ffescape.c         av_log(NULL, AV_LOG_ERROR, "Impossible to open input file '%s': %s\n", infilename, strerror(errno));
NULL              146 tools/ffescape.c         av_log(NULL, AV_LOG_ERROR, "Impossible to open output file '%s': %s\n", outfilename, strerror(errno));
NULL              157 tools/ffescape.c         av_log(NULL, AV_LOG_ERROR, "Could not allocate a buffer for the source string\n");
NULL              158 tools/ffescape.c         av_bprint_finalize(&src, NULL);
NULL              170 tools/ffescape.c             av_log(NULL, AV_LOG_ERROR, "Could not escape string\n");
NULL               54 tools/ffeval.c     char *buf = NULL;
NULL               55 tools/ffeval.c     const char *outfilename = NULL, *infilename = NULL;
NULL               56 tools/ffeval.c     FILE *outfile = NULL, *infile = NULL;
NULL               63 tools/ffeval.c         if (!av_dynarray2_add((void **)&buf, &buf_size, 1, NULL)) {     \
NULL               64 tools/ffeval.c             av_log(NULL, AV_LOG_ERROR,                                  \
NULL              122 tools/ffeval.c                                                  NULL, NULL,
NULL              123 tools/ffeval.c                                                  NULL, NULL, NULL, NULL, NULL, 0, NULL);
NULL              147 tools/ffhash.c         ret |= check(NULL);
NULL               63 tools/fourcc2pixfmt.c     const char *pix_fmt_name = NULL;
NULL              111 tools/graph2dot.c     const char *outfilename = NULL;
NULL              112 tools/graph2dot.c     const char *infilename  = NULL;
NULL              113 tools/graph2dot.c     FILE *outfile           = NULL;
NULL              114 tools/graph2dot.c     FILE *infile            = NULL;
NULL              115 tools/graph2dot.c     char *graph_string      = NULL;
NULL              176 tools/graph2dot.c         last_line->next = NULL;
NULL              192 tools/graph2dot.c     if (avfilter_graph_parse(graph, graph_string, NULL, NULL, NULL) < 0) {
NULL              197 tools/graph2dot.c     if (avfilter_graph_config(graph, NULL) < 0)
NULL              147 tools/ismindex.c     AVIOContext *out = NULL;
NULL              150 tools/ismindex.c     if ((ret = avio_open2(&out, filename, AVIO_FLAG_WRITE, NULL, NULL)) < 0) {
NULL              181 tools/ismindex.c     FILE* out = NULL;
NULL              328 tools/ismindex.c     struct Track *track = NULL;
NULL              419 tools/ismindex.c     AVIOContext *f = NULL;
NULL              422 tools/ismindex.c     if ((err = avio_open2(&f, file, AVIO_FLAG_READ, NULL, NULL)) < 0)
NULL              467 tools/ismindex.c     AVIOContext *io = NULL;
NULL              500 tools/ismindex.c     AVFormatContext *ctx = NULL;
NULL              505 tools/ismindex.c     err = avformat_open_input(&ctx, file, NULL, NULL);
NULL              512 tools/ismindex.c     err = avformat_find_stream_info(ctx, NULL);
NULL              787 tools/ismindex.c     const char *basename = NULL;
NULL               56 tools/pktdumper.c     AVFormatContext *fctx = NULL;
NULL               92 tools/pktdumper.c     err = avformat_open_input(&fctx, argv[1], NULL, NULL);
NULL               98 tools/pktdumper.c     err = avformat_find_stream_info(fctx, NULL);
NULL               41 tools/probetest.c     const AVInputFormat *fmt = NULL;
NULL               42 tools/probetest.c     void *fmt_opaque = NULL;
NULL               69 tools/probetest.c     const AVInputFormat *fmt = NULL;
NULL               70 tools/probetest.c     void *fmt_opaque = NULL;
NULL              131 tools/probetest.c     pd.buf = NULL;
NULL              400 tools/qt-faststart.c     if (new_moov_atom == NULL) {
NULL              432 tools/qt-faststart.c     FILE *infile  = NULL;
NULL              433 tools/qt-faststart.c     FILE *outfile = NULL;
NULL              439 tools/qt-faststart.c     unsigned char *moov_atom = NULL;
NULL              440 tools/qt-faststart.c     unsigned char *ftyp_atom = NULL;
NULL              444 tools/qt-faststart.c     unsigned char *copy_buffer = NULL;
NULL              594 tools/qt-faststart.c     infile = NULL;
NULL               48 tools/seek_print.c     AVFormatContext *avf = NULL;
NULL               68 tools/seek_print.c     if ((ret = avformat_open_input(&avf, filename, NULL, NULL)) < 0) {
NULL               72 tools/seek_print.c     if ((ret = avformat_find_stream_info(avf, NULL)) < 0) {
NULL               82 tools/sidxindex.c     AVIOContext *f = NULL;
NULL               85 tools/sidxindex.c     if ((err = avio_open2(&f, file, AVIO_FLAG_READ, NULL, NULL)) < 0)
NULL              119 tools/sidxindex.c     AVFormatContext *ctx = NULL;
NULL              124 tools/sidxindex.c     err = avformat_open_input(&ctx, file, NULL, NULL);
NULL              131 tools/sidxindex.c     err = avformat_find_stream_info(ctx, NULL);
NULL              237 tools/sidxindex.c     struct Track **adaptation_sets_buf[2] = { NULL };
NULL              362 tools/sidxindex.c     const char *out = NULL;
NULL               35 tools/target_bsf_fuzzer.c static AVBitStreamFilter *f = NULL;
NULL               43 tools/target_bsf_fuzzer.c     AVBSFContext *bsf = NULL;
NULL              110 tools/target_bsf_fuzzer.c     out.data = NULL;
NULL              143 tools/target_bsf_fuzzer.c     res = av_bsf_send_packet(bsf, NULL);
NULL               70 tools/target_dec_fuzzer.c static AVCodec *c = NULL;
NULL              110 tools/target_dec_fuzzer.c                           const AVPacket *avpkt) = NULL;
NULL              111 tools/target_dec_fuzzer.c     AVCodecParserContext *parser = NULL;
NULL              113 tools/target_dec_fuzzer.c     AVDictionary *opts = NULL;
NULL              186 tools/target_dec_fuzzer.c     AVCodecContext* parser_avctx = avcodec_alloc_context3(NULL);
NULL               93 tools/target_dem_fuzzer.c     AVIOContext *fuzzed_pb = NULL;
NULL              131 tools/target_dem_fuzzer.c                                    io_read, NULL, seekable ? io_seek : NULL);
NULL              137 tools/target_dem_fuzzer.c     ret = avformat_open_input(&avfmt, filename, NULL, NULL);
NULL              145 tools/target_dem_fuzzer.c     ret = avformat_find_stream_info(avfmt, NULL);
NULL               27 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR, "Stream type not supported\n");
NULL               32 tools/uncoded_frame.c                                        NULL, NULL, NULL, graph);
NULL               45 tools/uncoded_frame.c     AVFilterGraph *in_graph = NULL;
NULL               46 tools/uncoded_frame.c     Stream *streams = NULL, *st;
NULL               47 tools/uncoded_frame.c     AVFrame *frame = NULL;
NULL               53 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR,
NULL               70 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR, "Unable to alloc graph graph: %s\n",
NULL               74 tools/uncoded_frame.c     ret = avfilter_graph_parse_ptr(in_graph, in_graph_desc, NULL, NULL, NULL);
NULL               76 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR, "Unable to parse graph: %s\n",
NULL               85 tools/uncoded_frame.c                 av_log(NULL, AV_LOG_ERROR, "Graph has unconnected inputs\n");
NULL               95 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR, "Graph has no output stream\n");
NULL              100 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR,
NULL              109 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR, "Could not allocate streams\n");
NULL              122 tools/uncoded_frame.c     if ((ret = avfilter_graph_config(in_graph, NULL)) < 0) {
NULL              123 tools/uncoded_frame.c         av_log(NULL, AV_LOG_ERROR, "Failed to configure graph\n");
NULL              129 tools/uncoded_frame.c         char *fmt = NULL, *dev = out_dev_name[i];
NULL              135 tools/uncoded_frame.c         ret = avformat_alloc_output_context2(&st->mux, NULL, fmt, dev);
NULL              137 tools/uncoded_frame.c             av_log(NULL, AV_LOG_ERROR, "Failed to allocate output: %s\n",
NULL              143 tools/uncoded_frame.c                              NULL, NULL);
NULL              157 tools/uncoded_frame.c         if (!(st->stream = avformat_new_stream(st->mux, NULL))) {
NULL              159 tools/uncoded_frame.c             av_log(NULL, AV_LOG_ERROR, "Failed to create output stream\n");
NULL              189 tools/uncoded_frame.c         if ((ret = avformat_write_header(st->mux, NULL)) < 0) {
NULL              214 tools/uncoded_frame.c                 av_log(NULL, AV_LOG_ERROR, "Error filtering: %s\n",
NULL              224 tools/uncoded_frame.c                     av_log(NULL, AV_LOG_ERROR, "Could not allocate frame\n");
NULL              231 tools/uncoded_frame.c                         av_log(NULL, AV_LOG_WARNING, "Error in sink: %s\n",
NULL              242 tools/uncoded_frame.c                 frame = NULL;
NULL               96 tools/venc_data_dump.c     ret = avcodec_open2(*dec, NULL, opts);
NULL              105 tools/venc_data_dump.c     AVFormatContext *demuxer = NULL;
NULL              106 tools/venc_data_dump.c     AVCodecContext  *decoder = NULL;
NULL              107 tools/venc_data_dump.c     AVDictionary       *opts = NULL;
NULL              109 tools/venc_data_dump.c     AVPacket *pkt   = NULL;
NULL              110 tools/venc_data_dump.c     AVFrame  *frame = NULL;
NULL              113 tools/venc_data_dump.c     const char *filename, *thread_type = NULL, *nb_threads = NULL;
NULL              122 tools/venc_data_dump.c     stream_idx  = strtol(argv[2], NULL, 0);
NULL              123 tools/venc_data_dump.c     max_frames  = strtol(argv[3], NULL, 0);
NULL              133 tools/venc_data_dump.c     ret = avformat_open_input(&demuxer, filename, NULL, NULL);
NULL              179 tools/venc_data_dump.c     avcodec_send_packet(decoder, NULL);
NULL               60 tools/zmqsend.c     const char *infilename = NULL;
NULL               61 tools/zmqsend.c     FILE *infile = NULL;
NULL               87 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR,
NULL               94 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR,
NULL              101 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR,
NULL              108 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR, "Could not bind ZMQ responder to address '%s': %s\n",
NULL              121 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR, "Could not allocate a buffer for the source string\n");
NULL              122 tools/zmqsend.c         av_bprint_finalize(&src, NULL);
NULL              129 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR, "Could not send message: %s\n", zmq_strerror(errno));
NULL              135 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR,
NULL              142 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR,
NULL              152 tools/zmqsend.c         av_log(NULL, AV_LOG_ERROR,