FFmpeg 9.0
Loading...
Searching...
No Matches
qsv_decode.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Anton Khirnov
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 * THE SOFTWARE.
21 */
22
23/**
24 * @file Intel QSV-accelerated H.264 decoding API usage example
25 * @example qsv_decode.c
26 *
27 * Perform QSV-accelerated H.264 decoding with output frames in the
28 * GPU video surfaces, write the decoded frames to an output file.
29 */
30
31#include <stdio.h>
32
34#include <libavformat/avio.h>
35
36#include <libavcodec/avcodec.h>
37
38#include <libavutil/buffer.h>
39#include <libavutil/error.h>
40#include <libavutil/hwcontext.h>
42#include <libavutil/imgutils.h>
43#include <libavutil/mem.h>
44
45static int get_format(AVCodecContext *avctx, const enum AVPixelFormat *pix_fmts)
46{
47 while (*pix_fmts != AV_PIX_FMT_NONE) {
48 if (*pix_fmts == AV_PIX_FMT_QSV) {
49 return AV_PIX_FMT_QSV;
50 }
51
52 pix_fmts++;
53 }
54
55 fprintf(stderr, "The QSV pixel format not offered in get_format()\n");
56
57 return AV_PIX_FMT_NONE;
58}
59
61 AVFrame *frame, AVFrame *sw_frame,
62 AVPacket *pkt, AVIOContext *output_ctx)
63{
64 int ret = 0;
65
67 if (ret < 0) {
68 fprintf(stderr, "Error during decoding\n");
69 return ret;
70 }
71
72 while (ret >= 0) {
73 int i, j;
74
76 if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
77 break;
78 else if (ret < 0) {
79 fprintf(stderr, "Error during decoding\n");
80 return ret;
81 }
82
83 /* A real program would do something useful with the decoded frame here.
84 * We just retrieve the raw data and write it to a file, which is rather
85 * useless but pedagogic. */
86 ret = av_hwframe_transfer_data(sw_frame, frame, 0);
87 if (ret < 0) {
88 fprintf(stderr, "Error transferring the data to system memory\n");
89 goto fail;
90 }
91
92 for (i = 0; i < FF_ARRAY_ELEMS(sw_frame->data) && sw_frame->data[i]; i++) {
93 int h = sw_frame->height >> (i > 0);
94 int linesize = av_image_get_linesize(sw_frame->format, sw_frame->width, i);
95 if (linesize < 0) {
96 ret = linesize;
97 goto fail;
98 }
99 for (j = 0; j < h; j++)
100 avio_write(output_ctx, sw_frame->data[i] + j * sw_frame->linesize[i], linesize);
101 }
102
103fail:
104 av_frame_unref(sw_frame);
106
107 if (ret < 0)
108 return ret;
109 }
110
111 return 0;
112}
113
114int main(int argc, char **argv)
115{
116 AVFormatContext *input_ctx = NULL;
117 AVStream *video_st = NULL;
119 const AVCodec *decoder;
120
121 AVPacket *pkt = NULL;
122 AVFrame *frame = NULL, *sw_frame = NULL;
123
124 AVIOContext *output_ctx = NULL;
125
126 int ret, i;
127
128 AVBufferRef *device_ref = NULL;
129
130 if (argc < 3) {
131 fprintf(stderr, "Usage: %s <input file> <output file>\n", argv[0]);
132 return 1;
133 }
134
135 /* open the input file */
136 ret = avformat_open_input(&input_ctx, argv[1], NULL, NULL);
137 if (ret < 0) {
138 fprintf(stderr, "Cannot open input file '%s': ", argv[1]);
139 goto finish;
140 }
141
142 /* find the first H.264 video stream */
143 for (i = 0; i < input_ctx->nb_streams; i++) {
144 AVStream *st = input_ctx->streams[i];
145
146 if (st->codecpar->codec_id == AV_CODEC_ID_H264 && !video_st)
147 video_st = st;
148 else
150 }
151 if (!video_st) {
152 fprintf(stderr, "No H.264 video stream in the input file\n");
153 goto finish;
154 }
155
156 /* open the hardware device */
158 "auto", NULL, 0);
159 if (ret < 0) {
160 fprintf(stderr, "Cannot open the hardware device\n");
161 goto finish;
162 }
163
164 /* initialize the decoder */
165 decoder = avcodec_find_decoder_by_name("h264_qsv");
166 if (!decoder) {
167 fprintf(stderr, "The QSV decoder is not present in libavcodec\n");
168 goto finish;
169 }
170
172 if (!decoder_ctx) {
173 ret = AVERROR(ENOMEM);
174 goto finish;
175 }
176 decoder_ctx->codec_id = AV_CODEC_ID_H264;
177 if (video_st->codecpar->extradata_size) {
178 decoder_ctx->extradata = av_mallocz(video_st->codecpar->extradata_size +
180 if (!decoder_ctx->extradata) {
181 ret = AVERROR(ENOMEM);
182 goto finish;
183 }
184 memcpy(decoder_ctx->extradata, video_st->codecpar->extradata,
185 video_st->codecpar->extradata_size);
186 decoder_ctx->extradata_size = video_st->codecpar->extradata_size;
187 }
188
189
190 decoder_ctx->hw_device_ctx = av_buffer_ref(device_ref);
191 decoder_ctx->get_format = get_format;
192
193 ret = avcodec_open2(decoder_ctx, NULL, NULL);
194 if (ret < 0) {
195 fprintf(stderr, "Error opening the decoder: ");
196 goto finish;
197 }
198
199 /* open the output stream */
200 ret = avio_open(&output_ctx, argv[2], AVIO_FLAG_WRITE);
201 if (ret < 0) {
202 fprintf(stderr, "Error opening the output context: ");
203 goto finish;
204 }
205
207 sw_frame = av_frame_alloc();
209 if (!frame || !sw_frame || !pkt) {
210 ret = AVERROR(ENOMEM);
211 goto finish;
212 }
213
214 /* actual decoding */
215 while (ret >= 0) {
216 ret = av_read_frame(input_ctx, pkt);
217 if (ret < 0)
218 break;
219
220 if (pkt->stream_index == video_st->index)
221 ret = decode_packet(decoder_ctx, frame, sw_frame, pkt, output_ctx);
222
224 }
225
226 /* flush the decoder */
227 ret = decode_packet(decoder_ctx, frame, sw_frame, NULL, output_ctx);
228
229finish:
230 if (ret < 0)
231 fprintf(stderr, "%s\n", av_err2str(ret));
232
233 avformat_close_input(&input_ctx);
234
236 av_frame_free(&sw_frame);
238
240
241 av_buffer_unref(&device_ref);
242
243 avio_close(output_ctx);
244
245 return ret;
246}
Libavcodec external API header.
Main libavformat public API header.
Buffered I/O operations.
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
Definition avio.h:618
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
int avio_close(AVIOContext *s)
Close the resource accessed by the AVIOContext s and free it.
int main(int argc, char *argv[])
refcounted data buffer API
static AVPacket * pkt
static int decode_packet(AVCodecContext *dec, const AVPacket *pkt)
static AVFrame * frame
error code definitions
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.
const AVCodec * avcodec_find_decoder_by_name(const char *name)
Find a registered decoder 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_H264
Definition codec_id.h:77
int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Alias for avcodec_receive_frame_flags(avctx, frame, 0).
int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
Definition defs.h:40
@ AVDISCARD_ALL
discard all
Definition defs.h:232
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.
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
int avformat_open_input(AVFormatContext **ps, const char *url, const AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
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.
Definition error.h:57
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition error.h:122
#define AVERROR(e)
Definition error.h:45
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
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.
void * av_mallocz(size_t size) av_malloc_attrib
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int av_image_get_linesize(enum AVPixelFormat pix_fmt, int width, int plane)
Compute the size of an image line with format pix_fmt and width width for the plane plane.
int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags)
Copy data to or from a hw surface.
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.
@ AV_HWDEVICE_TYPE_QSV
Definition hwcontext.h:33
An API-specific header for AV_HWDEVICE_TYPE_QSV.
misc image utilities
#define FF_ARRAY_ELEMS(a)
Definition macros.h:53
Memory handling functions.
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_QSV
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
Definition pixfmt.h:247
static int get_format(AVCodecContext *avctx, const enum AVPixelFormat *pix_fmts)
Definition qsv_decode.c:45
A reference to a data buffer.
Definition buffer.h:82
main external API structure.
Definition avcodec.h:443
int extradata_size
Size of the extradata content in bytes.
Definition codec_par.h:75
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
AVCodec.
Definition codec.h:169
Format I/O context.
Definition avformat.h:1314
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition avformat.h:1370
AVStream ** streams
A list of all streams in the file.
Definition avformat.h:1382
This structure describes decoded (raw) audio or video data.
Definition frame.h:466
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:487
int width
Definition frame.h:538
int height
Definition frame.h:538
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:511
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames,...
Definition frame.h:553
Bytestream IO Context.
Definition avio.h:160
This structure stores compressed data.
Definition packet.h:580
Stream structure.
Definition avformat.h:747
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:770
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition avformat.h:818
int index
stream index in AVFormatContext
Definition avformat.h:753
static AVCodecContext * decoder_ctx