81 fprintf(stderr,
"Failed to create specified HW device.\n");
94 for (p = pix_fmts; *p != -1; p++) {
99 fprintf(stderr,
"Failed to get HW surface format.\n");
113 fprintf(stderr,
"Error during decoding\n");
119 fprintf(stderr,
"Can not alloc frame\n");
129 }
else if (ret < 0) {
130 fprintf(stderr,
"Error while decoding\n");
137 fprintf(stderr,
"Error transferring the data to system memory\n");
140 tmp_frame = sw_frame;
148 fprintf(stderr,
"Can not alloc buffer\n");
157 fprintf(stderr,
"Can not copy image to buffer\n");
161 if ((ret = fwrite(buffer, 1, size,
output_file)) < 0) {
162 fprintf(stderr,
"Failed to dump raw data.\n");
178 int main(
int argc,
char *argv[])
189 fprintf(stderr,
"Usage: %s <vaapi|vdpau|dxva2|d3d11va> <input file> <output file>\n", argv[0]);
198 fprintf(stderr,
"Cannot support '%s' in this example.\n", argv[1]);
204 fprintf(stderr,
"Cannot open input file '%s'\n", argv[2]);
209 fprintf(stderr,
"Cannot find input stream information.\n");
216 fprintf(stderr,
"Cannot find a video stream in the input file\n");
235 fprintf(stderr,
"Failed to open codec for stream #%u\n", video_stream);
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
This structure describes decoded (raw) audio or video data.
int av_image_copy_to_buffer(uint8_t *dst, int dst_size, const uint8_t *const src_data[4], const int src_linesize[4], enum AVPixelFormat pix_fmt, int width, int height, int align)
Copy image data from an image into a buffer.
static enum AVPixelFormat get_hw_format(AVCodecContext *ctx, const enum AVPixelFormat *pix_fmts)
enum AVHWDeviceType av_hwdevice_find_type_by_name(const char *name)
Look up an AVHWDeviceType by name.
hardware decoding through Videotoolbox
static AVStream * video_stream
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
AVStream ** streams
A list of all streams in the file.
int avcodec_parameters_to_context(AVCodecContext *codec, const AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
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.
#define AVERROR_EOF
End of file.
int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type, int wanted_stream_nb, int related_stream, AVCodec **decoder_ret, int flags)
Find the "best" stream in the file.
int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align)
Return the size in bytes of the amount of data required to store an image with the given parameters...
static AVBufferRef * hw_device_ctx
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Return decoded output data from a decoder.
int main(int argc, char *argv[])
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
simple assert() macros that are a bit more flexible than ISO C assert().
int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags)
Copy data to or from a hw surface.
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
static const chunk_decoder decoder[8]
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
static FILE * output_file
int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
Libavcodec external API header.
static int hw_decoder_init(AVCodecContext *ctx, const enum AVHWDeviceType type)
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer...
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
main external API structure.
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
static int decode_write(AVCodecContext *avctx, AVPacket *packet)
static enum AVPixelFormat find_fmt_by_hw_type(const enum AVHWDeviceType type)
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
callback to negotiate the pixelFormat
HW acceleration through VDPAU, Picture.data[3] contains a VdpVideoSurface.
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
HW decoding through DXVA2, Picture.data[3] contains a LPDIRECT3DSURFACE9 pointer. ...
static enum AVPixelFormat pix_fmts[]
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Hardware surfaces for Direct3D11.
A reference to a data buffer.
static enum AVPixelFormat hw_pix_fmt
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
int avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
AVCodecParameters * codecpar
AVBufferRef * hw_device_ctx
A reference to the AVHWDeviceContext describing the device which will be used by a hardware encoder/d...
AVPixelFormat
Pixel format.
This structure stores compressed data.
void av_register_all(void)
Initialize libavformat and register all the muxers, demuxers and protocols.