FFmpeg
qsv_transcode.c
Go to the documentation of this file.
1 /*
2  * Permission is hereby granted, free of charge, to any person obtaining a copy
3  * of this software and associated documentation files (the "Software"), to deal
4  * in the Software without restriction, including without limitation the rights
5  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6  * copies of the Software, and to permit persons to whom the Software is
7  * furnished to do so, subject to the following conditions:
8  *
9  * The above copyright notice and this permission notice shall be included in
10  * all copies or substantial portions of the Software.
11  *
12  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
15  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
18  * THE SOFTWARE.
19  */
20 
21 /**
22  * @file Intel QSV-accelerated video transcoding API usage example
23  * @example qsv_transcode.c
24  *
25  * Perform QSV-accelerated transcoding and show to dynamically change
26  * encoder's options.
27  *
28  * Usage: qsv_transcode input_stream codec output_stream initial option
29  * { frame_number new_option }
30  * e.g: - qsv_transcode input.mp4 h264_qsv output_h264.mp4 "g 60"
31  * - qsv_transcode input.mp4 hevc_qsv output_hevc.mp4 "g 60 async_depth 1"
32  * 100 "g 120"
33  * (initialize codec with gop_size 60 and change it to 120 after 100
34  * frames)
35  */
36 
37 #include <stdio.h>
38 #include <errno.h>
39 
40 #include <libavutil/hwcontext.h>
41 #include <libavutil/mem.h>
42 #include <libavcodec/avcodec.h>
43 #include <libavformat/avformat.h>
44 #include <libavutil/opt.h>
45 
49 static int video_stream = -1;
50 
51 typedef struct DynamicSetting {
53  char* optstr;
56 static int setting_number;
58 
59 static int str_to_dict(char* optstr, AVDictionary **opt)
60 {
61  char *key, *value;
62  if (strlen(optstr) == 0)
63  return 0;
64  key = strtok(optstr, " ");
65  if (key == NULL)
66  return AVERROR(EINVAL);
67  value = strtok(NULL, " ");
68  if (value == NULL)
69  return AVERROR(EINVAL);
70  av_dict_set(opt, key, value, 0);
71  do {
72  key = strtok(NULL, " ");
73  if (key == NULL)
74  return 0;
75  value = strtok(NULL, " ");
76  if (value == NULL)
77  return AVERROR(EINVAL);
78  av_dict_set(opt, key, value, 0);
79  } while(key != NULL);
80  return 0;
81 }
82 
84 {
86  int ret = 0;
87  static int frame_number = 0;
88  frame_number++;
90  frame_number == dynamic_setting[current_setting_number].frame_number) {
93  if (ret < 0) {
94  fprintf(stderr, "The dynamic parameter is wrong\n");
95  goto fail;
96  }
97  /* Set common option. The dictionary will be freed and replaced
98  * by a new one containing all options not found in common option list.
99  * Then this new dictionary is used to set private option. */
100  if ((ret = av_opt_set_dict(avctx, &opts)) < 0)
101  goto fail;
102  /* Set codec specific option */
103  if ((ret = av_opt_set_dict(avctx->priv_data, &opts)) < 0)
104  goto fail;
105  /* There is no "framerate" option in commom option list. Use "-r" to set
106  * framerate, which is compatible with ffmpeg commandline. The video is
107  * assumed to be average frame rate, so set time_base to 1/framerate. */
108  e = av_dict_get(opts, "r", NULL, 0);
109  if (e) {
110  avctx->framerate = av_d2q(atof(e->value), INT_MAX);
112  }
113  }
114 fail:
115  av_dict_free(&opts);
116  return ret;
117 }
118 
119 static int get_format(AVCodecContext *avctx, const enum AVPixelFormat *pix_fmts)
120 {
121  while (*pix_fmts != AV_PIX_FMT_NONE) {
122  if (*pix_fmts == AV_PIX_FMT_QSV) {
123  return AV_PIX_FMT_QSV;
124  }
125 
126  pix_fmts++;
127  }
128 
129  fprintf(stderr, "The QSV pixel format not offered in get_format()\n");
130 
131  return AV_PIX_FMT_NONE;
132 }
133 
134 static int open_input_file(char *filename)
135 {
136  int ret;
137  const AVCodec *decoder = NULL;
138  AVStream *video = NULL;
139 
140  if ((ret = avformat_open_input(&ifmt_ctx, filename, NULL, NULL)) < 0) {
141  fprintf(stderr, "Cannot open input file '%s', Error code: %s\n",
142  filename, av_err2str(ret));
143  return ret;
144  }
145 
146  if ((ret = avformat_find_stream_info(ifmt_ctx, NULL)) < 0) {
147  fprintf(stderr, "Cannot find input stream information. Error code: %s\n",
148  av_err2str(ret));
149  return ret;
150  }
151 
153  if (ret < 0) {
154  fprintf(stderr, "Cannot find a video stream in the input file. "
155  "Error code: %s\n", av_err2str(ret));
156  return ret;
157  }
158  video_stream = ret;
160 
161  switch(video->codecpar->codec_id) {
162  case AV_CODEC_ID_H264:
164  break;
165  case AV_CODEC_ID_HEVC:
167  break;
168  case AV_CODEC_ID_VP9:
170  break;
171  case AV_CODEC_ID_VP8:
173  break;
174  case AV_CODEC_ID_AV1:
176  break;
178  decoder = avcodec_find_decoder_by_name("mpeg2_qsv");
179  break;
180  case AV_CODEC_ID_MJPEG:
181  decoder = avcodec_find_decoder_by_name("mjpeg_qsv");
182  break;
183  default:
184  fprintf(stderr, "Codec is not supportted by qsv\n");
185  return AVERROR(EINVAL);
186  }
187 
189  return AVERROR(ENOMEM);
190 
191  if ((ret = avcodec_parameters_to_context(decoder_ctx, video->codecpar)) < 0) {
192  fprintf(stderr, "avcodec_parameters_to_context error. Error code: %s\n",
193  av_err2str(ret));
194  return ret;
195  }
197 
199  if (!decoder_ctx->hw_device_ctx) {
200  fprintf(stderr, "A hardware device reference create failed.\n");
201  return AVERROR(ENOMEM);
202  }
204  decoder_ctx->pkt_timebase = video->time_base;
205  if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) < 0)
206  fprintf(stderr, "Failed to open codec for decoding. Error code: %s\n",
207  av_err2str(ret));
208 
209  return ret;
210 }
211 
212 static int encode_write(AVPacket *enc_pkt, AVFrame *frame)
213 {
214  int ret = 0;
215 
216  av_packet_unref(enc_pkt);
217 
218  if((ret = dynamic_set_parameter(encoder_ctx)) < 0) {
219  fprintf(stderr, "Failed to set dynamic parameter. Error code: %s\n",
220  av_err2str(ret));
221  goto end;
222  }
223 
224  if ((ret = avcodec_send_frame(encoder_ctx, frame)) < 0) {
225  fprintf(stderr, "Error during encoding. Error code: %s\n", av_err2str(ret));
226  goto end;
227  }
228  while (1) {
229  if (ret = avcodec_receive_packet(encoder_ctx, enc_pkt))
230  break;
231  enc_pkt->stream_index = 0;
233  ofmt_ctx->streams[0]->time_base);
234  if ((ret = av_interleaved_write_frame(ofmt_ctx, enc_pkt)) < 0) {
235  fprintf(stderr, "Error during writing data to output file. "
236  "Error code: %s\n", av_err2str(ret));
237  return ret;
238  }
239  }
240 
241 end:
242  if (ret == AVERROR_EOF)
243  return 0;
244  ret = ((ret == AVERROR(EAGAIN)) ? 0:-1);
245  return ret;
246 }
247 
248 static int dec_enc(AVPacket *pkt, const AVCodec *enc_codec, char *optstr)
249 {
250  AVFrame *frame;
251  int ret = 0;
252 
254  if (ret < 0) {
255  fprintf(stderr, "Error during decoding. Error code: %s\n", av_err2str(ret));
256  return ret;
257  }
258 
259  while (ret >= 0) {
260  if (!(frame = av_frame_alloc()))
261  return AVERROR(ENOMEM);
262 
264  if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
266  return 0;
267  } else if (ret < 0) {
268  fprintf(stderr, "Error while decoding. Error code: %s\n", av_err2str(ret));
269  goto fail;
270  }
271  if (!encoder_ctx->hw_frames_ctx) {
272  AVDictionaryEntry *e = NULL;
274  AVStream *ost;
275  /* we need to ref hw_frames_ctx of decoder to initialize encoder's codec.
276  Only after we get a decoded frame, can we obtain its hw_frames_ctx */
278  if (!encoder_ctx->hw_frames_ctx) {
279  ret = AVERROR(ENOMEM);
280  goto fail;
281  }
282  /* set AVCodecContext Parameters for encoder, here we keep them stay
283  * the same as decoder.
284  */
289  if ((ret = str_to_dict(optstr, &opts)) < 0) {
290  fprintf(stderr, "Failed to set encoding parameter.\n");
291  goto fail;
292  }
293  /* There is no "framerate" option in commom option list. Use "-r" to
294  * set framerate, which is compatible with ffmpeg commandline. The
295  * video is assumed to be average frame rate, so set time_base to
296  * 1/framerate. */
297  e = av_dict_get(opts, "r", NULL, 0);
298  if (e) {
299  encoder_ctx->framerate = av_d2q(atof(e->value), INT_MAX);
301  }
302  if ((ret = avcodec_open2(encoder_ctx, enc_codec, &opts)) < 0) {
303  fprintf(stderr, "Failed to open encode codec. Error code: %s\n",
304  av_err2str(ret));
305  av_dict_free(&opts);
306  goto fail;
307  }
308  av_dict_free(&opts);
309 
310  if (!(ost = avformat_new_stream(ofmt_ctx, enc_codec))) {
311  fprintf(stderr, "Failed to allocate stream for output format.\n");
312  ret = AVERROR(ENOMEM);
313  goto fail;
314  }
315 
318  if (ret < 0) {
319  fprintf(stderr, "Failed to copy the stream parameters. "
320  "Error code: %s\n", av_err2str(ret));
321  goto fail;
322  }
323 
324  /* write the stream header */
325  if ((ret = avformat_write_header(ofmt_ctx, NULL)) < 0) {
326  fprintf(stderr, "Error while writing stream header. "
327  "Error code: %s\n", av_err2str(ret));
328  goto fail;
329  }
330  }
333  if ((ret = encode_write(pkt, frame)) < 0)
334  fprintf(stderr, "Error during encoding and writing.\n");
335 
336 fail:
338  if (ret < 0)
339  return ret;
340  }
341  return 0;
342 }
343 
344 int main(int argc, char **argv)
345 {
346  const AVCodec *enc_codec;
347  int ret = 0;
348  AVPacket *dec_pkt;
349 
350  if (argc < 5 || (argc - 5) % 2) {
351  av_log(NULL, AV_LOG_ERROR, "Usage: %s <input file> <encoder> <output file>"
352  " <\"encoding option set 0\"> [<frame_number> <\"encoding options set 1\">]...\n", argv[0]);
353  return 1;
354  }
355  setting_number = (argc - 5) / 2;
358  for (int i = 0; i < setting_number; i++) {
359  dynamic_setting[i].frame_number = atoi(argv[i*2 + 5]);
360  dynamic_setting[i].optstr = argv[i*2 + 6];
361  }
362 
364  if (ret < 0) {
365  fprintf(stderr, "Failed to create a QSV device. Error code: %s\n", av_err2str(ret));
366  goto end;
367  }
368 
369  dec_pkt = av_packet_alloc();
370  if (!dec_pkt) {
371  fprintf(stderr, "Failed to allocate decode packet\n");
372  goto end;
373  }
374 
375  if ((ret = open_input_file(argv[1])) < 0)
376  goto end;
377 
378  if (!(enc_codec = avcodec_find_encoder_by_name(argv[2]))) {
379  fprintf(stderr, "Could not find encoder '%s'\n", argv[2]);
380  ret = -1;
381  goto end;
382  }
383 
384  if ((ret = (avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, argv[3]))) < 0) {
385  fprintf(stderr, "Failed to deduce output format from file extension. Error code: "
386  "%s\n", av_err2str(ret));
387  goto end;
388  }
389 
390  if (!(encoder_ctx = avcodec_alloc_context3(enc_codec))) {
391  ret = AVERROR(ENOMEM);
392  goto end;
393  }
394 
395  ret = avio_open(&ofmt_ctx->pb, argv[3], AVIO_FLAG_WRITE);
396  if (ret < 0) {
397  fprintf(stderr, "Cannot open output file. "
398  "Error code: %s\n", av_err2str(ret));
399  goto end;
400  }
401 
402  /* read all packets and only transcoding video */
403  while (ret >= 0) {
404  if ((ret = av_read_frame(ifmt_ctx, dec_pkt)) < 0)
405  break;
406 
407  if (video_stream == dec_pkt->stream_index)
408  ret = dec_enc(dec_pkt, enc_codec, argv[4]);
409 
410  av_packet_unref(dec_pkt);
411  }
412 
413  /* flush decoder */
414  av_packet_unref(dec_pkt);
415  if ((ret = dec_enc(dec_pkt, enc_codec, argv[4])) < 0) {
416  fprintf(stderr, "Failed to flush decoder %s\n", av_err2str(ret));
417  goto end;
418  }
419 
420  /* flush encoder */
421  if ((ret = encode_write(dec_pkt, NULL)) < 0) {
422  fprintf(stderr, "Failed to flush encoder %s\n", av_err2str(ret));
423  goto end;
424  }
425 
426  /* write the trailer for output stream */
427  if ((ret = av_write_trailer(ofmt_ctx)) < 0)
428  fprintf(stderr, "Failed to write trailer %s\n", av_err2str(ret));
429 
430 end:
436  av_packet_free(&dec_pkt);
438  return ret;
439 }
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: packet.c:427
AVCodec
AVCodec.
Definition: codec.h:187
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
avcodec_receive_packet
int avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
Read encoded data from the encoder.
Definition: encode.c:541
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
AVCodecContext::get_format
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
Callback to negotiate the pixel format.
Definition: avcodec.h:787
av_find_best_stream
int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type, int wanted_stream_nb, int related_stream, const AVCodec **decoder_ret, int flags)
Definition: avformat.c:443
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
get_format
static int get_format(AVCodecContext *avctx, const enum AVPixelFormat *pix_fmts)
Definition: qsv_transcode.c:119
DynamicSetting::optstr
char * optstr
Definition: qsv_transcode.c:53
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:160
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:374
AVFormatContext::streams
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1323
avio_open
int avio_open(AVIOContext **s, const char *filename, int flags)
Create and initialize a AVIOContext for accessing the resource indicated by url.
Definition: avio.c:497
AVDictionary
Definition: dict.c:34
av_buffer_ref
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:103
av_read_frame
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition: demux.c:1526
ost
static AVStream * ost
Definition: vaapi_transcode.c:42
av_packet_free
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition: packet.c:74
DynamicSetting
Definition: qsv_transcode.c:51
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:30
setting_number
static int setting_number
Definition: qsv_transcode.c:56
AVCodecContext::framerate
AVRational framerate
Definition: avcodec.h:560
avformat_close_input
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: demux.c:363
dec_enc
static int dec_enc(AVPacket *pkt, const AVCodec *enc_codec, char *optstr)
Definition: qsv_transcode.c:248
decoder
static const chunk_decoder decoder[8]
Definition: dfa.c:331
fail
#define fail()
Definition: checkasm.h:179
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:148
pkt
AVPacket * pkt
Definition: movenc.c:60
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
avformat_open_input
int avformat_open_input(AVFormatContext **ps, const char *url, const AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition: demux.c:215
av_dict_get
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:62
ofmt_ctx
static AVFormatContext * ofmt_ctx
Definition: qsv_transcode.c:46
avcodec_alloc_context3
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition: options.c:149
AV_CODEC_ID_VP9
@ AV_CODEC_ID_VP9
Definition: codec_id.h:220
avcodec_receive_frame
int attribute_align_arg avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Return decoded output data from a decoder or encoder (when the AV_CODEC_FLAG_RECON_FRAME flag is used...
Definition: avcodec.c:695
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:304
AVIO_FLAG_WRITE
#define AVIO_FLAG_WRITE
write-only
Definition: avio.h:618
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
key
const char * key
Definition: hwcontext_opencl.c:189
AV_CODEC_ID_H264
@ AV_CODEC_ID_H264
Definition: codec_id.h:79
avformat_write_header
av_warn_unused_result int avformat_write_header(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and write the stream header to an output media file.
Definition: mux.c:487
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
opts
AVDictionary * opts
Definition: movenc.c:51
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:766
avcodec_parameters_to_context
int avcodec_parameters_to_context(AVCodecContext *codec, const struct AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
dynamic_set_parameter
static int dynamic_set_parameter(AVCodecContext *avctx)
Definition: qsv_transcode.c:83
AVStream::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:782
NULL
#define NULL
Definition: coverity.c:32
avcodec_find_decoder_by_name
const AVCodec * avcodec_find_decoder_by_name(const char *name)
Find a registered decoder with the specified name.
Definition: allcodecs.c:1001
av_buffer_unref
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
Definition: buffer.c:139
AV_CODEC_ID_AV1
@ AV_CODEC_ID_AV1
Definition: codec_id.h:280
avcodec_free_context
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer.
Definition: options.c:164
AVFormatContext::pb
AVIOContext * pb
I/O context.
Definition: avformat.h:1297
avcodec_open2
int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition: avcodec.c:142
open_input_file
static int open_input_file(char *filename)
Definition: qsv_transcode.c:134
AV_PIX_FMT_QSV
@ AV_PIX_FMT_QSV
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
Definition: pixfmt.h:247
dynamic_setting
static DynamicSetting * dynamic_setting
Definition: qsv_transcode.c:55
AVCodecContext::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avcodec.h:544
current_setting_number
static int current_setting_number
Definition: qsv_transcode.c:57
avformat_find_stream_info
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
Definition: demux.c:2503
main
int main(int argc, char **argv)
Definition: qsv_transcode.c:344
ifmt_ctx
static AVFormatContext * ifmt_ctx
Definition: qsv_transcode.c:46
av_err2str
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: error.h:121
AVCodecContext::pkt_timebase
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
Definition: avcodec.h:551
av_packet_alloc
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition: packet.c:63
av_dict_free
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition: dict.c:223
encode_write
static int encode_write(AVPacket *enc_pkt, AVFrame *frame)
Definition: qsv_transcode.c:212
av_packet_rescale_ts
void av_packet_rescale_ts(AVPacket *pkt, AVRational src_tb, AVRational dst_tb)
Convert valid timing fields (timestamps / durations) in a packet from one timebase to another.
Definition: packet.c:531
AV_CODEC_ID_MJPEG
@ AV_CODEC_ID_MJPEG
Definition: codec_id.h:59
avcodec_send_packet
int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
Definition: decode.c:675
av_write_trailer
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
Definition: mux.c:1295
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
video_stream
static int video_stream
Definition: qsv_transcode.c:49
encoder_ctx
static AVCodecContext * encoder_ctx
Definition: qsv_transcode.c:48
AV_CODEC_ID_HEVC
@ AV_CODEC_ID_HEVC
Definition: codec_id.h:226
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
av_d2q
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition: rational.c:106
av_inv_q
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
AVCodecContext::hw_device_ctx
AVBufferRef * hw_device_ctx
A reference to the AVHWDeviceContext describing the device which will be used by a hardware encoder/d...
Definition: avcodec.h:1497
AVCodecContext::height
int height
Definition: avcodec.h:618
avcodec_send_frame
int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Supply a raw video or audio frame to the encoder.
Definition: encode.c:508
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:657
AVCodecContext::hw_frames_ctx
AVBufferRef * hw_frames_ctx
A reference to the AVHWFramesContext describing the input (for encoding) or output (decoding) frames.
Definition: avcodec.h:1475
avcodec.h
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:743
av_guess_frame_rate
AVRational av_guess_frame_rate(AVFormatContext *format, AVStream *st, AVFrame *frame)
Guess the frame rate, based on both the container and codec information.
Definition: avformat.c:750
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
av_hwdevice_ctx_create
int av_hwdevice_ctx_create(AVBufferRef **pdevice_ref, enum AVHWDeviceType type, const char *device, AVDictionary *opts, int flags)
Open a device of the specified type and create an AVHWDeviceContext for it.
Definition: hwcontext.c:600
avformat.h
AV_HWDEVICE_TYPE_QSV
@ AV_HWDEVICE_TYPE_QSV
Definition: hwcontext.h:33
AVCodecContext
main external API structure.
Definition: avcodec.h:445
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
video
A Quick Description Of Rate Distortion Theory We want to encode a video
Definition: rate_distortion.txt:3
AVPacket::stream_index
int stream_index
Definition: packet.h:526
DynamicSetting::frame_number
int frame_number
Definition: qsv_transcode.c:52
str_to_dict
static int str_to_dict(char *optstr, AVDictionary **opt)
Definition: qsv_transcode.c:59
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
mem.h
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
avcodec_parameters_from_context
int avcodec_parameters_from_context(struct AVCodecParameters *par, const AVCodecContext *codec)
Fill the parameters struct based on the values from the supplied codec context.
Definition: codec_par.c:137
AVDictionaryEntry
Definition: dict.h:89
AVPacket
This structure stores compressed data.
Definition: packet.h:501
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:472
av_interleaved_write_frame
int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file ensuring correct interleaving.
Definition: mux.c:1280
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:88
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:618
AV_CODEC_ID_VP8
@ AV_CODEC_ID_VP8
Definition: codec_id.h:192
hwcontext.h
decoder_ctx
static AVCodecContext * decoder_ctx
Definition: qsv_transcode.c:48
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
av_opt_set_dict
int av_opt_set_dict(void *obj, AVDictionary **options)
Set all the options from a given dictionary on an object.
Definition: opt.c:1947
AVDictionaryEntry::value
char * value
Definition: dict.h:91
avformat_alloc_output_context2
int avformat_alloc_output_context2(AVFormatContext **ctx, const AVOutputFormat *oformat, const char *format_name, const char *filename)
Allocate an AVFormatContext for an output format.
Definition: mux.c:94
AV_CODEC_ID_MPEG2VIDEO
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
Definition: codec_id.h:54
hw_device_ctx
static AVBufferRef * hw_device_ctx
Definition: qsv_transcode.c:47
avcodec_find_encoder_by_name
const AVCodec * avcodec_find_encoder_by_name(const char *name)
Find a registered encoder with the specified name.
Definition: allcodecs.c:996