FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
hw_decode.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Jun Zhao
3  * Copyright (c) 2017 Kaixuan Liu
4  *
5  * HW Acceleration API (video decoding) decode sample
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 /**
25  * @file
26  * HW-Accelerated decoding example.
27  *
28  * @example hw_decode.c
29  * This example shows how to do HW-accelerated decoding with output
30  * frames from the HW video surfaces.
31  */
32 
33 #include <stdio.h>
34 
35 #include <libavcodec/avcodec.h>
36 #include <libavformat/avformat.h>
37 #include <libavutil/pixdesc.h>
38 #include <libavutil/hwcontext.h>
39 #include <libavutil/opt.h>
40 #include <libavutil/avassert.h>
41 #include <libavutil/imgutils.h>
42 
45 static FILE *output_file = NULL;
46 
48 {
49  int err = 0;
50 
51  if ((err = av_hwdevice_ctx_create(&hw_device_ctx, type,
52  NULL, NULL, 0)) < 0) {
53  fprintf(stderr, "Failed to create specified HW device.\n");
54  return err;
55  }
56  ctx->hw_device_ctx = av_buffer_ref(hw_device_ctx);
57 
58  return err;
59 }
60 
62  const enum AVPixelFormat *pix_fmts)
63 {
64  const enum AVPixelFormat *p;
65 
66  for (p = pix_fmts; *p != -1; p++) {
67  if (*p == hw_pix_fmt)
68  return *p;
69  }
70 
71  fprintf(stderr, "Failed to get HW surface format.\n");
72  return AV_PIX_FMT_NONE;
73 }
74 
75 static int decode_write(AVCodecContext *avctx, AVPacket *packet)
76 {
77  AVFrame *frame = NULL, *sw_frame = NULL;
78  AVFrame *tmp_frame = NULL;
79  uint8_t *buffer = NULL;
80  int size;
81  int ret = 0;
82 
83  ret = avcodec_send_packet(avctx, packet);
84  if (ret < 0) {
85  fprintf(stderr, "Error during decoding\n");
86  return ret;
87  }
88 
89  while (1) {
90  if (!(frame = av_frame_alloc()) || !(sw_frame = av_frame_alloc())) {
91  fprintf(stderr, "Can not alloc frame\n");
92  ret = AVERROR(ENOMEM);
93  goto fail;
94  }
95 
96  ret = avcodec_receive_frame(avctx, frame);
97  if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
98  av_frame_free(&frame);
99  av_frame_free(&sw_frame);
100  return 0;
101  } else if (ret < 0) {
102  fprintf(stderr, "Error while decoding\n");
103  goto fail;
104  }
105 
106  if (frame->format == hw_pix_fmt) {
107  /* retrieve data from GPU to CPU */
108  if ((ret = av_hwframe_transfer_data(sw_frame, frame, 0)) < 0) {
109  fprintf(stderr, "Error transferring the data to system memory\n");
110  goto fail;
111  }
112  tmp_frame = sw_frame;
113  } else
114  tmp_frame = frame;
115 
116  size = av_image_get_buffer_size(tmp_frame->format, tmp_frame->width,
117  tmp_frame->height, 1);
118  buffer = av_malloc(size);
119  if (!buffer) {
120  fprintf(stderr, "Can not alloc buffer\n");
121  ret = AVERROR(ENOMEM);
122  goto fail;
123  }
124  ret = av_image_copy_to_buffer(buffer, size,
125  (const uint8_t * const *)tmp_frame->data,
126  (const int *)tmp_frame->linesize, tmp_frame->format,
127  tmp_frame->width, tmp_frame->height, 1);
128  if (ret < 0) {
129  fprintf(stderr, "Can not copy image to buffer\n");
130  goto fail;
131  }
132 
133  if ((ret = fwrite(buffer, 1, size, output_file)) < 0) {
134  fprintf(stderr, "Failed to dump raw data.\n");
135  goto fail;
136  }
137 
138  fail:
139  av_frame_free(&frame);
140  av_frame_free(&sw_frame);
141  av_freep(&buffer);
142  if (ret < 0)
143  return ret;
144  }
145 }
146 
147 int main(int argc, char *argv[])
148 {
149  AVFormatContext *input_ctx = NULL;
150  int video_stream, ret;
151  AVStream *video = NULL;
153  AVCodec *decoder = NULL;
154  AVPacket packet;
155  enum AVHWDeviceType type;
156  int i;
157 
158  if (argc < 4) {
159  fprintf(stderr, "Usage: %s <device type> <input file> <output file>\n", argv[0]);
160  return -1;
161  }
162 
163  type = av_hwdevice_find_type_by_name(argv[1]);
164  if (type == AV_HWDEVICE_TYPE_NONE) {
165  fprintf(stderr, "Device type %s is not supported.\n", argv[1]);
166  fprintf(stderr, "Available device types:");
167  while((type = av_hwdevice_iterate_types(type)) != AV_HWDEVICE_TYPE_NONE)
168  fprintf(stderr, " %s", av_hwdevice_get_type_name(type));
169  fprintf(stderr, "\n");
170  return -1;
171  }
172 
173  /* open the input file */
174  if (avformat_open_input(&input_ctx, argv[2], NULL, NULL) != 0) {
175  fprintf(stderr, "Cannot open input file '%s'\n", argv[2]);
176  return -1;
177  }
178 
179  if (avformat_find_stream_info(input_ctx, NULL) < 0) {
180  fprintf(stderr, "Cannot find input stream information.\n");
181  return -1;
182  }
183 
184  /* find the video stream information */
185  ret = av_find_best_stream(input_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, &decoder, 0);
186  if (ret < 0) {
187  fprintf(stderr, "Cannot find a video stream in the input file\n");
188  return -1;
189  }
190  video_stream = ret;
191 
192  for (i = 0;; i++) {
193  const AVCodecHWConfig *config = avcodec_get_hw_config(decoder, i);
194  if (!config) {
195  fprintf(stderr, "Decoder %s does not support device type %s.\n",
196  decoder->name, av_hwdevice_get_type_name(type));
197  return -1;
198  }
200  config->device_type == type) {
201  hw_pix_fmt = config->pix_fmt;
202  break;
203  }
204  }
205 
206  if (!(decoder_ctx = avcodec_alloc_context3(decoder)))
207  return AVERROR(ENOMEM);
208 
209  video = input_ctx->streams[video_stream];
210  if (avcodec_parameters_to_context(decoder_ctx, video->codecpar) < 0)
211  return -1;
212 
213  decoder_ctx->get_format = get_hw_format;
214  av_opt_set_int(decoder_ctx, "refcounted_frames", 1, 0);
215 
216  if (hw_decoder_init(decoder_ctx, type) < 0)
217  return -1;
218 
219  if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) < 0) {
220  fprintf(stderr, "Failed to open codec for stream #%u\n", video_stream);
221  return -1;
222  }
223 
224  /* open the file to dump raw data */
225  output_file = fopen(argv[3], "w+");
226 
227  /* actual decoding and dump the raw data */
228  while (ret >= 0) {
229  if ((ret = av_read_frame(input_ctx, &packet)) < 0)
230  break;
231 
232  if (video_stream == packet.stream_index)
233  ret = decode_write(decoder_ctx, &packet);
234 
235  av_packet_unref(&packet);
236  }
237 
238  /* flush the decoder */
239  packet.data = NULL;
240  packet.size = 0;
241  ret = decode_write(decoder_ctx, &packet);
242  av_packet_unref(&packet);
243 
244  if (output_file)
245  fclose(output_file);
246  avcodec_free_context(&decoder_ctx);
247  avformat_close_input(&input_ctx);
248  av_buffer_unref(&hw_device_ctx);
249 
250  return 0;
251 }
#define NULL
Definition: coverity.c:32
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:125
This structure describes decoded (raw) audio or video data.
Definition: frame.h:218
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.
Definition: imgutils.c:453
static enum AVPixelFormat get_hw_format(AVCodecContext *ctx, const enum AVPixelFormat *pix_fmts)
Definition: hw_decode.c:61
misc image utilities
enum AVHWDeviceType av_hwdevice_find_type_by_name(const char *name)
Look up an AVHWDeviceType by name.
Definition: hwcontext.c:78
static AVCodecContext * decoder_ctx
int size
Definition: avcodec.h:1431
static AVStream * video_stream
AVCodec.
Definition: avcodec.h:3408
Format I/O context.
Definition: avformat.h:1342
uint8_t
#define av_malloc(s)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:189
AVOptions.
enum AVPixelFormat pix_fmt
A hardware pixel format which the codec can use.
Definition: avcodec.h:3386
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1410
int avcodec_parameters_to_context(AVCodecContext *codec, const AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
Definition: utils.c:2078
static AVFrame * frame
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:571
uint8_t * data
Definition: avcodec.h:1430
#define AVERROR_EOF
End of file.
Definition: error.h:55
ptrdiff_t size
Definition: opengl_enc.c:101
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.
Definition: utils.c:4178
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...
Definition: imgutils.c:431
int width
Definition: frame.h:276
static AVBufferRef * hw_device_ctx
Definition: hw_decode.c:43
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:202
int methods
Bit set of AV_CODEC_HW_CONFIG_METHOD_* flags, describing the possible setup methods which can be used...
Definition: avcodec.h:3391
int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Return decoded output data from a decoder.
Definition: decode.c:709
int main(int argc, char *argv[])
Definition: hw_decode.c:147
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:558
simple assert() macros that are a bit more flexible than ISO C assert().
const char * name
Name of the codec implementation.
Definition: avcodec.h:3415
#define fail()
Definition: checkasm.h:116
int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags)
Copy data to or from a hw surface.
Definition: hwcontext.c:439
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition: options.c:156
static const chunk_decoder decoder[8]
Definition: dfa.c:330
AVFormatContext * ctx
Definition: movenc.c:48
Stream structure.
Definition: avformat.h:873
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:291
static FILE * output_file
Definition: hw_decode.c:45
int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
Definition: decode.c:642
Libavcodec external API header.
static int hw_decoder_init(AVCodecContext *ctx, const enum AVHWDeviceType type)
Definition: hw_decode.c:47
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:171
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:249
const AVCodecHWConfig * avcodec_get_hw_config(const AVCodec *codec, int index)
Retrieve supported hardware configurations for a codec.
Definition: utils.c:1747
main external API structure.
Definition: avcodec.h:1518
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:592
static int decode_write(AVCodecContext *avctx, AVPacket *packet)
Definition: hw_decode.c:75
GLint GLenum type
Definition: opengl_enc.c:105
enum AVPixelFormat(* get_format)(struct AVCodecContext *s, const enum AVPixelFormat *fmt)
callback to negotiate the pixelFormat
Definition: avcodec.h:1769
const char * av_hwdevice_get_type_name(enum AVHWDeviceType type)
Get the string name of an AVHWDeviceType.
Definition: hwcontext.c:88
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition: utils.c:538
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition: utils.c:1767
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:266
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:232
A reference to a data buffer.
Definition: buffer.h:81
Main libavformat public API header.
static enum AVPixelFormat hw_pix_fmt
Definition: hw_decode.c:44
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
Definition: utils.c:3559
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:93
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: utils.c:4422
enum AVHWDeviceType av_hwdevice_iterate_types(enum AVHWDeviceType prev)
Iterate over supported device types.
Definition: hwcontext.c:97
AVHWDeviceType
Definition: hwcontext.h:27
int avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition: utils.c:537
int height
Definition: frame.h:276
#define av_freep(p)
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1020
enum AVHWDeviceType device_type
The device type associated with the configuration.
Definition: avcodec.h:3398
int stream_index
Definition: avcodec.h:1432
AVBufferRef * hw_device_ctx
A reference to the AVHWDeviceContext describing the device which will be used by a hardware encoder/d...
Definition: avcodec.h:3249
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
The codec supports this format via the hw_device_ctx interface.
Definition: avcodec.h:3354
This structure stores compressed data.
Definition: avcodec.h:1407
GLuint buffer
Definition: opengl_enc.c:102