62 if (strlen(optstr) == 0)
64 key = strtok(optstr,
" ");
67 value = strtok(NULL,
" ");
72 key = strtok(NULL,
" ");
75 value = strtok(NULL,
" ");
86 static int frame_number = 0;
93 fprintf(stderr,
"The dynamic parameter is wrong\n");
128 fprintf(stderr,
"The QSV pixel format not offered in get_format()\n");
140 fprintf(stderr,
"Cannot open input file '%s', Error code: %s\n",
146 fprintf(stderr,
"Cannot find input stream information. Error code: %s\n",
153 fprintf(stderr,
"Cannot find a video stream in the input file. "
183 fprintf(stderr,
"Codec is not supportted by qsv\n");
191 fprintf(stderr,
"avcodec_parameters_to_context error. Error code: %s\n",
199 fprintf(stderr,
"A hardware device reference create failed.\n");
205 fprintf(stderr,
"Failed to open codec for decoding. Error code: %s\n",
218 fprintf(stderr,
"Failed to set dynamic parameter. Error code: %s\n",
224 fprintf(stderr,
"Error during encoding. Error code: %s\n",
av_err2str(ret));
234 fprintf(stderr,
"Error during writing data to output file. "
243 ret = ((ret ==
AVERROR(EAGAIN)) ? 0:-1);
254 fprintf(stderr,
"Error during decoding. Error code: %s\n",
av_err2str(ret));
266 }
else if (ret < 0) {
267 fprintf(stderr,
"Error while decoding. Error code: %s\n",
av_err2str(ret));
289 fprintf(stderr,
"Failed to set encoding parameter.\n");
302 fprintf(stderr,
"Failed to open encode codec. Error code: %s\n",
310 fprintf(stderr,
"Failed to allocate stream for output format.\n");
318 fprintf(stderr,
"Failed to copy the stream parameters. "
325 fprintf(stderr,
"Error while writing stream header. "
333 fprintf(stderr,
"Error during encoding and writing.\n");
347 if (argc < 5 || (argc - 5) % 2) {
349 " <\"encoding option set 0\"> [<frame_number> <\"encoding options set 1\">]...\n", argv[0]);
362 fprintf(stderr,
"Failed to create a QSV device. Error code: %s\n",
av_err2str(ret));
368 fprintf(stderr,
"Failed to allocate decode packet\n");
376 fprintf(stderr,
"Could not find encoder '%s'\n", argv[2]);
382 fprintf(stderr,
"Failed to deduce output format from file extension. Error code: "
394 fprintf(stderr,
"Cannot open output file. "
405 ret =
dec_enc(dec_pkt, enc_codec, argv[4]);
412 if ((ret =
dec_enc(dec_pkt, enc_codec, argv[4])) < 0) {
413 fprintf(stderr,
"Failed to flush decoder %s\n",
av_err2str(ret));
419 fprintf(stderr,
"Failed to flush encoder %s\n",
av_err2str(ret));
425 fprintf(stderr,
"Failed to write trailer %s\n",
av_err2str(ret));
Libavcodec external API header.
int avio_open(AVIOContext **s, const char *url, int flags)
Create and initialize a AVIOContext for accessing the resource indicated by url.
#define AVIO_FLAG_WRITE
write-only
int main(int argc, char *argv[])
static int open_input_file(const char *filename)
static AVStream * video_stream
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
int avcodec_parameters_from_context(struct AVCodecParameters *par, const AVCodecContext *codec)
Fill the parameters struct based on the values from the supplied codec 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.
const AVCodec * avcodec_find_decoder_by_name(const char *name)
Find a registered decoder with the specified name.
const AVCodec * avcodec_find_encoder_by_name(const char *name)
Find a registered encoder with the specified name.
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer.
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
int 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...
int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
int avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt)
Read encoded data from the encoder.
int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Supply a raw video or audio frame to the encoder.
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
void av_packet_rescale_ts(AVPacket *pkt, AVRational tb_src, AVRational tb_dst)
Convert valid timing fields (timestamps / durations) in a packet from one timebase to another.
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type, int wanted_stream_nb, int related_stream, const struct AVCodec **decoder_ret, int flags)
Find the "best" stream in the file.
int avformat_open_input(AVFormatContext **ps, const char *url, const AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
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.
int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file ensuring correct interleaving.
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
AVRational av_guess_frame_rate(AVFormatContext *ctx, AVStream *stream, struct AVFrame *frame)
Guess the frame rate, based on both the container and codec information.
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
void av_dict_free(AVDictionary **m)
Free all the memory allocated for an AVDictionary struct and all keys and values.
struct AVDictionary AVDictionary
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
#define AVERROR_EOF
End of file.
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void av_log(void *avcl, int level, const char *fmt,...) av_printf_format(3
Send the specified message to the log if the level is less than or equal to the current av_log_level.
AVRational av_d2q(double d, int max) av_const
Convert a double precision floating point number to a rational.
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const
Rescale a 64-bit integer by 2 rational numbers.
void av_freep(void *ptr)
Free a memory block which has been allocated with a function of av_malloc() or av_realloc() family,...
void * av_malloc(size_t size) av_malloc_attrib
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int av_opt_set_dict(void *obj, struct AVDictionary **options)
Set all the options from a given dictionary on an object.
static AVBufferRef * hw_device_ctx
int av_hwdevice_ctx_create(AVBufferRef **device_ctx, enum AVHWDeviceType type, const char *device, AVDictionary *opts, int flags)
Open a device of the specified type and create an AVHWDeviceContext for it.
Memory handling functions.
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_QSV
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
static int get_format(AVCodecContext *avctx, const enum AVPixelFormat *pix_fmts)
static DynamicSetting * dynamic_setting
static int current_setting_number
static int str_to_dict(char *optstr, AVDictionary **opt)
static int dynamic_set_parameter(AVCodecContext *avctx)
static int setting_number
A reference to a data buffer.
main external API structure.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int width
picture width / height.
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
Callback to negotiate the pixel format.
AVBufferRef * hw_frames_ctx
A reference to the AVHWFramesContext describing the input (for encoding) or output (decoding) frames.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
AVBufferRef * hw_device_ctx
A reference to the AVHWDeviceContext describing the device which will be used by a hardware encoder/d...
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
AVIOContext * pb
I/O context.
AVStream ** streams
A list of all streams in the file.
This structure describes decoded (raw) audio or video data.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
This structure stores compressed data.
AVCodecParameters * codecpar
Codec parameters associated with this stream.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
static AVFormatContext * ifmt_ctx
static AVFormatContext * ofmt_ctx
static int encode_write(AVCodecContext *avctx, AVFrame *frame, FILE *fout)
static AVCodecContext * encoder_ctx
static AVCodecContext * decoder_ctx
static int dec_enc(AVPacket *pkt, const AVCodec *enc_codec)