Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
e481f910
Commit
e481f910
authored
May 11, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a i_original_fourcc field to es_format_t.
parent
7b21f4d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
include/vlc_es.h
include/vlc_es.h
+4
-2
src/libvlccore.sym
src/libvlccore.sym
+1
-1
src/misc/es_format.c
src/misc/es_format.c
+1
-0
No files found.
include/vlc_es.h
View file @
e481f910
...
...
@@ -27,6 +27,7 @@
/* FIXME: i'm not too sure about this include but it fixes compilation of
* video chromas -- dionoea */
#include "vlc_common.h"
#include <vlc_fourcc.h>
/**
* \file
...
...
@@ -227,8 +228,9 @@ typedef struct extra_languages_t
*/
struct
es_format_t
{
int
i_cat
;
/**< ES category @see es_format_category_e */
vlc_fourcc_t
i_codec
;
/**< FOURCC value as used in vlc */
int
i_cat
;
/**< ES category @see es_format_category_e */
vlc_fourcc_t
i_codec
;
/**< FOURCC value as used in vlc */
vlc_fourcc_t
i_original_fourcc
;
/**< original FOURCC from the container */
int
i_id
;
/**< es identifier, where means
-1: let the core mark the right id
...
...
src/libvlccore.sym
View file @
e481f910
...
...
@@ -453,7 +453,7 @@ vlc_event_send
__vlc_execve
vlc_fastmem_register
vlc_freeaddrinfo
vlc_fourcc_GetC
lass
vlc_fourcc_GetC
odec
vlc_fourcc_GetDescription
vlc_gai_strerror
vlc_gc_init
...
...
src/misc/es_format.c
View file @
e481f910
...
...
@@ -133,6 +133,7 @@ void es_format_Init( es_format_t *fmt,
{
fmt
->
i_cat
=
i_cat
;
fmt
->
i_codec
=
i_codec
;
fmt
->
i_original_fourcc
=
0
;
fmt
->
i_id
=
-
1
;
fmt
->
i_group
=
0
;
fmt
->
i_priority
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment