FFmpeg
Loading...
Searching...
No Matches
api-h264-test.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Ludmila Glinskih
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 * H264 codec test.
25 */
26
27#include "libavutil/adler32.h"
28#include "libavutil/mem.h"
29#include "libavcodec/avcodec.h"
31#include "libavutil/imgutils.h"
32#include "libavutil/timestamp.h"
33
34static int video_decode_example(const char *input_filename)
35{
36 const AVCodec *codec = NULL;
38 AVCodecParameters *origin_par = NULL;
39 AVFrame *fr = NULL;
40 uint8_t *byte_buffer = NULL;
43 int number_of_written_bytes;
44 int video_stream;
45 int byte_buffer_size;
46 int i = 0;
47 int result;
48
50 if (result < 0) {
51 av_log(NULL, AV_LOG_ERROR, "Can't open file\n");
52 return result;
53 }
54
56 if (result < 0) {
57 av_log(NULL, AV_LOG_ERROR, "Can't get stream info\n");
58 return result;
59 }
60
62 if (video_stream < 0) {
63 av_log(NULL, AV_LOG_ERROR, "Can't find video stream in input file\n");
64 return -1;
65 }
66
67 origin_par = fmt_ctx->streams[video_stream]->codecpar;
68
69 codec = avcodec_find_decoder(origin_par->codec_id);
70 if (!codec) {
71 av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n");
72 return -1;
73 }
74
76 if (!ctx) {
77 av_log(NULL, AV_LOG_ERROR, "Can't allocate decoder context\n");
78 return AVERROR(ENOMEM);
79 }
80
81 result = avcodec_parameters_to_context(ctx, origin_par);
82 if (result) {
83 av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n");
84 return result;
85 }
86
87 result = avcodec_open2(ctx, codec, NULL);
88 if (result < 0) {
89 av_log(ctx, AV_LOG_ERROR, "Can't open decoder\n");
90 return result;
91 }
92
93 fr = av_frame_alloc();
94 if (!fr) {
95 av_log(NULL, AV_LOG_ERROR, "Can't allocate frame\n");
96 return AVERROR(ENOMEM);
97 }
98
100 if (!pkt) {
101 av_log(NULL, AV_LOG_ERROR, "Cannot allocate packet\n");
102 return AVERROR(ENOMEM);
103 }
104
105 byte_buffer_size = av_image_get_buffer_size(ctx->pix_fmt, ctx->width, ctx->height, 16);
106 byte_buffer = av_malloc(byte_buffer_size);
107 if (!byte_buffer) {
108 av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n");
109 return AVERROR(ENOMEM);
110 }
111
112 printf("#tb %d: %d/%d\n", video_stream, fmt_ctx->streams[video_stream]->time_base.num, fmt_ctx->streams[video_stream]->time_base.den);
113 i = 0;
114
115 result = 0;
116 while (result >= 0) {
117 result = av_read_frame(fmt_ctx, pkt);
118 if (result >= 0 && pkt->stream_index != video_stream) {
120 continue;
121 }
122
123 if (result < 0)
124 result = avcodec_send_packet(ctx, NULL);
125 else {
126 if (pkt->pts == AV_NOPTS_VALUE)
127 pkt->pts = pkt->dts = i;
128 result = avcodec_send_packet(ctx, pkt);
129 }
131
132 if (result < 0) {
133 av_log(NULL, AV_LOG_ERROR, "Error submitting a packet for decoding\n");
134 return result;
135 }
136
137 while (result >= 0) {
138 result = avcodec_receive_frame(ctx, fr);
139 if (result == AVERROR_EOF)
140 goto finish;
141 else if (result == AVERROR(EAGAIN)) {
142 result = 0;
143 break;
144 } else if (result < 0) {
145 av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n");
146 return result;
147 }
148
149 number_of_written_bytes = av_image_copy_to_buffer(byte_buffer, byte_buffer_size,
150 (const uint8_t* const *)fr->data, (const int*) fr->linesize,
151 ctx->pix_fmt, ctx->width, ctx->height, 1);
152 if (number_of_written_bytes < 0) {
153 av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n");
154 av_frame_unref(fr);
155 return number_of_written_bytes;
156 }
157 printf("%d, %10s, %10s, %8"PRId64", %8d, 0x%08"PRIx32"\n", video_stream,
158 av_ts2str(fr->pts), av_ts2str(fr->pkt_dts), fr->duration,
159 number_of_written_bytes, av_adler32_update(0, (const uint8_t*)byte_buffer, number_of_written_bytes));
160
161 av_frame_unref(fr);
162 }
163 i++;
164 }
165
166finish:
168 av_frame_free(&fr);
171 av_freep(&byte_buffer);
172 return 0;
173}
174
175int main(int argc, char **argv)
176{
177 if (argc < 2)
178 {
179 av_log(NULL, AV_LOG_ERROR, "Incorrect input\n");
180 return 1;
181 }
182
183 if (video_decode_example(argv[1]) != 0)
184 return 1;
185
186 return 0;
187}
Public header for Adler-32 hash function implementation.
static int video_decode_example(const char *input_filename)
H264 codec test.
Libavcodec external API header.
int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type, int wanted_stream_nb, int related_stream, const AVCodec **decoder_ret, int flags)
Definition avformat.c:505
Main libavformat public API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
int avcodec_parameters_to_context(AVCodecContext *codec, const AVCodecParameters *par)
Definition codec_par.c:206
#define NULL
Definition coverity.c:32
__device__ int printf(const char *,...)
static AVFormatContext * fmt_ctx
static AVPacket * pkt
static AVStream * video_stream
int main
Definition dovi_rpuenc.c:38
static const char * input_filename
Definition ffplay.c:309
int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition avcodec.c:144
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition options.c:149
const AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
Definition allcodecs.c:990
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:164
int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Alias for avcodec_receive_frame_flags(avctx, frame, 0).
Definition avcodec.c:720
int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
Supply raw packet data as input to a decoder.
Definition decode.c:730
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition packet.c:74
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition packet.c:434
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition packet.c:63
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition demux.c:1588
int avformat_open_input(AVFormatContext **ps, const char *url, const AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition demux.c:231
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
Definition demux.c:2606
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition demux.c:377
AVAdler av_adler32_update(AVAdler adler, const uint8_t *buf, size_t len)
Calculate the Adler32 checksum of a buffer.
Definition adler32.c:44
#define AVERROR_EOF
End of file.
Definition error.h:57
#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.
Definition frame.c:496
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition frame.c:52
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
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:466
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:501
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
misc image utilities
Memory handling functions.
#define av_malloc(s)
Definition ops_static.c:52
main external API structure.
Definition avcodec.h:443
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
AVCodec.
Definition codec.h:175
Format I/O context.
Definition avformat.h:1333
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition frame.h:574
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int64_t pkt_dts
DTS copied from the AVPacket that triggered returning this frame.
Definition frame.h:581
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:517
int64_t duration
Duration of the frame, in the same units as pts.
Definition frame.h:820
This structure stores compressed data.
Definition packet.h:580
#define av_freep(p)
#define av_log(a,...)
static AVFormatContext * ctx
Definition movenc.c:49
static void finish(void)
Definition movenc.c:374
timestamp utils, mostly useful for debugging/logging purposes
#define av_ts2str(ts)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition timestamp.h:54