Skip to content

Commit

Permalink
avformat/segafilmenc - set keyframe bit correctly
Browse files Browse the repository at this point in the history
As per
https://web.archive.org/web/20020803104640/http://www.pcisys.net:80/~melanson/codecs/film-format.txt,

the top bit of the info1 chunk is set as 1 for inter-coded frames and 0
otherwise.
  • Loading branch information
GyanD committed May 8, 2018
1 parent 29eb1c5 commit 0683ad7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libavformat/segafilmenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static int film_write_packet_to_header(AVFormatContext *format_context, FILMPack
info1 = pkt->pts;
info2 = pkt->duration;
/* The top bit being set indicates a key frame */
if (pkt->keyframe)
if (!pkt->keyframe)
info1 |= (1 << 31);
}

Expand Down
2 changes: 1 addition & 1 deletion libavformat/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// Also please add any ticket numbers that you believe might be affected here
#define LIBAVFORMAT_VERSION_MAJOR 58
#define LIBAVFORMAT_VERSION_MINOR 13
#define LIBAVFORMAT_VERSION_MICRO 101
#define LIBAVFORMAT_VERSION_MICRO 102

#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
Expand Down

0 comments on commit 0683ad7

Please sign in to comment.