diff options
author | jstebbins <[email protected]> | 2011-08-01 17:48:28 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-08-01 17:48:28 +0000 |
commit | 7a083edaa1a8d331ca8eb2878f051a4fc1966d43 (patch) | |
tree | b0b14bdb5a0e07eaf007811b27817e2ffa960332 /libhb | |
parent | ac3e2eaf6d6deb4ce9b86ce38a3715b3d8968da1 (diff) |
bump Libav from git-v0.7b2-406-g7b20d35 to release 0.7.1
It includes the following fixes:
- MKV seek issue: http://git.libav.org/?p=libav.git;a=commit;h=c29c609
- crash when decoding corrupt MPEG-2 streams: http://git.libav.org/?p=libav.git;a=commit;h=20153fb
- other misc. fixes: http://git.libav.org/?p=libav.git;a=shortlog;h=refs/heads/release/0.7
It includes the following new feature:
- support for DTS in MP4 and MOV files: http://git.libav.org/?p=libav.git;a=commit;h=26f4875
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4148 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/stream.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index a95ce532c..84d31fe0b 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -3097,7 +3097,7 @@ static int ffmpeg_open( hb_stream_t *stream, hb_title_t *title, int scan ) // But then the seek fails for some stream types. So the safest thing // to do seems to be to open 2 AVFormatContext. One for probing info // and the other for reading. - if ( av_open_input_file( &info_ic, stream->path, NULL, 0, NULL ) < 0 ) + if ( avformat_open_input( &info_ic, stream->path, NULL, NULL ) < 0 ) { return 0; } @@ -3106,7 +3106,7 @@ static int ffmpeg_open( hb_stream_t *stream, hb_title_t *title, int scan ) title->opaque_priv = (void*)info_ic; stream->ffmpeg_info_ic = info_ic; - if ( av_open_input_file( &reader_ic, stream->path, NULL, 0, NULL ) < 0 ) + if ( avformat_open_input( &reader_ic, stream->path, NULL, NULL ) < 0 ) { goto fail; } @@ -3168,7 +3168,7 @@ static void add_ffmpeg_audio( hb_title_t *title, hb_stream_t *stream, int id ) { AVStream *st = stream->ffmpeg_info_ic->streams[id]; AVCodecContext *codec = st->codec; - AVMetadataTag *tag; + AVDictionaryEntry *tag; int layout; // scan will ignore any audio without a bitrate. Since we've already @@ -3216,7 +3216,7 @@ static void add_ffmpeg_audio( hb_title_t *title, hb_stream_t *stream, int id ) audio->config.in.channel_map = &hb_smpte_chan_map; } - tag = av_metadata_get( st->metadata, "language", NULL, 0 ); + tag = av_dict_get( st->metadata, "language", NULL, 0 ); set_audio_description( stream, audio, lang_for_code2( tag ? tag->value : "und" ) ); @@ -3386,10 +3386,10 @@ static void add_ffmpeg_subtitle( hb_title_t *title, hb_stream_t *stream, int id return; } - AVMetadataTag *tag; + AVDictionaryEntry *tag; iso639_lang_t *language; - tag = av_metadata_get( st->metadata, "language", NULL, 0 ); + tag = av_dict_get( st->metadata, "language", NULL, 0 ); language = lang_for_code2( tag ? tag->value : "und" ); strcpy( subtitle->lang, language->eng_name ); strncpy( subtitle->iso639_2, language->iso639_2, 4 ); @@ -3402,10 +3402,10 @@ static void add_ffmpeg_subtitle( hb_title_t *title, hb_stream_t *stream, int id hb_list_add(title->list_subtitle, subtitle); } -static char *get_ffmpeg_metadata_value( AVMetadata *m, char *key ) +static char *get_ffmpeg_metadata_value( AVDictionary *m, char *key ) { - AVMetadataTag *tag = NULL; - while ( (tag = av_metadata_get(m, "", tag, AV_METADATA_IGNORE_SUFFIX)) ) + AVDictionaryEntry *tag = NULL; + while ( (tag = av_dict_get(m, "", tag, AV_DICT_IGNORE_SUFFIX)) ) { if ( !strcmp( key, tag->key ) ) { @@ -3525,7 +3525,7 @@ static hb_title_t *ffmpeg_title_scan( hb_stream_t *stream, hb_title_t *title ) for( i = 0; i < ic->nb_chapters; i++ ) if( ( m = ic->chapters[i] ) != NULL ) { - AVMetadataTag *tag; + AVDictionaryEntry *tag; hb_chapter_t * chapter; chapter = calloc( sizeof( hb_chapter_t ), 1 ); chapter->index = i+1; @@ -3534,7 +3534,7 @@ static hb_title_t *ffmpeg_title_scan( hb_stream_t *stream, hb_title_t *title ) chapter->hours = chapter->duration / 90000 / 3600; chapter->minutes = ( ( chapter->duration / 90000 ) % 3600 ) / 60; chapter->seconds = ( chapter->duration / 90000 ) % 60; - tag = av_metadata_get( m->metadata, "title", NULL, 0 ); + tag = av_dict_get( m->metadata, "title", NULL, 0 ); strcpy( chapter->title, tag ? tag->value : "" ); hb_deep_log( 2, "Added chapter %i, name='%s', dur=%"PRIu64", (%02i:%02i:%02i)", chapter->index, chapter->title, |