-
Notifications
You must be signed in to change notification settings - Fork 9
/
ffmdecode.c
300 lines (243 loc) · 7.62 KB
/
ffmdecode.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#include <stdio.h>
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>
#include <libavutil/pixfmt.h>
#include <libswscale/swscale.h>
//from decoding_encoding.c
#include <string.h>
#include <stdlib.h>
#define INBUF_SIZE 4096
void setup_video_decode()
{
avcodec_register_all();
av_register_all();
printf( "REGISTERING\n" );
}
static int decode_write_frame( AVCodecContext *avctx,
AVFrame *frame, int *frame_count, AVPacket *pkt, int last, AVFrame* encoderRescaledFrame)
{
int len, got_frame;
char buf[1024];
len = avcodec_decode_video2(avctx, frame, &got_frame, pkt);
if (len < 0) {
fprintf(stderr, "Error while decoding frame %d\n", *frame_count);
return len;
}
if (got_frame) {
// uint8_t myframedata[avctx->width * avctx->height * 3];
struct SwsContext *img_convert_ctx = sws_getContext(avctx->width, avctx->height, frame->format,
avctx->width, avctx->height, PIX_FMT_RGB24, SWS_FAST_BILINEAR , NULL, NULL, NULL);
sws_scale(img_convert_ctx, frame->data, frame->linesize, 0, avctx->height,
encoderRescaledFrame->data, encoderRescaledFrame->linesize);
got_video_frame( encoderRescaledFrame->data[0], encoderRescaledFrame->linesize[0],
avctx->width, avctx->height, *frame_count);
// got_video_frame( frame->data[0], frame->linesize[0],
// avctx->width, avctx->height, frame);
(*frame_count)++;
//avcodec_free_frame(&encoderRescaledFrame);
}
if (pkt->data) {
pkt->size -= len;
pkt->data += len;
}
return 0;
}
int video_decode( const char *filename)
{
AVFrame* encoderRescaledFrame;
AVFormatContext *fmt_ctx = 0;
AVCodecContext *dec_ctx = 0;
int video_stream_index;
int frame_count = 0;
AVFrame *frame;
uint8_t inbuf[INBUF_SIZE + FF_INPUT_BUFFER_PADDING_SIZE];
AVPacket avpkt;
int ret;
int i;
AVCodec *dec;
av_init_packet(&avpkt);
/* set end of buffer to 0 (this ensures that no overreading happens for damaged mpeg streams) */
memset(inbuf + INBUF_SIZE, 0, FF_INPUT_BUFFER_PADDING_SIZE);
if ((ret = avformat_open_input(&fmt_ctx, filename, NULL, NULL)) < 0) {
//av_log(NULL, AV_LOG_ERROR, "Cannot open input file\n");
fprintf( stderr, "Error: cannot open file.\n" );
return ret;
}
if ((ret = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
//av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
fprintf( stderr, "Error: cannot find stream.\n" );
return ret;
}
// dump_format(fmt_ctx, 0, filename, 0);
/* select the video stream */
/* ret = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, &dec, 0);
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Cannot find a video stream in the input file\n");
return ret;
}*/
for (i = 0 ; i < fmt_ctx->nb_streams; i++){
printf( "%d\n", i );
if (fmt_ctx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO ){
video_stream_index = i;
break;
}
}
dec_ctx = fmt_ctx->streams[video_stream_index]->codec;
dec = avcodec_find_decoder(dec_ctx->codec_id);
encoderRescaledFrame = avcodec_alloc_frame();
av_image_alloc(encoderRescaledFrame->data, encoderRescaledFrame->linesize,
dec_ctx->width, dec_ctx->height, PIX_FMT_RGB24, 1);
printf( "Stream index: %d (%p %p)\n", video_stream_index, dec_ctx, dec );
/* init the video decoder */
if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {
//av_log(NULL, AV_LOG_ERROR, "Cannot open video decoder\n");
fprintf( stderr, "Error: cannot open video decoder\n" );
return ret;
}
printf( "OPENING: %d %s\n", ret, filename );
frame = avcodec_alloc_frame();
if (!frame) {
fprintf(stderr, "Could not allocate video frame\n");
exit(1);
}
frame_count = 0;
/*
for(;;) {
if ((ret = av_read_frame(fmt_ctx, &avpkt)) < 0)
{
printf( "MARK!" );
break;
}
printf( "HIT\n" );
avpkt.data = inbuf;
while (avpkt.size > 0)
{
printf( "SIZE %d!\n", avpkt.size );
if (decode_write_frame( dec_ctx, frame, &frame_count, &avpkt, 0) < 0)
exit(1);
}
}
// some codecs, such as MPEG, transmit the I and P frame with a
//latency of one frame. You must do the following to have a
//chance to get the last frame of the video
*/
avpkt.data = NULL;
avpkt.size = 0;
// decode_write_frame( dec_ctx, frame, &frame_count, &avpkt, 1);
avpkt.data = inbuf;
// memset( &avpkt, 0, sizeof( avpkt ) ); Nope.
while( av_read_frame(fmt_ctx, &avpkt) >= 0 )
{
if (avpkt.stream_index == video_stream_index)
{
while (avpkt.size > 0)
{
if (decode_write_frame( dec_ctx, frame, &frame_count, &avpkt, 0, encoderRescaledFrame) < 0)
exit(1);
}
}
else
{
}
//Uuhhh... we should need this?
// av_free_packet( &avpkt );
}
if (dec_ctx)
avcodec_close(dec_ctx);
avformat_close_input(&fmt_ctx);
// avcodec_free_frame(&frame);
printf( "Done?\n" );
printf("\n");
}
/*
int video_decode( const char *filename)
{
AVFormatContext *pFormatCtx;
AVCodecContext *pCodecCtx;
AVCodec *pCodec;
AVFrame *pFrameRGB;
AVFrame *pFrame;
uint8_t *buffer;
int numBytes;
int i;
int frameFinished;
int videoStream;
AVPacket packet;
if(av_open_input_file(&pFormatCtx, filename, NULL, 0, NULL)!=0)
return -1; // Couldn't open file
if(av_find_stream_info(pFormatCtx)<0)
return -1; // Couldn't find stream information
dump_format(pFormatCtx, 0, filename, 0);
// Find the first video stream
videoStream=-1;
for(i=0; i<pFormatCtx->nb_streams; i++)
{
if(pFormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
videoStream=i;
break;
}
}
if(videoStream==-1)
return -1; // Didn't find a video stream
// Get a pointer to the codec context for the video stream
pCodecCtx=pFormatCtx->streams[videoStream]->codec;
// Find the decoder for the video stream
pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
if(pCodec==NULL) {
fprintf(stderr, "Unsupported codec!\n");
return -1; // Codec not found
}
// Open codec
if(avcodec_open(pCodecCtx, pCodec)<0)
return -1; // Could not open codec
// Allocate video frame
pFrame=avcodec_alloc_frame();
// Allocate an AVFrame structure
pFrameRGB=avcodec_alloc_frame();
if(pFrameRGB==NULL)
return -1;
numBytes=avpicture_get_size(PIX_FMT_RGB24, pCodecCtx->width,
pCodecCtx->height);
buffer=(uint8_t *)av_malloc(numBytes*sizeof(uint8_t));
// Assign appropriate parts of buffer to image planes in pFrameRGB
// Note that pFrameRGB is an AVFrame, but AVFrame is a superset
// of AVPicture
avpicture_fill((AVPicture *)pFrameRGB, buffer, PIX_FMT_RGB24,
pCodecCtx->width, pCodecCtx->height);
i=0;
while(av_read_frame(pFormatCtx, &packet)>=0)
{
// Is this a packet from the video stream?
if(packet.stream_index==videoStream)
{
// Decode video frame
avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished,
&packet);
// Did we get a video frame?
if(frameFinished) {
// Convert the image from its native format to RGB
img_convert((AVPicture *)pFrameRGB, PIX_FMT_RGB24,
(AVPicture*)pFrame, pCodecCtx->pix_fmt,
pCodecCtx->width, pCodecCtx->height);
// callback!
got_video_frame( pFrameRGB, pFrameRGB->linesize[0], pCodecCtx->width,
pCodecCtx->height, i);
i++;
}
}
}
// Free the packet that was allocated by av_read_frame
av_free_packet(&packet);
// Free the RGB image
av_free(buffer);
av_free(pFrameRGB);
// Free the YUV frame
av_free(pFrame);
// Close the codec
avcodec_close(pCodecCtx);
// Close the video file
av_close_input_file(pFormatCtx);
return 0;
}
*/