Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed Sep 17, 2024
2 parents 4d2d7b0 + bebf819 commit 0c22102
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/SuperBuild/BuildOpenImageIO.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ endif()
if(toucan_Freetype)
list(APPEND OpenImageIO_DEPS Freetype)
endif()
if(toucan_FFMPEG)
if(toucan_FFmpeg)
list(APPEND OpenImageIO_DEPS FFmpeg)
endif()
if(toucan_OpenColorIO)
Expand Down
4 changes: 2 additions & 2 deletions lib/toucan/FFmpegRead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ namespace toucan
class Packet
{
public:
Packet::Packet()
Packet()
{
p = av_packet_alloc();
}

Packet::~Packet()
~Packet()
{
av_packet_free(&p);
}
Expand Down

0 comments on commit 0c22102

Please sign in to comment.