forked from mirror/openmw-tes3mp
Revert "Removed a warning about comparision between signed and unsigned variable in ffmpeg_decoder."
This reverts commit b40c1ff26c
.
This commit is contained in:
parent
bb10af64c0
commit
681f3fa530
1 changed files with 2 additions and 2 deletions
|
@ -982,9 +982,9 @@ int VideoState::stream_open(int stream_index, AVFormatContext *pFormatCtx)
|
||||||
// Get a pointer to the codec context for the video stream
|
// Get a pointer to the codec context for the video stream
|
||||||
codecCtx = pFormatCtx->streams[stream_index]->codec;
|
codecCtx = pFormatCtx->streams[stream_index]->codec;
|
||||||
codec = avcodec_find_decoder(codecCtx->codec_id);
|
codec = avcodec_find_decoder(codecCtx->codec_id);
|
||||||
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(56,1,0)
|
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56,1,0)
|
||||||
codecCtx->refcounted_frames = 1;
|
codecCtx->refcounted_frames = 1;
|
||||||
#endif /* LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(56,1,0) */
|
#endif /* LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56,1,0) */
|
||||||
if(!codec || (avcodec_open2(codecCtx, codec, NULL) < 0))
|
if(!codec || (avcodec_open2(codecCtx, codec, NULL) < 0))
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Unsupported codec!\n");
|
fprintf(stderr, "Unsupported codec!\n");
|
||||||
|
|
Loading…
Reference in a new issue