]> git.sesse.net Git - ffmpeg/blob - libavcodec/trace_headers_bsf.c
vaapi_h264: Add named options for setting profile and level
[ffmpeg] / libavcodec / trace_headers_bsf.c
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include <stdio.h>
20
21 #include "libavutil/avstring.h"
22 #include "libavutil/common.h"
23 #include "libavutil/log.h"
24
25 #include "bsf.h"
26 #include "cbs.h"
27
28
29 typedef struct TraceHeadersContext {
30     CodedBitstreamContext *cbc;
31 } TraceHeadersContext;
32
33
34 static int trace_headers_init(AVBSFContext *bsf)
35 {
36     TraceHeadersContext *ctx = bsf->priv_data;
37     int err;
38
39     err = ff_cbs_init(&ctx->cbc, bsf->par_in->codec_id, bsf);
40     if (err < 0)
41         return err;
42
43     ctx->cbc->trace_enable = 1;
44     ctx->cbc->trace_level  = AV_LOG_INFO;
45
46     if (bsf->par_in->extradata) {
47         CodedBitstreamFragment ps;
48
49         av_log(bsf, AV_LOG_INFO, "Extradata\n");
50
51         err = ff_cbs_read_extradata(ctx->cbc, &ps, bsf->par_in);
52         if (err < 0) {
53             av_log(bsf, AV_LOG_ERROR, "Failed to read extradata.\n");
54             return err;
55         }
56
57         ff_cbs_fragment_uninit(ctx->cbc, &ps);
58     }
59
60     return 0;
61 }
62
63 static void trace_headers_close(AVBSFContext *bsf)
64 {
65     TraceHeadersContext *ctx = bsf->priv_data;
66
67     ff_cbs_close(&ctx->cbc);
68 }
69
70 static int trace_headers(AVBSFContext *bsf, AVPacket *out)
71 {
72     TraceHeadersContext *ctx = bsf->priv_data;
73     CodedBitstreamFragment au;
74     AVPacket *in;
75     char tmp[256] = { 0 };
76     int err;
77
78     err = ff_bsf_get_packet(bsf, &in);
79     if (err < 0)
80         return err;
81
82     if (in->flags & AV_PKT_FLAG_KEY)
83         av_strlcat(tmp, ", key frame", sizeof(tmp));
84     if (in->flags & AV_PKT_FLAG_CORRUPT)
85         av_strlcat(tmp, ", corrupt", sizeof(tmp));
86
87     if (in->pts != AV_NOPTS_VALUE)
88         av_strlcatf(tmp, sizeof(tmp), ", pts %"PRId64, in->pts);
89     else
90         av_strlcat(tmp, ", no pts", sizeof(tmp));
91     if (in->dts != AV_NOPTS_VALUE)
92         av_strlcatf(tmp, sizeof(tmp), ", dts %"PRId64, in->dts);
93     else
94         av_strlcat(tmp, ", no dts", sizeof(tmp));
95     if (in->duration > 0)
96         av_strlcatf(tmp, sizeof(tmp), ", duration %"PRId64, in->duration);
97
98     av_log(bsf, AV_LOG_INFO, "Packet: %d bytes%s.\n", in->size, tmp);
99
100     err = ff_cbs_read_packet(ctx->cbc, &au, in);
101     if (err < 0)
102         return err;
103
104     ff_cbs_fragment_uninit(ctx->cbc, &au);
105
106     av_packet_move_ref(out, in);
107     av_packet_free(&in);
108
109     return 0;
110 }
111
112 static const enum AVCodecID trace_headers_codec_ids[] = {
113     AV_CODEC_ID_H264,
114     AV_CODEC_ID_HEVC,
115     AV_CODEC_ID_MPEG2VIDEO,
116     AV_CODEC_ID_NONE,
117 };
118
119 const AVBitStreamFilter ff_trace_headers_bsf = {
120     .name           = "trace_headers",
121     .priv_data_size = sizeof(TraceHeadersContext),
122     .init           = &trace_headers_init,
123     .close          = &trace_headers_close,
124     .filter         = &trace_headers,
125     .codec_ids      = trace_headers_codec_ids,
126 };