58 fprintf(stderr,
"Unable to decode this file using VA-API.\n");
69 fprintf(stderr,
"Cannot open input file '%s', Error code: %s\n",
75 fprintf(stderr,
"Cannot find input stream information. Error code: %s\n",
82 fprintf(stderr,
"Cannot find a video stream in the input file. "
93 fprintf(stderr,
"avcodec_parameters_to_context error. Error code: %s\n",
100 fprintf(stderr,
"A hardware device reference create failed.\n");
106 fprintf(stderr,
"Failed to open codec for decoding. Error code: %s\n",
119 fprintf(stderr,
"Error during encoding. Error code: %s\n",
av_err2str(ret));
132 fprintf(stderr,
"Error during writing data to output file. "
141 ret = ((ret ==
AVERROR(EAGAIN)) ? 0:-1);
152 fprintf(stderr,
"Error during decoding. Error code: %s\n",
av_err2str(ret));
164 }
else if (ret < 0) {
165 fprintf(stderr,
"Error while decoding. Error code: %s\n",
av_err2str(ret));
187 fprintf(stderr,
"Failed to open encode codec. Error code: %s\n",
193 fprintf(stderr,
"Failed to allocate stream for output format.\n");
201 fprintf(stderr,
"Failed to copy the stream parameters. "
208 fprintf(stderr,
"Error while writing stream header. "
217 fprintf(stderr,
"Error during encoding and writing.\n");
232 fprintf(stderr,
"Usage: %s <input file> <encode codec> <output file>\n"
233 "The output format is guessed according to the file extension.\n"
240 fprintf(stderr,
"Failed to create a VAAPI device. Error code: %s\n",
av_err2str(ret));
246 fprintf(stderr,
"Failed to allocate decode packet\n");
254 fprintf(stderr,
"Could not find encoder '%s'\n", argv[2]);
260 fprintf(stderr,
"Failed to deduce output format from file extension. Error code: "
272 fprintf(stderr,
"Cannot open output file. "
283 ret =
dec_enc(dec_pkt, enc_codec);
290 ret =
dec_enc(dec_pkt, enc_codec);
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 avcodec_parameters_from_context(AVCodecParameters *par, const AVCodecContext *codec)
Fill the parameters struct based on the values from the supplied codec context.
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_to_context(AVCodecContext *codec, const AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
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.
int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Return decoded output data from a decoder.
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 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 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.
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.
#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.
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
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.
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_VAAPI
Hardware acceleration through VA-API, data[3] contains a VASurfaceID.
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.
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...
AVIOContext * pb
I/O context.
AVStream ** streams
A list of all streams in the file.
This structure describes decoded (raw) audio or video data.
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 AVBufferRef * hw_device_ctx
static enum AVPixelFormat get_vaapi_format(AVCodecContext *ctx, const enum AVPixelFormat *pix_fmts)
static AVFormatContext * ifmt_ctx
static AVFormatContext * ofmt_ctx
int main(int argc, char **argv)
static AVCodecContext * encoder_ctx
static int encode_write(AVPacket *enc_pkt, AVFrame *frame)
static AVCodecContext * decoder_ctx
static int open_input_file(const char *filename)
static int dec_enc(AVPacket *pkt, const AVCodec *enc_codec)