@@ -126,6 +126,9 @@ FFMPegDecoder::FFMPegDecoder() :
126
126
pFormatCtx = NULL ;
127
127
// i, videoStream;
128
128
pCodecCtx = NULL ;
129
+ #if LIBAVCODEC_VERSION_MAJOR > 56
130
+ pCodecPar = NULL ;
131
+ #endif
129
132
pCodec = NULL ;
130
133
pFrame = NULL ;
131
134
__bufBytes = 0 ;
@@ -184,11 +187,16 @@ int FFMPegDecoder::openFile(cFileName *_cfn, cNoadIndexFile *_cIF)
184
187
185
188
// Retrieve stream information
186
189
resetDecoder ();
187
- int openCode2 = av_find_stream_info (pFormatCtx);
190
+ #if LIBAVCODEC_VERSION_MAJOR <57
191
+ int openCode2 = av_find_stream_info (pFormatCtx);
192
+ #else
193
+ int openCode2 = avformat_find_stream_info (pFormatCtx, NULL );
194
+ #endif
188
195
if (openCode2<0 )
189
196
return -1 ; // Couldn't find stream information
190
197
191
198
// Find the first video stream
199
+ #if LIBAVCODEC_VERSION_MAJOR <57
192
200
videoStream=-1 ;
193
201
for (i=0 ; i < (int )pFormatCtx->nb_streams ; i++)
194
202
{
@@ -198,10 +206,17 @@ int FFMPegDecoder::openFile(cFileName *_cfn, cNoadIndexFile *_cIF)
198
206
break ;
199
207
}
200
208
}
201
- if (videoStream==-1 )
202
- return -1 ; // Didn't find a video stream
209
+ #else
210
+ videoStream = av_find_best_stream (pFormatCtx, AVMEDIA_TYPE_VIDEO, -1 , -1 , &pCodec, 0 );
211
+ #endif
212
+ if (videoStream < 0 )
213
+ {
214
+ esyslog (" can't find a video stream!" );
215
+ return -1 ;
216
+ }
203
217
204
218
// Get a pointer to the codec context for the video stream
219
+ #if LIBAVCODEC_VERSION_MAJOR <57
205
220
pCodecCtx=pFormatCtx->streams [videoStream]->codec ;
206
221
pCodecCtx->flags |=CODEC_FLAG_EMU_EDGE;
207
222
@@ -210,9 +225,18 @@ int FFMPegDecoder::openFile(cFileName *_cfn, cNoadIndexFile *_cIF)
210
225
esyslog (" can't detect codec for video!" );
211
226
return -1 ;
212
227
}
228
+ #else
229
+ pCodecPar=pFormatCtx->streams [videoStream]->codecpar ;
230
+ if ( pCodecPar->codec_id == AV_CODEC_ID_PROBE )
231
+ {
232
+ esyslog (" can't detect codec for video!" );
233
+ return -1 ;
234
+ }
235
+ #endif
213
236
// av_close_input_file(pFormatCtx);
214
237
215
238
// Find the decoder for the video stream
239
+ #if LIBAVCODEC_VERSION_MAJOR < 57
216
240
pCodec=avcodec_find_decoder (pCodecCtx->codec_id );
217
241
if (pCodec==NULL )
218
242
return -1 ; // Codec not found
@@ -221,23 +245,37 @@ int FFMPegDecoder::openFile(cFileName *_cfn, cNoadIndexFile *_cIF)
221
245
// bitstreams where frame boundaries can fall in the middle of packets
222
246
if (pCodec->capabilities & CODEC_CAP_TRUNCATED)
223
247
pCodecCtx->flags |=CODEC_FLAG_TRUNCATED;
248
+ #else
249
+ pCodec=avcodec_find_decoder (pCodecPar->codec_id );
250
+ if (pCodec==NULL )
251
+ return -1 ; // Codec not found
252
+
253
+ // Create CodecContext from Codec
254
+ pCodecCtx= avcodec_alloc_context3 (pCodec);
255
+
256
+ // Inform the codec that we can handle truncated bitstreams -- i.e.,
257
+ // bitstreams where frame boundaries can fall in the middle of packets
258
+ if (pCodec->capabilities & AV_CODEC_CAP_TRUNCATED)
259
+ pCodecCtx->flags |=AV_CODEC_FLAG_TRUNCATED;
260
+ #endif
224
261
225
- #if LIBAVCODEC_VERSION_MAJOR > 54
226
262
// Open codec
263
+ #if LIBAVCODEC_VERSION_MAJOR > 54
227
264
if (avcodec_open2 (pCodecCtx, pCodec,&avDictionary) < 0 )
228
265
#else
229
- // Open codec
230
266
if (avcodec_open (pCodecCtx, pCodec)<0 )
231
267
#endif
232
268
return -1 ; // Could not open codec
233
269
234
-
235
-
236
270
// Allocate video frame
237
- pFrame=avcodec_alloc_frame ();
271
+ #if LIBAVCODEC_VERSION_MAJOR < 57
272
+ pFrame=avcodec_alloc_frame ();
273
+ #else
274
+ pFrame=av_frame_alloc ();
275
+ #endif
238
276
cont_reading = true ;
239
- doSeekPos = false ;
240
- dsyslog (" init_ffmpeg done" );
277
+ doSeekPos = false ;
278
+ dsyslog (" init_ffmpeg done" );
241
279
return false ;
242
280
}
243
281
@@ -253,7 +291,11 @@ int FFMPegDecoder::decoder_exit()
253
291
// close the file
254
292
if ( pFormatCtx )
255
293
{
294
+ #if LIBAVFORMAT_VERSION_MAJOR < 54
256
295
av_close_input_file (pFormatCtx);
296
+ #else
297
+ avformat_close_input (&pFormatCtx);
298
+ #endif
257
299
pFormatCtx = NULL ;
258
300
}
259
301
// Close the codec
@@ -285,7 +327,9 @@ bool FFMPegDecoder::GetVideoFrame(bool restart)
285
327
static bool fFirstTime =true ;
286
328
int bytesDecoded;
287
329
int frameFinished;
330
+ int ret;
288
331
332
+ #if LIBAVCODEC_VERSION_MAJOR < 57
289
333
if ( restart )
290
334
{
291
335
bytesRemaining=0 ;
@@ -373,6 +417,73 @@ bool FFMPegDecoder::GetVideoFrame(bool restart)
373
417
ffmpegerror = true ;
374
418
375
419
return frameFinished!=0 ;
420
+ #else
421
+ // libavcodec 57+
422
+ if ( restart )
423
+ {
424
+ if (packet.data !=NULL )
425
+ av_packet_unref (&packet);
426
+ packet.data =NULL ;
427
+ avcodec_flush_buffers (pCodecCtx);
428
+ }
429
+ else
430
+ {
431
+ ret = avcodec_receive_frame (pCodecCtx, pFrame);
432
+ if (ret < 0 && ret != AVERROR (EAGAIN))
433
+ {
434
+ ffmpegerror = true ;
435
+ return false ;
436
+ }
437
+ }
438
+
439
+ do
440
+ {
441
+ do
442
+ {
443
+ // Free packet
444
+ if (packet.data !=NULL )
445
+ av_packet_unref (&packet);
446
+
447
+ // Read new packet
448
+ ret = av_read_frame (pFormatCtx, &packet);
449
+ if (ret < 0 )
450
+ {
451
+ if (ret == AVERROR_EOF)
452
+ { // create draining packet
453
+ packet.data = NULL ;
454
+ packet.size = 0 ;
455
+ }
456
+ else
457
+ {
458
+ if (packet.data !=NULL )
459
+ av_packet_unref (&packet);
460
+ ffmpegerror = true ;
461
+ return false ;
462
+ }
463
+ }
464
+ } while (packet.stream_index !=videoStream && ret != AVERROR_EOF);
465
+
466
+ ret = avcodec_send_packet (pCodecCtx, &packet);
467
+ if (packet.data !=NULL )
468
+ av_packet_unref (&packet);
469
+
470
+ if (ret < 0 && ret != AVERROR (EAGAIN))
471
+ {
472
+ ffmpegerror = true ;
473
+ return false ;
474
+ }
475
+
476
+ ret = avcodec_receive_frame (pCodecCtx, pFrame);
477
+ if (ret < 0 && ret != AVERROR (EAGAIN) && ret != AVERROR_EOF)
478
+ {
479
+ ffmpegerror = true ;
480
+ return false ;
481
+ }
482
+
483
+ } while (ret != 0 && ret != AVERROR_EOF);
484
+
485
+ return ret != AVERROR_EOF;
486
+ #endif
376
487
}
377
488
378
489
@@ -505,7 +616,11 @@ void FFMPegDecoder::resetDecoder()
505
616
}
506
617
if ( pFrame )
507
618
av_free (pFrame);
619
+ #if LIBAVCODEC_VERSION_MAJOR < 57
508
620
pFrame=avcodec_alloc_frame ();
621
+ #else
622
+ pFrame=av_frame_alloc ();
623
+ #endif
509
624
__bufBytes = 0 ;
510
625
}
511
626
0 commit comments