Skip to content

Commit

Permalink
Update ffmpeg
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevcairiel committed Jun 6, 2014
1 parent 6c73517 commit eb11a71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions decoder/LAVAudio/LAVAudio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ extern "C" {
#include "libavformat/spdif.h"
#include "libavcodec/flac.h"

extern int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, const uint8_t *buf, int size);
extern int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, const uint8_t *buf, int size, int parse_picture);
extern void ff_rm_reorder_sipr_data(uint8_t *buf, int sub_packet_h, int framesize);
__declspec(dllimport) extern const unsigned char ff_sipr_subpk_size[4];
};
Expand Down Expand Up @@ -1333,7 +1333,7 @@ HRESULT CLAVAudio::ffmpeg_init(AVCodecID codec, const void *format, const GUID f
break;
switch (metadata_type) {
case FLAC_METADATA_TYPE_VORBIS_COMMENT:
ff_vorbis_comment(nullptr, &metadata, header, metadata_size);
ff_vorbis_comment(nullptr, &metadata, header, metadata_size, 0);
break;
}
header += metadata_size;
Expand Down
2 changes: 1 addition & 1 deletion ffmpeg
Submodule ffmpeg updated from b7c999 to 2a7f0f

0 comments on commit eb11a71

Please sign in to comment.