]> git.sesse.net Git - ffmpeg/blob - libavcodec/avcodec.c
avcodec/avcodec: Use avcodec_close() on avcodec_open2() failure
[ffmpeg] / libavcodec / avcodec.c
1 /*
2  * AVCodecContext functions for libavcodec
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * AVCodecContext functions for libavcodec
24  */
25
26 #include "config.h"
27 #include "libavutil/avassert.h"
28 #include "libavutil/avstring.h"
29 #include "libavutil/bprint.h"
30 #include "libavutil/imgutils.h"
31 #include "libavutil/mem.h"
32 #include "libavutil/opt.h"
33 #include "libavutil/thread.h"
34 #include "avcodec.h"
35 #include "decode.h"
36 #include "encode.h"
37 #include "frame_thread_encoder.h"
38 #include "internal.h"
39 #include "thread.h"
40
41 #include "libavutil/ffversion.h"
42 const char av_codec_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
43
44 unsigned avcodec_version(void)
45 {
46     av_assert0(AV_CODEC_ID_PCM_S8_PLANAR==65563);
47     av_assert0(AV_CODEC_ID_ADPCM_G722==69660);
48     av_assert0(AV_CODEC_ID_SRT==94216);
49     av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
50
51     return LIBAVCODEC_VERSION_INT;
52 }
53
54 const char *avcodec_configuration(void)
55 {
56     return FFMPEG_CONFIGURATION;
57 }
58
59 const char *avcodec_license(void)
60 {
61 #define LICENSE_PREFIX "libavcodec license: "
62     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1];
63 }
64
65 int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size)
66 {
67     int i;
68
69     for (i = 0; i < count; i++) {
70         int r = func(c, (char *)arg + i * size);
71         if (ret)
72             ret[i] = r;
73     }
74     emms_c();
75     return 0;
76 }
77
78 int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int jobnr, int threadnr), void *arg, int *ret, int count)
79 {
80     int i;
81
82     for (i = 0; i < count; i++) {
83         int r = func(c, arg, i, 0);
84         if (ret)
85             ret[i] = r;
86     }
87     emms_c();
88     return 0;
89 }
90
91 static AVMutex codec_mutex = AV_MUTEX_INITIALIZER;
92
93 static void lock_avcodec(const AVCodec *codec)
94 {
95     if (!(codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE) && codec->init)
96         ff_mutex_lock(&codec_mutex);
97 }
98
99 static void unlock_avcodec(const AVCodec *codec)
100 {
101     if (!(codec->caps_internal & FF_CODEC_CAP_INIT_THREADSAFE) && codec->init)
102         ff_mutex_unlock(&codec_mutex);
103 }
104
105 static int64_t get_bit_rate(AVCodecContext *ctx)
106 {
107     int64_t bit_rate;
108     int bits_per_sample;
109
110     switch (ctx->codec_type) {
111     case AVMEDIA_TYPE_VIDEO:
112     case AVMEDIA_TYPE_DATA:
113     case AVMEDIA_TYPE_SUBTITLE:
114     case AVMEDIA_TYPE_ATTACHMENT:
115         bit_rate = ctx->bit_rate;
116         break;
117     case AVMEDIA_TYPE_AUDIO:
118         bits_per_sample = av_get_bits_per_sample(ctx->codec_id);
119         if (bits_per_sample) {
120             bit_rate = ctx->sample_rate * (int64_t)ctx->channels;
121             if (bit_rate > INT64_MAX / bits_per_sample) {
122                 bit_rate = 0;
123             } else
124                 bit_rate *= bits_per_sample;
125         } else
126             bit_rate = ctx->bit_rate;
127         break;
128     default:
129         bit_rate = 0;
130         break;
131     }
132     return bit_rate;
133 }
134
135 int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
136 {
137     int ret = 0;
138     AVDictionary *tmp = NULL;
139     AVCodecInternal *avci;
140
141     if (avcodec_is_open(avctx))
142         return 0;
143
144     if (!codec && !avctx->codec) {
145         av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
146         return AVERROR(EINVAL);
147     }
148     if (codec && avctx->codec && codec != avctx->codec) {
149         av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
150                                     "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
151         return AVERROR(EINVAL);
152     }
153     if (!codec)
154         codec = avctx->codec;
155
156     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
157         avctx->codec_id == AV_CODEC_ID_NONE) {
158         avctx->codec_type = codec->type;
159         avctx->codec_id   = codec->id;
160     }
161     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type &&
162                                          avctx->codec_type != AVMEDIA_TYPE_ATTACHMENT)) {
163         av_log(avctx, AV_LOG_ERROR, "Codec type or id mismatches\n");
164         return AVERROR(EINVAL);
165     }
166     avctx->codec = codec;
167
168     if (avctx->extradata_size < 0 || avctx->extradata_size >= FF_MAX_EXTRADATA_SIZE)
169         return AVERROR(EINVAL);
170
171     if (options)
172         av_dict_copy(&tmp, *options, 0);
173
174     lock_avcodec(codec);
175
176     avci = av_mallocz(sizeof(*avci));
177     if (!avci) {
178         ret = AVERROR(ENOMEM);
179         goto end;
180     }
181     avctx->internal = avci;
182
183     avci->buffer_frame = av_frame_alloc();
184     avci->buffer_pkt = av_packet_alloc();
185     avci->es.in_frame = av_frame_alloc();
186     avci->ds.in_pkt = av_packet_alloc();
187     avci->last_pkt_props = av_packet_alloc();
188     avci->pkt_props = av_fifo_alloc(sizeof(*avci->last_pkt_props));
189     if (!avci->buffer_frame || !avci->buffer_pkt          ||
190         !avci->es.in_frame  || !avci->ds.in_pkt           ||
191         !avci->last_pkt_props || !avci->pkt_props) {
192         ret = AVERROR(ENOMEM);
193         goto free_and_end;
194     }
195
196     avci->skip_samples_multiplier = 1;
197
198     if (codec->priv_data_size > 0) {
199         if (!avctx->priv_data) {
200             avctx->priv_data = av_mallocz(codec->priv_data_size);
201             if (!avctx->priv_data) {
202                 ret = AVERROR(ENOMEM);
203                 goto free_and_end;
204             }
205             if (codec->priv_class) {
206                 *(const AVClass **)avctx->priv_data = codec->priv_class;
207                 av_opt_set_defaults(avctx->priv_data);
208             }
209         }
210         if (codec->priv_class && (ret = av_opt_set_dict(avctx->priv_data, &tmp)) < 0)
211             goto free_and_end;
212     } else {
213         avctx->priv_data = NULL;
214     }
215     if ((ret = av_opt_set_dict(avctx, &tmp)) < 0)
216         goto free_and_end;
217
218     if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) {
219         av_log(avctx, AV_LOG_ERROR, "Codec (%s) not on whitelist \'%s\'\n", codec->name, avctx->codec_whitelist);
220         ret = AVERROR(EINVAL);
221         goto free_and_end;
222     }
223
224     // only call ff_set_dimensions() for non H.264/VP6F/DXV codecs so as not to overwrite previously setup dimensions
225     if (!(avctx->coded_width && avctx->coded_height && avctx->width && avctx->height &&
226           (avctx->codec_id == AV_CODEC_ID_H264 || avctx->codec_id == AV_CODEC_ID_VP6F || avctx->codec_id == AV_CODEC_ID_DXV))) {
227         if (avctx->coded_width && avctx->coded_height)
228             ret = ff_set_dimensions(avctx, avctx->coded_width, avctx->coded_height);
229         else if (avctx->width && avctx->height)
230             ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
231         if (ret < 0)
232             goto free_and_end;
233     }
234
235     if ((avctx->coded_width || avctx->coded_height || avctx->width || avctx->height)
236         && (  av_image_check_size2(avctx->coded_width, avctx->coded_height, avctx->max_pixels, AV_PIX_FMT_NONE, 0, avctx) < 0
237            || av_image_check_size2(avctx->width,       avctx->height,       avctx->max_pixels, AV_PIX_FMT_NONE, 0, avctx) < 0)) {
238         av_log(avctx, AV_LOG_WARNING, "Ignoring invalid width/height values\n");
239         ff_set_dimensions(avctx, 0, 0);
240     }
241
242     if (avctx->width > 0 && avctx->height > 0) {
243         if (av_image_check_sar(avctx->width, avctx->height,
244                                avctx->sample_aspect_ratio) < 0) {
245             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
246                    avctx->sample_aspect_ratio.num,
247                    avctx->sample_aspect_ratio.den);
248             avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
249         }
250     }
251
252     if (avctx->channels > FF_SANE_NB_CHANNELS || avctx->channels < 0) {
253         av_log(avctx, AV_LOG_ERROR, "Too many or invalid channels: %d\n", avctx->channels);
254         ret = AVERROR(EINVAL);
255         goto free_and_end;
256     }
257
258     if (avctx->sample_rate < 0) {
259         av_log(avctx, AV_LOG_ERROR, "Invalid sample rate: %d\n", avctx->sample_rate);
260         ret = AVERROR(EINVAL);
261         goto free_and_end;
262     }
263     if (avctx->block_align < 0) {
264         av_log(avctx, AV_LOG_ERROR, "Invalid block align: %d\n", avctx->block_align);
265         ret = AVERROR(EINVAL);
266         goto free_and_end;
267     }
268
269     avctx->frame_number = 0;
270     avctx->codec_descriptor = avcodec_descriptor_get(avctx->codec_id);
271
272     if ((avctx->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) &&
273         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
274         const char *codec_string = av_codec_is_encoder(codec) ? "encoder" : "decoder";
275         const AVCodec *codec2;
276         av_log(avctx, AV_LOG_ERROR,
277                "The %s '%s' is experimental but experimental codecs are not enabled, "
278                "add '-strict %d' if you want to use it.\n",
279                codec_string, codec->name, FF_COMPLIANCE_EXPERIMENTAL);
280         codec2 = av_codec_is_encoder(codec) ? avcodec_find_encoder(codec->id) : avcodec_find_decoder(codec->id);
281         if (!(codec2->capabilities & AV_CODEC_CAP_EXPERIMENTAL))
282             av_log(avctx, AV_LOG_ERROR, "Alternatively use the non experimental %s '%s'.\n",
283                 codec_string, codec2->name);
284         ret = AVERROR_EXPERIMENTAL;
285         goto free_and_end;
286     }
287
288     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO &&
289         (!avctx->time_base.num || !avctx->time_base.den)) {
290         avctx->time_base.num = 1;
291         avctx->time_base.den = avctx->sample_rate;
292     }
293
294     if (av_codec_is_encoder(avctx->codec))
295         ret = ff_encode_preinit(avctx);
296     else
297         ret = ff_decode_preinit(avctx);
298     if (ret < 0)
299         goto free_and_end;
300
301     if (!HAVE_THREADS)
302         av_log(avctx, AV_LOG_WARNING, "Warning: not compiled with thread support, using thread emulation\n");
303
304     if (CONFIG_FRAME_THREAD_ENCODER && av_codec_is_encoder(avctx->codec)) {
305         unlock_avcodec(codec); //we will instantiate a few encoders thus kick the counter to prevent false detection of a problem
306         ret = ff_frame_thread_encoder_init(avctx, options ? *options : NULL);
307         lock_avcodec(codec);
308         if (ret < 0)
309             goto free_and_end;
310     }
311
312     if (HAVE_THREADS
313         && !(avci->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
314         ret = ff_thread_init(avctx);
315         if (ret < 0) {
316             goto free_and_end;
317         }
318     }
319     if (!HAVE_THREADS && !(codec->caps_internal & FF_CODEC_CAP_AUTO_THREADS))
320         avctx->thread_count = 1;
321
322     if (!(avctx->active_thread_type & FF_THREAD_FRAME) ||
323         avci->frame_thread_encoder) {
324         if (avctx->codec->init) {
325             ret = avctx->codec->init(avctx);
326             if (ret < 0) {
327                 avci->needs_close = avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP;
328                 goto free_and_end;
329             }
330         }
331         avci->needs_close = 1;
332     }
333
334     ret=0;
335
336     if (av_codec_is_decoder(avctx->codec)) {
337         if (!avctx->bit_rate)
338             avctx->bit_rate = get_bit_rate(avctx);
339         /* validate channel layout from the decoder */
340         if (avctx->channel_layout) {
341             int channels = av_get_channel_layout_nb_channels(avctx->channel_layout);
342             if (!avctx->channels)
343                 avctx->channels = channels;
344             else if (channels != avctx->channels) {
345                 char buf[512];
346                 av_get_channel_layout_string(buf, sizeof(buf), -1, avctx->channel_layout);
347                 av_log(avctx, AV_LOG_WARNING,
348                        "Channel layout '%s' with %d channels does not match specified number of channels %d: "
349                        "ignoring specified channel layout\n",
350                        buf, channels, avctx->channels);
351                 avctx->channel_layout = 0;
352             }
353         }
354         if (avctx->channels && avctx->channels < 0 ||
355             avctx->channels > FF_SANE_NB_CHANNELS) {
356             ret = AVERROR(EINVAL);
357             goto free_and_end;
358         }
359         if (avctx->bits_per_coded_sample < 0) {
360             ret = AVERROR(EINVAL);
361             goto free_and_end;
362         }
363
364 #if FF_API_AVCTX_TIMEBASE
365         if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
366             avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
367 #endif
368     }
369     if (codec->priv_data_size > 0 && avctx->priv_data && codec->priv_class) {
370         av_assert0(*(const AVClass **)avctx->priv_data == codec->priv_class);
371     }
372
373 end:
374     unlock_avcodec(codec);
375     if (options) {
376         av_dict_free(options);
377         *options = tmp;
378     }
379
380     return ret;
381 free_and_end:
382     avcodec_close(avctx);
383     av_dict_free(&tmp);
384     goto end;
385 }
386
387 void avcodec_flush_buffers(AVCodecContext *avctx)
388 {
389     AVCodecInternal *avci = avctx->internal;
390
391     if (av_codec_is_encoder(avctx->codec)) {
392         int caps = avctx->codec->capabilities;
393
394         if (!(caps & AV_CODEC_CAP_ENCODER_FLUSH)) {
395             // Only encoders that explicitly declare support for it can be
396             // flushed. Otherwise, this is a no-op.
397             av_log(avctx, AV_LOG_WARNING, "Ignoring attempt to flush encoder "
398                    "that doesn't support it\n");
399             return;
400         }
401
402         // We haven't implemented flushing for frame-threaded encoders.
403         av_assert0(!(caps & AV_CODEC_CAP_FRAME_THREADS));
404     }
405
406     avci->draining      = 0;
407     avci->draining_done = 0;
408     avci->nb_draining_errors = 0;
409     av_frame_unref(avci->buffer_frame);
410     av_packet_unref(avci->buffer_pkt);
411
412     av_packet_unref(avci->last_pkt_props);
413     while (av_fifo_size(avci->pkt_props) >= sizeof(*avci->last_pkt_props)) {
414         av_fifo_generic_read(avci->pkt_props,
415                              avci->last_pkt_props, sizeof(*avci->last_pkt_props),
416                              NULL);
417         av_packet_unref(avci->last_pkt_props);
418     }
419     av_fifo_reset(avci->pkt_props);
420
421     av_frame_unref(avci->es.in_frame);
422     av_packet_unref(avci->ds.in_pkt);
423
424     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)
425         ff_thread_flush(avctx);
426     else if (avctx->codec->flush)
427         avctx->codec->flush(avctx);
428
429     avctx->pts_correction_last_pts =
430     avctx->pts_correction_last_dts = INT64_MIN;
431
432     if (av_codec_is_decoder(avctx->codec))
433         av_bsf_flush(avci->bsf);
434 }
435
436 void avsubtitle_free(AVSubtitle *sub)
437 {
438     int i;
439
440     for (i = 0; i < sub->num_rects; i++) {
441         av_freep(&sub->rects[i]->data[0]);
442         av_freep(&sub->rects[i]->data[1]);
443         av_freep(&sub->rects[i]->data[2]);
444         av_freep(&sub->rects[i]->data[3]);
445         av_freep(&sub->rects[i]->text);
446         av_freep(&sub->rects[i]->ass);
447         av_freep(&sub->rects[i]);
448     }
449
450     av_freep(&sub->rects);
451
452     memset(sub, 0, sizeof(*sub));
453 }
454
455 av_cold int avcodec_close(AVCodecContext *avctx)
456 {
457     int i;
458
459     if (!avctx)
460         return 0;
461
462     if (avcodec_is_open(avctx)) {
463         AVCodecInternal *avci = avctx->internal;
464
465         if (CONFIG_FRAME_THREAD_ENCODER &&
466             avci->frame_thread_encoder && avctx->thread_count > 1) {
467             ff_frame_thread_encoder_free(avctx);
468         }
469         if (HAVE_THREADS && avci->thread_ctx)
470             ff_thread_free(avctx);
471         if (avci->needs_close && avctx->codec->close)
472             avctx->codec->close(avctx);
473         avci->byte_buffer_size = 0;
474         av_freep(&avci->byte_buffer);
475         av_frame_free(&avci->buffer_frame);
476         av_packet_free(&avci->buffer_pkt);
477         if (avci->pkt_props) {
478             while (av_fifo_size(avci->pkt_props) >= sizeof(*avci->last_pkt_props)) {
479                 av_packet_unref(avci->last_pkt_props);
480                 av_fifo_generic_read(avci->pkt_props, avci->last_pkt_props,
481                                      sizeof(*avci->last_pkt_props), NULL);
482             }
483             av_fifo_freep(&avci->pkt_props);
484         }
485         av_packet_free(&avci->last_pkt_props);
486
487         av_packet_free(&avci->ds.in_pkt);
488         av_frame_free(&avci->es.in_frame);
489
490         av_buffer_unref(&avci->pool);
491
492         if (avctx->hwaccel && avctx->hwaccel->uninit)
493             avctx->hwaccel->uninit(avctx);
494         av_freep(&avci->hwaccel_priv_data);
495
496         av_bsf_free(&avci->bsf);
497
498         av_freep(&avctx->internal);
499     }
500
501     for (i = 0; i < avctx->nb_coded_side_data; i++)
502         av_freep(&avctx->coded_side_data[i].data);
503     av_freep(&avctx->coded_side_data);
504     avctx->nb_coded_side_data = 0;
505
506     av_buffer_unref(&avctx->hw_frames_ctx);
507     av_buffer_unref(&avctx->hw_device_ctx);
508
509     if (avctx->priv_data && avctx->codec && avctx->codec->priv_class)
510         av_opt_free(avctx->priv_data);
511     av_opt_free(avctx);
512     av_freep(&avctx->priv_data);
513     if (av_codec_is_encoder(avctx->codec)) {
514         av_freep(&avctx->extradata);
515         avctx->extradata_size = 0;
516     } else if (av_codec_is_decoder(avctx->codec))
517         av_freep(&avctx->subtitle_header);
518
519     avctx->codec = NULL;
520     avctx->active_thread_type = 0;
521
522     return 0;
523 }
524
525 static const char *unknown_if_null(const char *str)
526 {
527     return str ? str : "unknown";
528 }
529
530 void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
531 {
532     const char *codec_type;
533     const char *codec_name;
534     const char *profile = NULL;
535     AVBPrint bprint;
536     int64_t bitrate;
537     int new_line = 0;
538     AVRational display_aspect_ratio;
539     const char *separator = enc->dump_separator ? (const char *)enc->dump_separator : ", ";
540     const char *str;
541
542     if (!buf || buf_size <= 0)
543         return;
544     av_bprint_init_for_buffer(&bprint, buf, buf_size);
545     codec_type = av_get_media_type_string(enc->codec_type);
546     codec_name = avcodec_get_name(enc->codec_id);
547     profile = avcodec_profile_name(enc->codec_id, enc->profile);
548
549     av_bprintf(&bprint, "%s: %s", codec_type ? codec_type : "unknown",
550                codec_name);
551     buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
552
553     if (enc->codec && strcmp(enc->codec->name, codec_name))
554         av_bprintf(&bprint, " (%s)", enc->codec->name);
555
556     if (profile)
557         av_bprintf(&bprint, " (%s)", profile);
558     if (   enc->codec_type == AVMEDIA_TYPE_VIDEO
559         && av_log_get_level() >= AV_LOG_VERBOSE
560         && enc->refs)
561         av_bprintf(&bprint, ", %d reference frame%s",
562                    enc->refs, enc->refs > 1 ? "s" : "");
563
564     if (enc->codec_tag)
565         av_bprintf(&bprint, " (%s / 0x%04X)",
566                    av_fourcc2str(enc->codec_tag), enc->codec_tag);
567
568     switch (enc->codec_type) {
569     case AVMEDIA_TYPE_VIDEO:
570         {
571             unsigned len;
572
573             av_bprintf(&bprint, "%s%s", separator,
574                        enc->pix_fmt == AV_PIX_FMT_NONE ? "none" :
575                        unknown_if_null(av_get_pix_fmt_name(enc->pix_fmt)));
576
577             av_bprint_chars(&bprint, '(', 1);
578             len = bprint.len;
579
580             /* The following check ensures that '(' has been written
581              * and therefore allows us to erase it if it turns out
582              * to be unnecessary. */
583             if (!av_bprint_is_complete(&bprint))
584                 return;
585
586             if (enc->bits_per_raw_sample && enc->pix_fmt != AV_PIX_FMT_NONE &&
587                 enc->bits_per_raw_sample < av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth)
588                 av_bprintf(&bprint, "%d bpc, ", enc->bits_per_raw_sample);
589             if (enc->color_range != AVCOL_RANGE_UNSPECIFIED &&
590                 (str = av_color_range_name(enc->color_range)))
591                 av_bprintf(&bprint, "%s, ", str);
592
593             if (enc->colorspace != AVCOL_SPC_UNSPECIFIED ||
594                 enc->color_primaries != AVCOL_PRI_UNSPECIFIED ||
595                 enc->color_trc != AVCOL_TRC_UNSPECIFIED) {
596                 const char *col = unknown_if_null(av_color_space_name(enc->colorspace));
597                 const char *pri = unknown_if_null(av_color_primaries_name(enc->color_primaries));
598                 const char *trc = unknown_if_null(av_color_transfer_name(enc->color_trc));
599                 if (strcmp(col, pri) || strcmp(col, trc)) {
600                     new_line = 1;
601                     av_bprintf(&bprint, "%s/%s/%s, ", col, pri, trc);
602                 } else
603                     av_bprintf(&bprint, "%s, ", col);
604             }
605
606             if (enc->field_order != AV_FIELD_UNKNOWN) {
607                 const char *field_order = "progressive";
608                 if (enc->field_order == AV_FIELD_TT)
609                     field_order = "top first";
610                 else if (enc->field_order == AV_FIELD_BB)
611                     field_order = "bottom first";
612                 else if (enc->field_order == AV_FIELD_TB)
613                     field_order = "top coded first (swapped)";
614                 else if (enc->field_order == AV_FIELD_BT)
615                     field_order = "bottom coded first (swapped)";
616
617                 av_bprintf(&bprint, "%s, ", field_order);
618             }
619
620             if (av_log_get_level() >= AV_LOG_VERBOSE &&
621                 enc->chroma_sample_location != AVCHROMA_LOC_UNSPECIFIED &&
622                 (str = av_chroma_location_name(enc->chroma_sample_location)))
623                 av_bprintf(&bprint, "%s, ", str);
624
625             if (len == bprint.len) {
626                 bprint.str[len - 1] = '\0';
627                 bprint.len--;
628             } else {
629                 if (bprint.len - 2 < bprint.size) {
630                     /* Erase the last ", " */
631                     bprint.len -= 2;
632                     bprint.str[bprint.len] = '\0';
633                 }
634                 av_bprint_chars(&bprint, ')', 1);
635             }
636         }
637
638         if (enc->width) {
639             av_bprintf(&bprint, "%s%dx%d", new_line ? separator : ", ",
640                        enc->width, enc->height);
641
642             if (av_log_get_level() >= AV_LOG_VERBOSE &&
643                 (enc->width != enc->coded_width ||
644                  enc->height != enc->coded_height))
645                 av_bprintf(&bprint, " (%dx%d)",
646                            enc->coded_width, enc->coded_height);
647
648             if (enc->sample_aspect_ratio.num) {
649                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
650                           enc->width * (int64_t)enc->sample_aspect_ratio.num,
651                           enc->height * (int64_t)enc->sample_aspect_ratio.den,
652                           1024 * 1024);
653                 av_bprintf(&bprint, " [SAR %d:%d DAR %d:%d]",
654                          enc->sample_aspect_ratio.num, enc->sample_aspect_ratio.den,
655                          display_aspect_ratio.num, display_aspect_ratio.den);
656             }
657             if (av_log_get_level() >= AV_LOG_DEBUG) {
658                 int g = av_gcd(enc->time_base.num, enc->time_base.den);
659                 av_bprintf(&bprint, ", %d/%d",
660                            enc->time_base.num / g, enc->time_base.den / g);
661             }
662         }
663         if (encode) {
664             av_bprintf(&bprint, ", q=%d-%d", enc->qmin, enc->qmax);
665         } else {
666             if (enc->properties & FF_CODEC_PROPERTY_CLOSED_CAPTIONS)
667                 av_bprintf(&bprint, ", Closed Captions");
668             if (enc->properties & FF_CODEC_PROPERTY_LOSSLESS)
669                 av_bprintf(&bprint, ", lossless");
670         }
671         break;
672     case AVMEDIA_TYPE_AUDIO:
673         av_bprintf(&bprint, "%s", separator);
674
675         if (enc->sample_rate) {
676             av_bprintf(&bprint, "%d Hz, ", enc->sample_rate);
677         }
678         av_bprint_channel_layout(&bprint, enc->channels, enc->channel_layout);
679         if (enc->sample_fmt != AV_SAMPLE_FMT_NONE &&
680             (str = av_get_sample_fmt_name(enc->sample_fmt))) {
681             av_bprintf(&bprint, ", %s", str);
682         }
683         if (   enc->bits_per_raw_sample > 0
684             && enc->bits_per_raw_sample != av_get_bytes_per_sample(enc->sample_fmt) * 8)
685             av_bprintf(&bprint, " (%d bit)", enc->bits_per_raw_sample);
686         if (av_log_get_level() >= AV_LOG_VERBOSE) {
687             if (enc->initial_padding)
688                 av_bprintf(&bprint, ", delay %d", enc->initial_padding);
689             if (enc->trailing_padding)
690                 av_bprintf(&bprint, ", padding %d", enc->trailing_padding);
691         }
692         break;
693     case AVMEDIA_TYPE_DATA:
694         if (av_log_get_level() >= AV_LOG_DEBUG) {
695             int g = av_gcd(enc->time_base.num, enc->time_base.den);
696             if (g)
697                 av_bprintf(&bprint, ", %d/%d",
698                            enc->time_base.num / g, enc->time_base.den / g);
699         }
700         break;
701     case AVMEDIA_TYPE_SUBTITLE:
702         if (enc->width)
703             av_bprintf(&bprint, ", %dx%d", enc->width, enc->height);
704         break;
705     default:
706         return;
707     }
708     if (encode) {
709         if (enc->flags & AV_CODEC_FLAG_PASS1)
710             av_bprintf(&bprint, ", pass 1");
711         if (enc->flags & AV_CODEC_FLAG_PASS2)
712             av_bprintf(&bprint, ", pass 2");
713     }
714     bitrate = get_bit_rate(enc);
715     if (bitrate != 0) {
716         av_bprintf(&bprint, ", %"PRId64" kb/s", bitrate / 1000);
717     } else if (enc->rc_max_rate > 0) {
718         av_bprintf(&bprint, ", max. %"PRId64" kb/s", enc->rc_max_rate / 1000);
719     }
720 }
721
722 int avcodec_is_open(AVCodecContext *s)
723 {
724     return !!s->internal;
725 }