[vlc-commits] [Git][videolan/vlc][master] demux: avi: deal with AVC1
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri Jul 25 14:09:13 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
bb984a81 by François Cartegnie at 2025-07-25T13:22:24+00:00
demux: avi: deal with AVC1
- - - - -
1 changed file:
- modules/demux/avi/avi.c
Changes:
=====================================
modules/demux/avi/avi.c
=====================================
@@ -692,6 +692,11 @@ static int Open( vlc_object_t * p_this )
tk->fmt.b_packetized = false;
}
+ if( tk->fmt.i_codec == VLC_CODEC_H264 && tk->fmt.i_extra )
+ {
+ tk->fmt.i_original_fourcc = VLC_FOURCC('a','v','c','1');
+ }
+
tk->i_samplesize = 0;
tk->fmt.video.i_frame_rate = tk->i_rate;
tk->fmt.video.i_frame_rate_base = tk->i_scale;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/bb984a8129455615de2c8fad4c38a00e493af8a2
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/bb984a8129455615de2c8fad4c38a00e493af8a2
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list